diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-16 11:15:24 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-16 11:46:58 +0200 |
commit | f7b4a8fc9762e498a8e08b74001676cfdd9fc030 (patch) | |
tree | aa58bcfb15be269cc94d3a914dce0ec8ef439665 /conf | |
parent | b2ad2aa3518f2f3cb883950f33e6ae7603a41195 (diff) | |
download | meta-ti-f7b4a8fc9762e498a8e08b74001676cfdd9fc030.tar.gz |
add 814x and 816x machine configs
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/am387x-evm.conf | 5 | ||||
-rw-r--r-- | conf/machine/am389x-evm.conf | 5 | ||||
-rw-r--r-- | conf/machine/c6a814x-evm.conf | 5 | ||||
-rw-r--r-- | conf/machine/c6a816x-evm.conf | 5 | ||||
-rw-r--r-- | conf/machine/dm814x-evm.conf | 5 | ||||
-rw-r--r-- | conf/machine/include/ti814x.inc | 26 | ||||
-rw-r--r-- | conf/machine/include/ti816x.inc | 26 |
7 files changed, 77 insertions, 0 deletions
diff --git a/conf/machine/am387x-evm.conf b/conf/machine/am387x-evm.conf new file mode 100644 index 00000000..ebf98890 --- /dev/null +++ b/conf/machine/am387x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: AM389x evm | ||
3 | #@DESCRIPTION: Machine configuration for the AM389x evm | ||
4 | |||
5 | require conf/machine/include/ti814x.inc | ||
diff --git a/conf/machine/am389x-evm.conf b/conf/machine/am389x-evm.conf new file mode 100644 index 00000000..9bfe7a75 --- /dev/null +++ b/conf/machine/am389x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: am389x evm | ||
3 | #@DESCRIPTION: Machine configuration for the am389x evm | ||
4 | |||
5 | require conf/machine/include/ti816x.inc | ||
diff --git a/conf/machine/c6a814x-evm.conf b/conf/machine/c6a814x-evm.conf new file mode 100644 index 00000000..b85c4894 --- /dev/null +++ b/conf/machine/c6a814x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: c6a814x evm | ||
3 | #@DESCRIPTION: Machine configuration for the c6a814x evm | ||
4 | |||
5 | require conf/machine/include/ti814x.inc | ||
diff --git a/conf/machine/c6a816x-evm.conf b/conf/machine/c6a816x-evm.conf new file mode 100644 index 00000000..a7ab9b08 --- /dev/null +++ b/conf/machine/c6a816x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: c6a816x evm | ||
3 | #@DESCRIPTION: Machine configuration for the c6a816x evm | ||
4 | |||
5 | require conf/machine/include/ti816x.inc | ||
diff --git a/conf/machine/dm814x-evm.conf b/conf/machine/dm814x-evm.conf new file mode 100644 index 00000000..140dcc10 --- /dev/null +++ b/conf/machine/dm814x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: DM814x evm | ||
3 | #@DESCRIPTION: Machine configuration for the DM814x evm | ||
4 | |||
5 | require conf/machine/include/ti814x.inc | ||
diff --git a/conf/machine/include/ti814x.inc b/conf/machine/include/ti814x.inc new file mode 100644 index 00000000..3e7ee763 --- /dev/null +++ b/conf/machine/include/ti814x.inc | |||
@@ -0,0 +1,26 @@ | |||
1 | TARGET_ARCH = "arm" | ||
2 | SOC_FAMILY = "ti814x" | ||
3 | |||
4 | require conf/machine/include/tune-cortexa8.inc | ||
5 | |||
6 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti81xx-psp" | ||
7 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | ||
8 | |||
9 | # Increase this everytime you change something in the kernel | ||
10 | MACHINE_KERNEL_PR = "r1" | ||
11 | |||
12 | KERNEL_IMAGETYPE = "uImage" | ||
13 | |||
14 | UBOOT_ARCH = "arm" | ||
15 | UBOOT_MACHINE = "ti8148_evm_config_nand" | ||
16 | UBOOT_ENTRYPOINT = "0x80008000" | ||
17 | UBOOT_LOADADDRESS = "0x80008000" | ||
18 | |||
19 | # Only build u-boot | ||
20 | EXTRA_IMAGEDEPENDS += "u-boot" | ||
21 | |||
22 | # Ship all kernel modules | ||
23 | IMAGE_FSTYPES ?= "jffs2 tar.bz2" | ||
24 | EXTRA_IMAGECMD_jffs2 = "-lqn -e 128" | ||
25 | SERIAL_CONSOLE = "115200 ttyO0" | ||
26 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 ethernet" | ||
diff --git a/conf/machine/include/ti816x.inc b/conf/machine/include/ti816x.inc new file mode 100644 index 00000000..4de567bb --- /dev/null +++ b/conf/machine/include/ti816x.inc | |||
@@ -0,0 +1,26 @@ | |||
1 | TARGET_ARCH = "arm" | ||
2 | SOC_FAMILY = "ti816x" | ||
3 | |||
4 | require conf/machine/include/tune-cortexa8.inc | ||
5 | |||
6 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti81xx-psp" | ||
7 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | ||
8 | |||
9 | # Increase this everytime you change something in the kernel | ||
10 | MACHINE_KERNEL_PR = "r1" | ||
11 | |||
12 | KERNEL_IMAGETYPE = "uImage" | ||
13 | |||
14 | UBOOT_ARCH = "arm" | ||
15 | UBOOT_MACHINE = "ti816x_evm_config" | ||
16 | UBOOT_ENTRYPOINT = "0x80008000" | ||
17 | UBOOT_LOADADDRESS = "0x80008000" | ||
18 | |||
19 | # Only build u-boot | ||
20 | EXTRA_IMAGEDEPENDS += "u-boot" | ||
21 | |||
22 | # Ship all kernel modules | ||
23 | IMAGE_FSTYPES += "jffs2 tar.bz2" | ||
24 | EXTRA_IMAGECMD_jffs2 = "-lqn -e 128" | ||
25 | SERIAL_CONSOLE = "115200 ttyO2" | ||
26 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 ethernet" | ||