diff options
author | Chase Maupin <Chase.Maupin@ti.com> | 2013-03-29 08:59:00 -0500 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2013-03-29 13:34:46 -0400 |
commit | 886bea2308bdd56ac7eae24436a84a7c863e72fa (patch) | |
tree | 30af12a7f0cfb9738ab92139130a764cc2ff27b7 /conf/machine | |
parent | 70c17ece82bdc293ac8b9cac5babd3b76be84819 (diff) | |
download | meta-ti-886bea2308bdd56ac7eae24436a84a7c863e72fa.tar.gz |
dra7xx-evm: Add DRA7xx machine type
* Add the dra7xx-evm machine type which is part of the omap-a15
SOC_FAMILY
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/dra7xx-evm.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/conf/machine/dra7xx-evm.conf b/conf/machine/dra7xx-evm.conf new file mode 100644 index 00000000..55438918 --- /dev/null +++ b/conf/machine/dra7xx-evm.conf | |||
@@ -0,0 +1,36 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: DRA7xx EVM | ||
3 | #@DESCRIPTION: Machine configuration for the TI DRA7xx EVM | ||
4 | |||
5 | require conf/machine/include/omap-a15.inc | ||
6 | |||
7 | IMAGE_FSTYPES += "ubi tar.gz" | ||
8 | |||
9 | SERIAL_CONSOLE = "115200 ttyO2" | ||
10 | |||
11 | # UBI information. Note that this is board and kernel specific. Changes | ||
12 | # in your kernel port may require changes in these variables. For more | ||
13 | # details about this board please see | ||
14 | # http://processors.wiki.ti.com/index.php/UBIFS_Support | ||
15 | |||
16 | # do ubiattach /dev/ubi_ctrl -m 7 -O 2048 | ||
17 | # From dmesg: | ||
18 | # UBI: smallest flash I/O unit: 2048 | ||
19 | # UBI: logical eraseblock size: 126976 bytes | ||
20 | # from ubiattach stdout: | ||
21 | # UBI device number 0, total 1988 LEBs | ||
22 | MKUBIFS_ARGS = "-F -m 2048 -e 126976 -c 3836" | ||
23 | |||
24 | # do ubiattach /dev/ubi_ctrl -m 7 -O 2048 | ||
25 | # from dmesg: | ||
26 | # UBI: smallest flash I/O unit: 2048 | ||
27 | # UBI: physical eraseblock size: 131072 bytes (128 KiB) | ||
28 | # UBI: sub-page size: 512 | ||
29 | # UBI: VID header offset: 2048 (aligned 2048) | ||
30 | UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512 -O 2048" | ||
31 | |||
32 | UBOOT_MACHINE = "dra7xx_evm_config" | ||
33 | |||
34 | # Currently removing the sgx machine feature because there is no SGX package | ||
35 | # available for omap5 | ||
36 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen touchscreen" | ||