diff options
| author | Vineeth Chowdary Karumanchi <vineethchowz.chowdary@xilinx.com> | 2018-01-23 19:04:02 +0530 |
|---|---|---|
| committer | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2018-06-11 23:56:26 -0700 |
| commit | a84a72c116a07caea1b59bf1f1df0463da8124aa (patch) | |
| tree | a0639ff09454adf1756fb5d35bdbd3128ea7160e | |
| parent | 7a20ab25f857f20aa7456dffafc6ac4bb982aafe (diff) | |
| download | meta-xilinx-a84a72c116a07caea1b59bf1f1df0463da8124aa.tar.gz | |
tune-zynq.inc: Set SOC_VARIANT for zynq devices to 7z
zynq-7000 devices are mainly shipped in 2 variants.
https://www.xilinx.com/products/silicon-devices/soc/zynq-7000.html#productTable
Available SOC_VARIANT's for zynq:
"7zs" - Zynq-7000 Single A9 Core
"7z" - Zynq-7000 Dual A9 Core
This will extend MACHINEOVERRIDES for each device variant as:
7zs --> zynq7zs
7z --> zynq7z
This patch sets the default value of SOC_VARIANT to 7z. This can be
overriden in machine configuration to match the intended FPGA device.
Signed-off-by: Vineeth Chowdary Karumanchi <vineethchowz.chowdary@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
| -rw-r--r-- | meta-xilinx-bsp/conf/machine/include/tune-zynq.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-xilinx-bsp/conf/machine/include/tune-zynq.inc b/meta-xilinx-bsp/conf/machine/include/tune-zynq.inc index 19e73412..270e2d93 100644 --- a/meta-xilinx-bsp/conf/machine/include/tune-zynq.inc +++ b/meta-xilinx-bsp/conf/machine/include/tune-zynq.inc | |||
| @@ -1,6 +1,12 @@ | |||
| 1 | DEFAULTTUNE ?= "cortexa9thf-neon" | 1 | DEFAULTTUNE ?= "cortexa9thf-neon" |
| 2 | SOC_FAMILY ?= "zynq" | 2 | SOC_FAMILY ?= "zynq" |
| 3 | 3 | ||
| 4 | # Available SOC_VARIANT's for zynq: | ||
| 5 | # 7zs - Zynq-7000 Single A9 Core | ||
| 6 | # 7z - Zynq-7000 Dual A9 Core | ||
| 7 | |||
| 8 | SOC_VARIANT ?= "7z" | ||
| 9 | |||
| 4 | require conf/machine/include/tune-cortexa9.inc | 10 | require conf/machine/include/tune-cortexa9.inc |
| 5 | require conf/machine/include/soc-family.inc | 11 | require conf/machine/include/soc-family.inc |
| 6 | 12 | ||
