blob: 3a9eb3dbbc32779006b5139b8e804ee4b3cfad3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# To build the DSP applications you need to have DSP/BIOS, xdctools and codegen installed. Get these from:
# https://www-a.ti.com/downloads/sds_support/targetcontent/bios/bios_5_33/sabios-j05/bios_setuplinux_5_33_02.bin
# https://www-a.ti.com/downloads/sds_support/targetcontent/rtsc/xdctools_3_10_03/exports/xdctools_setuplinux_3_10_03.bin
# https://www-a.ti.com/downloads/sds_support/targetcontent/LinuxDspTools/download.html
# Back link for above:
# https://www-a.ti.com/downloads/sds_support/targetcontent/index.html
# export some more variable to point to external TI tools
# information is duplicated between the js and make based tools
require ti-multimedia-common.inc
export PLATFORM
export CROSS_COMPILE = "${CROSS_DIR}/bin/${TARGET_PREFIX}"
# This tells codec engine which targets to build
DEVICES ?= "DM6446"
DEVICES_omap3 = "OMAP3530"
DEVICES_dm6446 = "DM6446"
DSPLINKPLATFORM ?= "DAVINCI"
DSPLINKPLATFORM_dm6446 = "DAVINCI"
PLATFORM ?= "dm6446"
PLATFORM_dm6446 = "dm6446"
DSPLINKDSP ?= "C64XX"
DSPLINKSOC ?= "DM6446"
DSPCFG ?= "DM6446GEMSHMEM"
GPPOS ?= "LINUX_GCC"
export DEVICES
export DSPLINKPLATFORM
export DSPLINKDSP
export DSPLINKSOC
export DSPCFG
export GPPOS
export PLATFORM
export LPMDSPPOWERSOC
DSPPOWERSOC ?= "dm6446"
export CODEC ?= "${CODEC_INSTALL_DIR}"
export DSPLINK = "${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/ti-dsplink-module/packages/dsplink/"
installdir = "${datadir}/ti"
|