All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release
@ 2013-08-23 19:58 Denys Dmytriyenko
  2013-08-23 19:58 ` [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release Denys Dmytriyenko
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Denys Dmytriyenko @ 2013-08-23 19:58 UTC (permalink / raw)
  To: meta-ti

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 recipes-kernel/linux/linux-ti-staging_git.bb | 42 ++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 recipes-kernel/linux/linux-ti-staging_git.bb

diff --git a/recipes-kernel/linux/linux-ti-staging_git.bb b/recipes-kernel/linux/linux-ti-staging_git.bb
new file mode 100644
index 0000000..cb59dbb
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti-staging_git.bb
@@ -0,0 +1,42 @@
+SECTION = "kernel"
+DESCRIPTION = "Linux kernel for TI devices"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
+KERNEL_IMAGETYPE = "uImage"
+
+inherit kernel
+
+require recipes-kernel/linux/linux-dtb.inc
+require recipes-kernel/linux/setup-defconfig.inc
+
+# Add a run-time dependency for the PM firmware to be installed
+# on the target file system.
+RDEPENDS_kernel-base_ti33x += "am33x-cm3 am33x-cm3-initscript"
+
+# Default is to package all dts files for ti33x devices unless building
+# for the specific beaglebone machine.
+KERNEL_DEVICETREE_ti33x = "arch/arm/boot/dts/am335x-evm.dts arch/arm/boot/dts/am335x-evmsk.dts arch/arm/boot/dts/am335x-bone.dts"
+KERNEL_DEVICETREE_am437x-evm = "arch/arm/boot/dts/am43x-epos-evm.dts"
+KERNEL_DEVICETREE_beaglebone = "arch/arm/boot/dts/am335x-bone.dts"
+KERNEL_DEVICETREE_omap5-evm = "arch/arm/boot/dts/omap5-sevm.dts arch/arm/boot/dts/omap5-uevm.dts"
+KERNEL_DEVICETREE_dra7xx-evm = "arch/arm/boot/dts/dra7-evm.dts"
+
+KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
+
+COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15"
+
+DEFAULT_PREFERENCE = "-1"
+
+S = "${WORKDIR}/git"
+
+BRANCH = "ti-linux-3.12.y"
+
+SRCREV = "b36f4be3de1b123d8601de062e7dbfc904f305fb"
+PV = "3.10+3.11-rc6"
+
+# Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause a rebuild
+MACHINE_KERNEL_PR_append = "a+gitr${SRCPV}"
+
+SRC_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git;protocol=git;branch=${BRANCH} \
+           file://defconfig \
+          "
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release
  2013-08-23 19:58 [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Denys Dmytriyenko
@ 2013-08-23 19:58 ` Denys Dmytriyenko
  2013-08-23 20:05   ` Maupin, Chase
  2013-08-23 19:58 ` [PATCH 3/4] ti43x: add new SOC family for Sitara AM43xx Cortex-A9 processors Denys Dmytriyenko
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2013-08-23 19:58 UTC (permalink / raw)
  To: meta-ti

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 recipes-bsp/u-boot/u-boot-ti-staging_git.bb | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 recipes-bsp/u-boot/u-boot-ti-staging_git.bb

