diff options
author | Adrian Alonso <aalonso00@gmail.com> | 2010-08-03 06:23:20 +0000 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-08-04 19:47:03 +0200 |
commit | 87007db499894b940f2a457f8427128448f4f9d0 (patch) | |
tree | a61b491d3497449eb10f66b43463b6492d4c4074 | |
parent | 7847296f1d283ed22156ab78adb7bc4ae56df253 (diff) |
xilinx-virtex5: Add machine config for Xilinx Virtex5 platforms
* Config machine for virtex5 platforms ml507, ml510
* Hardware reference design at
http://github.com/aalonso/xilinx-ml507
* v2 more descriptive subject
Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
-rw-r--r-- | conf/machine/xilinx-virtex5.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/conf/machine/xilinx-virtex5.conf b/conf/machine/xilinx-virtex5.conf new file mode 100644 index 0000000000..2e11b96949 --- /dev/null +++ b/conf/machine/xilinx-virtex5.conf @@ -0,0 +1,36 @@ +# Copyright (C) 2010, Adrian Alonso <aalonso00@gmail.com> +# Released under the MIT license (see packages/COPYING) +#@TYPE: Machine +#@Name: Xilinx Virtex5 FPGA Development Platforms +#@DESCRIPTION: Machine configuration for Xilinx Virtex5 boards +# Supported boards ML506, ML507, ML510 + +TARGET_ARCH = "powerpc" +TARGET_CPU = "440" +TARGET_FPU = "soft" +#tune for the 440 cpu +require conf/machine/include/tune-ppc440.inc + +PREFERRED_PROVIDER_virtual/kernel = "linux-xilinx" +PREFERRED_VERSION_u-boot_xilinx-virtex5 = "u-boot-xilinx" + +KERNEL_IMAGETYPE = "uImage" + +MACHINE_FEATURES = "kernel26 apm ext2 vfat ethernet screen" +MACHINE_EXTRA_RECOMMENDS = "kernel-modules" + +UBOOT_ENTRYPOINT ?= "0x00000000" +UBOOT_LOADADDRESS ?= "0x00000000" + +# Xilinx EDK override hardware definitions for xilinx-bsp +# Include in your local.conf +# XILINX_BSP_PATH = "complete path for Xilinx XPS project" +# XILINX_BOARD = "ml507" + +# Don't use tty1 +# USE_VT = "0" +SERIAL_CONSOLE = "9600 ttyS0" + +# Device nodes add xsa for (system ace) +IMAGE_DEVICE_TABLES = "files/device_table-minimal.txt \ + files/device_table_add-xsa.txt" |