diff options
author | Denys Dmytriyenko <denys@ti.com> | 2013-08-23 15:47:55 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2013-08-26 10:35:44 -0400 |
commit | e75aa7f0224d7bba3e45906dc6c203d7d2b768c3 (patch) | |
tree | 3642d8482e5369a4628462566b9ed24bcea6477b /conf/machine | |
parent | 66df71869c092e341a0e32099ddb6a5a457084e0 (diff) | |
download | meta-ti-e75aa7f0224d7bba3e45906dc6c203d7d2b768c3.tar.gz |
ti43x: add new SOC family for Sitara AM43xx Cortex-A9 processors
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Acked-by: Chase Maupin <chase.maupin@ti.com>
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/include/ti43x.inc | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/conf/machine/include/ti43x.inc b/conf/machine/include/ti43x.inc new file mode 100644 index 00000000..c9ce2bbe --- /dev/null +++ b/conf/machine/include/ti43x.inc | |||
@@ -0,0 +1,37 @@ | |||
1 | SOC_FAMILY = "ti43x" | ||
2 | require conf/machine/include/soc-family.inc | ||
3 | |||
4 | require conf/machine/include/tune-cortexa9.inc | ||
5 | |||
6 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" | ||
7 | |||
8 | # For built-in LCD, add xf86-input-tslib | ||
9 | XSERVER = "xserver-xorg \ | ||
10 | xf86-input-evdev \ | ||
11 | xf86-input-mouse \ | ||
12 | xf86-video-fbdev \ | ||
13 | xf86-input-keyboard" | ||
14 | |||
15 | # Default to external video, change to smallscreen for built-in LCD | ||
16 | GUI_MACHINE_CLASS = "bigscreen" | ||
17 | |||
18 | # Increase this everytime you change something in the kernel | ||
19 | MACHINE_KERNEL_PR = "r0" | ||
20 | |||
21 | # Default providers, may need to override for specific machines | ||
22 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti-staging" | ||
23 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging" | ||
24 | PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging" | ||
25 | |||
26 | KERNEL_IMAGETYPE = "uImage" | ||
27 | |||
28 | UBOOT_ARCH = "arm" | ||
29 | UBOOT_MACHINE = "am43xx_evm_config" | ||
30 | |||
31 | UBOOT_ENTRYPOINT = "0x80008000" | ||
32 | UBOOT_LOADADDRESS = "0x80008000" | ||
33 | |||
34 | EXTRA_IMAGEDEPENDS += "u-boot" | ||
35 | |||
36 | # List common SoC features, may need to add touchscreen for specific machines | ||
37 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa ethernet sgx" | ||