diff --git a/recipes-bsp/u-boot/u-boot-ti-staging_git.bb b/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
new file mode 100644
index 0000000..bd6188d
--- /dev/null
+++ b/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
@@ -0,0 +1,19 @@
+require u-boot-ti.inc
+
+DESCRIPTION = "u-boot bootloader for TI devices"
+
+LIC_FILES_CHKSUM = "file://Licenses/README;md5=6bc50ecab884fce80cd3ef3da8852b08"
+
+PV = "2013.09+2013.10-rc1"
+PR = "r0+gitr${SRCPV}"
+
+DEFAULT_PREFERENCE = "-1"
+
+SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}"
+
+BRANCH ?= "master"
+
+SRCREV = "39bc12ddc36c9e30199471da0f3a929b178a04b2"
+
+SPL_BINARY = "MLO"
+SPL_UART_BINARY = "u-boot-spl.bin"
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 3/4] ti43x: add new SOC family for Sitara AM43xx Cortex-A9 processors
  2013-08-23 19:58 [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Denys Dmytriyenko
  2013-08-23 19:58 ` [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release Denys Dmytriyenko
@ 2013-08-23 19:58 ` Denys Dmytriyenko
  2013-08-23 20:07   ` Maupin, Chase
  2013-08-23 19:58 ` [PATCH 4/4] am437x-evm: add machine config for Sitara AM437x EVM Denys Dmytriyenko
  2013-08-23 20:03 ` [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Maupin, Chase
  3 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2013-08-23 19:58 UTC (permalink / raw)
  To: meta-ti

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 conf/machine/include/ti43x.inc | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 conf/machine/include/ti43x.inc

diff --git a/conf/machine/include/ti43x.inc b/conf/machine/include/ti43x.inc
new file mode 100644
index 0000000..c9ce2bb
--- /dev/null
+++ b/conf/machine/include/ti43x.inc
@@ -0,0 +1,37 @@
+SOC_FAMILY = "ti43x"
+require conf/machine/include/soc-family.inc
+
+require conf/machine/include/tune-cortexa9.inc
+
+PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
+
+# For built-in LCD, add xf86-input-tslib
+XSERVER = "xserver-xorg \
+           xf86-input-evdev \
+           xf86-input-mouse \
+           xf86-video-fbdev \
+           xf86-input-keyboard"
+
+# Default to external video, change to smallscreen for built-in LCD
+GUI_MACHINE_CLASS = "bigscreen"
+
+# Increase this everytime you change something in the kernel
+MACHINE_KERNEL_PR = "r0"
+
+# Default providers, may need to override for specific machines
+PREFERRED_PROVIDER_virtual/kernel = "linux-ti-staging"
+PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging"
+PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging"
+
+KERNEL_IMAGETYPE = "uImage"
+
+UBOOT_ARCH = "arm"
+UBOOT_MACHINE = "am43xx_evm_config"
+
+UBOOT_ENTRYPOINT = "0x80008000"
+UBOOT_LOADADDRESS = "0x80008000"
+
+EXTRA_IMAGEDEPENDS += "u-boot"
+
+# List common SoC features, may need to add touchscreen for specific machines
+MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa ethernet sgx"
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 4/4] am437x-evm: add machine config for Sitara AM437x EVM
  2013-08-23 19:58 [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Denys Dmytriyenko
  2013-08-23 19:58 ` [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release Denys Dmytriyenko
  2013-08-23 19:58 ` [PATCH 3/4] ti43x: add new SOC family for Sitara AM43xx Cortex-A9 processors Denys Dmytriyenko
@ 2013-08-23 19:58 ` Denys Dmytriyenko
  2013-08-23 20:07   ` Maupin, Chase
  2013-08-23 20:03 ` [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Maupin, Chase
  3 siblings, 1 reply; 10+ messages in thread
From: Denys Dmytriyenko @ 2013-08-23 19:58 UTC (permalink / raw)
  To: meta-ti

From: Denys Dmytriyenko <denys@ti.com>

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 conf/machine/am437x-evm.conf | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 conf/machine/am437x-evm.conf

diff --git a/conf/machine/am437x-evm.conf b/conf/machine/am437x-evm.conf
new file mode 100644
index 0000000..901bfe8
--- /dev/null
+++ b/conf/machine/am437x-evm.conf
@@ -0,0 +1,35 @@
+#@TYPE: Machine
+#@NAME: AM437x EVM
+#@DESCRIPTION: Machine configuration for the TI AM437x EVM
+
+require conf/machine/include/ti43x.inc
+
+# Use built-in LCD by default
+XSERVER += "xf86-input-tslib"
+GUI_MACHINE_CLASS = "smallscreen"
+MACHINE_FEATURES += "touchscreen"
+
+IMAGE_FSTYPES += "ubi tar.gz"
+
+SERIAL_CONSOLE = "115200 ttyO0"
+
+# UBI information.  Note that this is board and kernel specific.  Changes
+# in your kernel port may require changes in these variables.  For more
+# details about this board please see
+# http://processors.wiki.ti.com/index.php/UBIFS_Support
+
+# do ubiattach /dev/ubi_ctrl -m 7 -O 2048
+# From dmesg:
+# UBI: smallest flash I/O unit:    2048
+# UBI: logical eraseblock size:    126976 bytes
+# from ubiattach stdout:
+# UBI device number 0, total 1988 LEBs
+MKUBIFS_ARGS = "-F -m 2048 -e 126976 -c 3836"
+
+# do ubiattach /dev/ubi_ctrl -m 7 -O 2048
+# from dmesg:
+# UBI: smallest flash I/O unit:    2048
+# UBI: physical eraseblock size:   131072 bytes (128 KiB)
+# UBI: sub-page size:              512
+# UBI: VID header offset:          2048 (aligned 2048)
+UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512 -O 2048"
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release
  2013-08-23 19:58 [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Denys Dmytriyenko
                   ` (2 preceding siblings ...)
  2013-08-23 19:58 ` [PATCH 4/4] am437x-evm: add machine config for Sitara AM437x EVM Denys Dmytriyenko
@ 2013-08-23 20:03 ` Maupin, Chase
  2013-08-23 20:05   ` Denys Dmytriyenko
  3 siblings, 1 reply; 10+ messages in thread
From: Maupin, Chase @ 2013-08-23 20:03 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-ti

Acked-by: Chase Maupin <chase.maupin@ti.com>

Although, I would ask why not call it _3.12 instead of _git.  But I'm OK either way, just we will need to cut an _3.12 at some point.

>-----Original Message-----
>From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
>bounces@yoctoproject.org] On Behalf Of Denys Dmytriyenko
>Sent: Friday, August 23, 2013 2:58 PM
>To: meta-ti@yoctoproject.org
>Subject: [meta-ti] [PATCH 1/4] linux-ti-staging: add the latest
>integration tree in prep for 3.12 release
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> recipes-kernel/linux/linux-ti-staging_git.bb | 42
>++++++++++++++++++++++++++++
> 1 file changed, 42 insertions(+)
> create mode 100644 recipes-kernel/linux/linux-ti-staging_git.bb
>
>diff --git a/recipes-kernel/linux/linux-ti-staging_git.bb
>b/recipes-kernel/linux/linux-ti-staging_git.bb
>new file mode 100644
>index 0000000..cb59dbb
>--- /dev/null
>+++ b/recipes-kernel/linux/linux-ti-staging_git.bb
>@@ -0,0 +1,42 @@
>+SECTION = "kernel"
>+DESCRIPTION = "Linux kernel for TI devices"
>+LICENSE = "GPLv2"
>+LIC_FILES_CHKSUM =
>"file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
>+KERNEL_IMAGETYPE = "uImage"
>+
>+inherit kernel
>+
>+require recipes-kernel/linux/linux-dtb.inc
>+require recipes-kernel/linux/setup-defconfig.inc
>+
>+# Add a run-time dependency for the PM firmware to be installed
>+# on the target file system.
>+RDEPENDS_kernel-base_ti33x += "am33x-cm3 am33x-cm3-initscript"
>+
>+# Default is to package all dts files for ti33x devices unless
>building
>+# for the specific beaglebone machine.
>+KERNEL_DEVICETREE_ti33x = "arch/arm/boot/dts/am335x-evm.dts
>arch/arm/boot/dts/am335x-evmsk.dts arch/arm/boot/dts/am335x-
>bone.dts"
>+KERNEL_DEVICETREE_am437x-evm = "arch/arm/boot/dts/am43x-epos-
>evm.dts"
>+KERNEL_DEVICETREE_beaglebone = "arch/arm/boot/dts/am335x-
>bone.dts"
>+KERNEL_DEVICETREE_omap5-evm = "arch/arm/boot/dts/omap5-sevm.dts
>arch/arm/boot/dts/omap5-uevm.dts"
>+KERNEL_DEVICETREE_dra7xx-evm = "arch/arm/boot/dts/dra7-evm.dts"
>+
>+KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
>+
>+COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15"
>+
>+DEFAULT_PREFERENCE = "-1"
>+
>+S = "${WORKDIR}/git"
>+
>+BRANCH = "ti-linux-3.12.y"
>+
>+SRCREV = "b36f4be3de1b123d8601de062e7dbfc904f305fb"
>+PV = "3.10+3.11-rc6"
>+
>+# Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause
>a rebuild
>+MACHINE_KERNEL_PR_append = "a+gitr${SRCPV}"
>+
>+SRC_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-
>kernel.git;protocol=git;branch=${BRANCH} \
>+           file://defconfig \
>+          "
>--
>1.8.3.2
>
>_______________________________________________
>meta-ti mailing list
>meta-ti@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/meta-ti


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release
  2013-08-23 20:03 ` [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Maupin, Chase
@ 2013-08-23 20:05   ` Denys Dmytriyenko
  0 siblings, 0 replies; 10+ messages in thread
From: Denys Dmytriyenko @ 2013-08-23 20:05 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-ti

On Fri, Aug 23, 2013 at 08:03:43PM +0000, Maupin, Chase wrote:
> Acked-by: Chase Maupin <chase.maupin@ti.com>
> 
> Although, I would ask why not call it _3.12 instead of _git.  But I'm OK 
> either way, just we will need to cut an _3.12 at some point.

Because it's 3.10+3.11-rc6 now :) Once 3.12 is released, I'll rename it. Same 
we did with 3.8 before.


> >-----Original Message-----
> >From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
> >bounces@yoctoproject.org] On Behalf Of Denys Dmytriyenko
> >Sent: Friday, August 23, 2013 2:58 PM
> >To: meta-ti@yoctoproject.org
> >Subject: [meta-ti] [PATCH 1/4] linux-ti-staging: add the latest
> >integration tree in prep for 3.12 release
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > recipes-kernel/linux/linux-ti-staging_git.bb | 42
> >++++++++++++++++++++++++++++
> > 1 file changed, 42 insertions(+)
> > create mode 100644 recipes-kernel/linux/linux-ti-staging_git.bb
> >
> >diff --git a/recipes-kernel/linux/linux-ti-staging_git.bb
> >b/recipes-kernel/linux/linux-ti-staging_git.bb
> >new file mode 100644
> >index 0000000..cb59dbb
> >--- /dev/null
> >+++ b/recipes-kernel/linux/linux-ti-staging_git.bb
> >@@ -0,0 +1,42 @@
> >+SECTION = "kernel"
> >+DESCRIPTION = "Linux kernel for TI devices"
> >+LICENSE = "GPLv2"
> >+LIC_FILES_CHKSUM =
> >"file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
> >+KERNEL_IMAGETYPE = "uImage"
> >+
> >+inherit kernel
> >+
> >+require recipes-kernel/linux/linux-dtb.inc
> >+require recipes-kernel/linux/setup-defconfig.inc
> >+
> >+# Add a run-time dependency for the PM firmware to be installed
> >+# on the target file system.
> >+RDEPENDS_kernel-base_ti33x += "am33x-cm3 am33x-cm3-initscript"
> >+
> >+# Default is to package all dts files for ti33x devices unless
> >building
> >+# for the specific beaglebone machine.
> >+KERNEL_DEVICETREE_ti33x = "arch/arm/boot/dts/am335x-evm.dts
> >arch/arm/boot/dts/am335x-evmsk.dts arch/arm/boot/dts/am335x-
> >bone.dts"
> >+KERNEL_DEVICETREE_am437x-evm = "arch/arm/boot/dts/am43x-epos-
> >evm.dts"
> >+KERNEL_DEVICETREE_beaglebone = "arch/arm/boot/dts/am335x-
> >bone.dts"
> >+KERNEL_DEVICETREE_omap5-evm = "arch/arm/boot/dts/omap5-sevm.dts
> >arch/arm/boot/dts/omap5-uevm.dts"
> >+KERNEL_DEVICETREE_dra7xx-evm = "arch/arm/boot/dts/dra7-evm.dts"
> >+
> >+KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
> >+
> >+COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15"
> >+
> >+DEFAULT_PREFERENCE = "-1"
> >+
> >+S = "${WORKDIR}/git"
> >+
> >+BRANCH = "ti-linux-3.12.y"
> >+
> >+SRCREV = "b36f4be3de1b123d8601de062e7dbfc904f305fb"
> >+PV = "3.10+3.11-rc6"
> >+
> >+# Append to the MACHINE_KERNEL_PR so that a new SRCREV will cause
> >a rebuild
> >+MACHINE_KERNEL_PR_append = "a+gitr${SRCPV}"
> >+
> >+SRC_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-
> >kernel.git;protocol=git;branch=${BRANCH} \
> >+           file://defconfig \
> >+          "
> >--
> >1.8.3.2
> >
> >_______________________________________________
> >meta-ti mailing list
> >meta-ti@yoctoproject.org
> >https://lists.yoctoproject.org/listinfo/meta-ti
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release
  2013-08-23 19:58 ` [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release Denys Dmytriyenko
@ 2013-08-23 20:05   ` Maupin, Chase
  2013-08-23 20:08     ` Denys Dmytriyenko
  0 siblings, 1 reply; 10+ messages in thread
From: Maupin, Chase @ 2013-08-23 20:05 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-ti

>-----Original Message-----
>From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
>bounces@yoctoproject.org] On Behalf Of Denys Dmytriyenko
>Sent: Friday, August 23, 2013 2:58 PM
>To: meta-ti@yoctoproject.org
>Subject: [meta-ti] [PATCH 2/4] u-boot-ti-staging: add the latest
>integration tree in prep for 2013.10 release
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> recipes-bsp/u-boot/u-boot-ti-staging_git.bb | 19
>+++++++++++++++++++
> 1 file changed, 19 insertions(+)
> create mode 100644 recipes-bsp/u-boot/u-boot-ti-staging_git.bb
>
>diff --git a/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
>b/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
>new file mode 100644
>index 0000000..bd6188d
>--- /dev/null
>+++ b/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
>@@ -0,0 +1,19 @@
>+require u-boot-ti.inc
>+
>+DESCRIPTION = "u-boot bootloader for TI devices"
>+
>+LIC_FILES_CHKSUM =
>"file://Licenses/README;md5=6bc50ecab884fce80cd3ef3da8852b08"
>+
>+PV = "2013.09+2013.10-rc1"

Shouldn't this be more 2013.07+2013.10-rc1?

Also, will you update the other machines like dra7xx-evm to use this tree?

>+PR = "r0+gitr${SRCPV}"
>+
>+DEFAULT_PREFERENCE = "-1"
>+
>+SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-
>boot.git;protocol=git;branch=${BRANCH}"
>+
>+BRANCH ?= "master"
>+
>+SRCREV = "39bc12ddc36c9e30199471da0f3a929b178a04b2"
>+
>+SPL_BINARY = "MLO"
>+SPL_UART_BINARY = "u-boot-spl.bin"
>--
>1.8.3.2
>
>_______________________________________________
>meta-ti mailing list
>meta-ti@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/meta-ti


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 3/4] ti43x: add new SOC family for Sitara AM43xx Cortex-A9 processors
  2013-08-23 19:58 ` [PATCH 3/4] ti43x: add new SOC family for Sitara AM43xx Cortex-A9 processors Denys Dmytriyenko
@ 2013-08-23 20:07   ` Maupin, Chase
  0 siblings, 0 replies; 10+ messages in thread
From: Maupin, Chase @ 2013-08-23 20:07 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-ti

Acked-by: Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
>bounces@yoctoproject.org] On Behalf Of Denys Dmytriyenko
>Sent: Friday, August 23, 2013 2:58 PM
>To: meta-ti@yoctoproject.org
>Subject: [meta-ti] [PATCH 3/4] ti43x: add new SOC family for
>Sitara AM43xx Cortex-A9 processors
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> conf/machine/include/ti43x.inc | 37
>+++++++++++++++++++++++++++++++++++++
> 1 file changed, 37 insertions(+)
> create mode 100644 conf/machine/include/ti43x.inc
>
>diff --git a/conf/machine/include/ti43x.inc
>b/conf/machine/include/ti43x.inc
>new file mode 100644
>index 0000000..c9ce2bb
>--- /dev/null
>+++ b/conf/machine/include/ti43x.inc
>@@ -0,0 +1,37 @@
>+SOC_FAMILY = "ti43x"
>+require conf/machine/include/soc-family.inc
>+
>+require conf/machine/include/tune-cortexa9.inc
>+
>+PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
>+
>+# For built-in LCD, add xf86-input-tslib
>+XSERVER = "xserver-xorg \
>+           xf86-input-evdev \
>+           xf86-input-mouse \
>+           xf86-video-fbdev \
>+           xf86-input-keyboard"
>+
>+# Default to external video, change to smallscreen for built-in
>LCD
>+GUI_MACHINE_CLASS = "bigscreen"
>+
>+# Increase this everytime you change something in the kernel
>+MACHINE_KERNEL_PR = "r0"
>+
>+# Default providers, may need to override for specific machines
>+PREFERRED_PROVIDER_virtual/kernel = "linux-ti-staging"
>+PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging"
>+PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging"
>+
>+KERNEL_IMAGETYPE = "uImage"
>+
>+UBOOT_ARCH = "arm"
>+UBOOT_MACHINE = "am43xx_evm_config"
>+
>+UBOOT_ENTRYPOINT = "0x80008000"
>+UBOOT_LOADADDRESS = "0x80008000"
>+
>+EXTRA_IMAGEDEPENDS += "u-boot"
>+
>+# List common SoC features, may need to add touchscreen for
>specific machines
>+MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2
>screen alsa ethernet sgx"
>--
>1.8.3.2
>
>_______________________________________________
>meta-ti mailing list
>meta-ti@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/meta-ti


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 4/4] am437x-evm: add machine config for Sitara AM437x EVM
  2013-08-23 19:58 ` [PATCH 4/4] am437x-evm: add machine config for Sitara AM437x EVM Denys Dmytriyenko
@ 2013-08-23 20:07   ` Maupin, Chase
  0 siblings, 0 replies; 10+ messages in thread
From: Maupin, Chase @ 2013-08-23 20:07 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-ti

Acked-by: Chase Maupin <chase.maupin@ti.com>

>-----Original Message-----
>From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
>bounces@yoctoproject.org] On Behalf Of Denys Dmytriyenko
>Sent: Friday, August 23, 2013 2:58 PM
>To: meta-ti@yoctoproject.org
>Subject: [meta-ti] [PATCH 4/4] am437x-evm: add machine config for
>Sitara AM437x EVM
>
>From: Denys Dmytriyenko <denys@ti.com>
>
>Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>---
> conf/machine/am437x-evm.conf | 35
>+++++++++++++++++++++++++++++++++++
> 1 file changed, 35 insertions(+)
> create mode 100644 conf/machine/am437x-evm.conf
>
>diff --git a/conf/machine/am437x-evm.conf b/conf/machine/am437x-
>evm.conf
>new file mode 100644
>index 0000000..901bfe8
>--- /dev/null
>+++ b/conf/machine/am437x-evm.conf
>@@ -0,0 +1,35 @@
>+#@TYPE: Machine
>+#@NAME: AM437x EVM
>+#@DESCRIPTION: Machine configuration for the TI AM437x EVM
>+
>+require conf/machine/include/ti43x.inc
>+
>+# Use built-in LCD by default
>+XSERVER += "xf86-input-tslib"
>+GUI_MACHINE_CLASS = "smallscreen"
>+MACHINE_FEATURES += "touchscreen"
>+
>+IMAGE_FSTYPES += "ubi tar.gz"
>+
>+SERIAL_CONSOLE = "115200 ttyO0"
>+
>+# UBI information.  Note that this is board and kernel specific.
>Changes
>+# in your kernel port may require changes in these variables.
>For more
>+# details about this board please see
>+# http://processors.wiki.ti.com/index.php/UBIFS_Support
>+
>+# do ubiattach /dev/ubi_ctrl -m 7 -O 2048
>+# From dmesg:
>+# UBI: smallest flash I/O unit:    2048
>+# UBI: logical eraseblock size:    126976 bytes
>+# from ubiattach stdout:
>+# UBI device number 0, total 1988 LEBs
>+MKUBIFS_ARGS = "-F -m 2048 -e 126976 -c 3836"
>+
>+# do ubiattach /dev/ubi_ctrl -m 7 -O 2048
>+# from dmesg:
>+# UBI: smallest flash I/O unit:    2048
>+# UBI: physical eraseblock size:   131072 bytes (128 KiB)
>+# UBI: sub-page size:              512
>+# UBI: VID header offset:          2048 (aligned 2048)
>+UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512 -O 2048"
>--
>1.8.3.2
>
>_______________________________________________
>meta-ti mailing list
>meta-ti@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/meta-ti


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release
  2013-08-23 20:05   ` Maupin, Chase
@ 2013-08-23 20:08     ` Denys Dmytriyenko
  0 siblings, 0 replies; 10+ messages in thread
From: Denys Dmytriyenko @ 2013-08-23 20:08 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-ti

On Fri, Aug 23, 2013 at 08:05:55PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: meta-ti-bounces@yoctoproject.org [mailto:meta-ti-
> >bounces@yoctoproject.org] On Behalf Of Denys Dmytriyenko
> >Sent: Friday, August 23, 2013 2:58 PM
> >To: meta-ti@yoctoproject.org
> >Subject: [meta-ti] [PATCH 2/4] u-boot-ti-staging: add the latest
> >integration tree in prep for 2013.10 release
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > recipes-bsp/u-boot/u-boot-ti-staging_git.bb | 19
> >+++++++++++++++++++
> > 1 file changed, 19 insertions(+)
> > create mode 100644 recipes-bsp/u-boot/u-boot-ti-staging_git.bb
> >
> >diff --git a/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
> >b/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
> >new file mode 100644
> >index 0000000..bd6188d
> >--- /dev/null
> >+++ b/recipes-bsp/u-boot/u-boot-ti-staging_git.bb
> >@@ -0,0 +1,19 @@
> >+require u-boot-ti.inc
> >+
> >+DESCRIPTION = "u-boot bootloader for TI devices"
> >+
> >+LIC_FILES_CHKSUM =
> >"file://Licenses/README;md5=6bc50ecab884fce80cd3ef3da8852b08"
> >+
> >+PV = "2013.09+2013.10-rc1"
> 
> Shouldn't this be more 2013.07+2013.10-rc1?

Yes, I believe you are right - u-boot uses quarterly releases, but messes up 
my mind by using YYYY.MM format :)


> Also, will you update the other machines like dra7xx-evm to use this tree?

Sure, if we need to. 2013.07 would probably be better, as this is supposed to 
be unstable.


> >+PR = "r0+gitr${SRCPV}"
> >+
> >+DEFAULT_PREFERENCE = "-1"
> >+
> >+SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-
> >boot.git;protocol=git;branch=${BRANCH}"
> >+
> >+BRANCH ?= "master"
> >+
> >+SRCREV = "39bc12ddc36c9e30199471da0f3a929b178a04b2"
> >+
> >+SPL_BINARY = "MLO"
> >+SPL_UART_BINARY = "u-boot-spl.bin"
> >--
> >1.8.3.2
> >
> >_______________________________________________
> >meta-ti mailing list
> >meta-ti@yoctoproject.org
> >https://lists.yoctoproject.org/listinfo/meta-ti
> 


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-08-23 20:08 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-23 19:58 [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Denys Dmytriyenko
2013-08-23 19:58 ` [PATCH 2/4] u-boot-ti-staging: add the latest integration tree in prep for 2013.10 release Denys Dmytriyenko
2013-08-23 20:05   ` Maupin, Chase
2013-08-23 20:08     ` Denys Dmytriyenko
2013-08-23 19:58 ` [PATCH 3/4] ti43x: add new SOC family for Sitara AM43xx Cortex-A9 processors Denys Dmytriyenko
2013-08-23 20:07   ` Maupin, Chase
2013-08-23 19:58 ` [PATCH 4/4] am437x-evm: add machine config for Sitara AM437x EVM Denys Dmytriyenko
2013-08-23 20:07   ` Maupin, Chase
2013-08-23 20:03 ` [PATCH 1/4] linux-ti-staging: add the latest integration tree in prep for 3.12 release Maupin, Chase
2013-08-23 20:05   ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.