From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 16862E0094C; Mon, 18 May 2015 11:59:29 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -5.0 RCVD_IN_DNSWL_HI RBL: Sender listed at http://www.dnswl.org/, high * trust * [192.94.94.40 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from arroyo.ext.ti.com (arroyo.ext.ti.com [192.94.94.40]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 6EFF4E0094C for ; Mon, 18 May 2015 11:59:26 -0700 (PDT) Received: from dflxv15.itg.ti.com ([128.247.5.124]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id t4IIxOxr004330 for ; Mon, 18 May 2015 13:59:24 -0500 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id t4IIxORS007418 for ; Mon, 18 May 2015 13:59:24 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.224.2; Mon, 18 May 2015 13:59:24 -0500 Received: from [10.218.109.201] (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id t4IIxFxu016469; Mon, 18 May 2015 13:59:18 -0500 Message-ID: <555A3682.9080808@ti.com> Date: Mon, 18 May 2015 14:59:14 -0400 From: Jacob Stiffler User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Denys Dmytriyenko References: <1431970376-24163-1-git-send-email-j-stiffler@ti.com> <1431970376-24163-4-git-send-email-j-stiffler@ti.com> <20150518175406.GF31845@edge> In-Reply-To: <20150518175406.GF31845@edge> Cc: meta-ti@yoctoproject.org Subject: Re: [PATCH 3/3] gdbc6x: Add version 1.1.0 X-BeenThere: meta-ti@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-ti layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 May 2015 18:59:29 -0000 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit On 5/18/2015 1:54 PM, Denys Dmytriyenko wrote: > On Mon, May 18, 2015 at 01:32:56PM -0400, Jacob Stiffler wrote: >> * The gdbc6x utility provides remote gdb capabilities for C6x DSP >> cores. >> >> Signed-off-by: Jacob Stiffler >> --- >> recipes-devtools/gdbc6x/gdbc6x/init | 48 +++++++++++++++++++++++++++++++++ >> recipes-devtools/gdbc6x/gdbc6x_git.bb | 48 +++++++++++++++++++++++++++++++++ >> 2 files changed, 96 insertions(+) >> create mode 100644 recipes-devtools/gdbc6x/gdbc6x/init >> create mode 100644 recipes-devtools/gdbc6x/gdbc6x_git.bb >> >> diff --git a/recipes-devtools/gdbc6x/gdbc6x/init b/recipes-devtools/gdbc6x/gdbc6x/init >> new file mode 100644 >> index 0000000..90210b8 >> --- /dev/null >> +++ b/recipes-devtools/gdbc6x/gdbc6x/init >> @@ -0,0 +1,48 @@ >> +#!/bin/bash >> + >> +GDB_DEVICE_NAME='/dev/gdbtty$i' >> +DSP_FIRMWARE_NAME='/lib/firmware/dra7-dsp$[$i+1]-fw.xe66' >> + >> +DSP_L2_GLOBAL_OFFSET="40000000" >> +DSP_L2_GLOBAL_SHIFT="00800000" >> + >> +case "$1" in >> + start) >> + >> + dsp_core_l2_offset=$DSP_L2_GLOBAL_OFFSET >> + >> + i=0 >> + while [ -c "`eval echo $GDB_DEVICE_NAME`" ] >> + do >> + dsp_firmware=`eval echo $DSP_FIRMWARE_NAME` >> + >> + if [ -f "`eval echo $DSP_FIRMWARE_NAME`" ] >> + then >> + eval echo "Initializing $GDB_DEVICE_NAME based on $DSP_FIRMWARE_NAME ..." >> + >> + gdb_data_local=`eval readelf -s "$DSP_FIRMWARE_NAME" | \ >> + grep 'gdb_globalData' | \ >> + awk '{print $2}'` >> + >> + echo "gdb_globalData (local) = $gdb_data_local" >> + printf "gdb_globalData (global) = %X\n" \ >> + $[0x$gdb_data_local + 0x$dsp_core_l2_offset] >> + >> + >> + printf "%X\n" $[0x$gdb_data_local + 0x$dsp_core_l2_offset] \ >> + >> `eval echo $GDB_DEVICE_NAME` >> + fi >> + i=$[$i + 1] >> + dsp_core_l2_offset=`printf "%X" $[0x$dsp_core_l2_offset + 0x$DSP_L2_GLOBAL_SHIFT]` >> + done >> + ;; >> + stop) >> + # Nothing to be done. >> + ;; >> + *) >> + echo "Usage: $0 {start|stop}" >> + exit 1 >> + ;; >> +esac >> + >> + >> diff --git a/recipes-devtools/gdbc6x/gdbc6x_git.bb b/recipes-devtools/gdbc6x/gdbc6x_git.bb >> new file mode 100644 >> index 0000000..9fc95fe >> --- /dev/null >> +++ b/recipes-devtools/gdbc6x/gdbc6x_git.bb >> @@ -0,0 +1,48 @@ >> +DESCRIPTION="GNU debugger for TI C6X DSP." >> + >> +LICENSE = "GPLv3+" > Have you run this GPLv3 instance by OSRB yet? > This has already gone through the OSRB when this was released for keystone. >> +SECTION = "devel" >> +DEPENDS = "expat ncurses readline" >> + >> +LIC_FILES_CHKSUM = "file://debian/copyright;md5=bf0fe2872eb3dfeebb2cbe38206fe81f" > A bit of consistency with variable ordering, indentation etc. would be much > appreciated. I don't require patches to be passed through oe-stylize script > from meta-oe (yet), but please keep it neat. Thanks. > I'll take a look at the script and make the updates. >> +include gdbc6x.inc >> + >> +PR = "${INC_PR}.0" >> + >> +DEPENDS = "ncurses bison texinfo flex gettext" >> + >> +RDEPENDS_${PN} = "gdbserver-c6x gdbserverproxy-module-drv" >> + >> +S = "${WORKDIR}/git/gdbc6x" >> + >> +SRC_URI_append = " \ >> + file://init \ >> +" >> + >> +inherit update-rc.d >> + >> +INITSCRIPT_NAME = "gdbserverproxy" >> +INITSCRIPT_PARAMS = "defaults 95" >> + >> +inherit gettext >> + >> +PARALLEL_MAKE = "" >> + >> +do_configure () { >> + cd ${S} >> + ./configure --program-suffix=c6x --target=tic6x-elf-tirtos --host=${HOST_SYS} --prefix=${S}/install_gdb >> +} >> + >> +do_install () { >> + make install >> + >> + # Custom install to prevent conflict with standard GDB. >> + install -d ${D}${bindir} >> + install -d ${D}${includedir} >> + install -m 755 ${S}/install_gdb/bin/gdbc6x ${D}${bindir} >> + cp -rf ${S}/install_gdb/include/* ${D}${includedir} >> + >> + install -d ${D}${sysconfdir}/init.d >> + install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/gdbserverproxy >> +} >> -- >> 1.7.9.5 >> >> -- >> _______________________________________________ >> meta-ti mailing list >> meta-ti@yoctoproject.org >> https://lists.yoctoproject.org/listinfo/meta-ti