diff options
52 files changed, 250 insertions, 177 deletions
diff --git a/recipes-bsp/u-boot/u-boot/0001-OMAP3-enable-i2c-bus-switching-for-Beagle-and-Overo.patch b/recipes-bsp/u-boot/u-boot/0001-Enable-I2C-bus-switching.patch index c718191a..8a328626 100644 --- a/recipes-bsp/u-boot/u-boot/0001-OMAP3-enable-i2c-bus-switching-for-Beagle-and-Overo.patch +++ b/recipes-bsp/u-boot/u-boot/0001-Enable-I2C-bus-switching.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 9c1581dd7f6057d5d25d6b2dcf8bacef95d526d2 Mon Sep 17 00:00:00 2001 | 1 | From 5b5eb18bfb80fa9595eb258a911a94f2807e7497 Mon Sep 17 00:00:00 2001 |
2 | From: Syed Mohammed Khasim <khasim@ti.com> | 2 | From: Syed Mohammed Khasim <khasim@ti.com> |
3 | Date: Mon, 18 Jan 2010 18:11:14 +0530 | 3 | Date: Mon, 18 Jan 2010 18:11:14 +0530 |
4 | Subject: [PATCH] Enable I2C bus switching | 4 | Subject: [PATCH 01/51] Enable I2C bus switching |
5 | 5 | ||
6 | OMAP3 supports Multiple I2C channels, this patch allows | 6 | OMAP3 supports Multiple I2C channels, this patch allows |
7 | us to use i2c dev <bus no> command to switch between busses. | 7 | us to use i2c dev <bus no> command to switch between busses. |
@@ -15,7 +15,7 @@ Acked-by: Heiko Schocher <hs@denx.de> | |||
15 | 2 files changed, 11 insertions(+), 0 deletions(-) | 15 | 2 files changed, 11 insertions(+), 0 deletions(-) |
16 | 16 | ||
17 | diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c | 17 | diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c |
18 | index f00468d..0af230d 100644 | 18 | index ff18991..e8c8184 100644 |
19 | --- a/drivers/i2c/omap24xx_i2c.c | 19 | --- a/drivers/i2c/omap24xx_i2c.c |
20 | +++ b/drivers/i2c/omap24xx_i2c.c | 20 | +++ b/drivers/i2c/omap24xx_i2c.c |
21 | @@ -435,3 +435,8 @@ int i2c_set_bus_num(unsigned int bus) | 21 | @@ -435,3 +435,8 @@ int i2c_set_bus_num(unsigned int bus) |
@@ -28,10 +28,10 @@ index f00468d..0af230d 100644 | |||
28 | + return (int) current_bus; | 28 | + return (int) current_bus; |
29 | +} | 29 | +} |
30 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 30 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
31 | index ad73a66..1a76004 100644 | 31 | index 08d79ac..d522c77 100644 |
32 | --- a/include/configs/omap3_beagle.h | 32 | --- a/include/configs/omap3_beagle.h |
33 | +++ b/include/configs/omap3_beagle.h | 33 | +++ b/include/configs/omap3_beagle.h |
34 | @@ -113,6 +113,12 @@ | 34 | @@ -100,6 +100,12 @@ |
35 | /* DDR - I use Micron DDR */ | 35 | /* DDR - I use Micron DDR */ |
36 | #define CONFIG_OMAP3_MICRON_DDR 1 | 36 | #define CONFIG_OMAP3_MICRON_DDR 1 |
37 | 37 | ||
@@ -45,5 +45,5 @@ index ad73a66..1a76004 100644 | |||
45 | #define CONFIG_MUSB_UDC 1 | 45 | #define CONFIG_MUSB_UDC 1 |
46 | #define CONFIG_USB_OMAP3 1 | 46 | #define CONFIG_USB_OMAP3 1 |
47 | -- | 47 | -- |
48 | 1.6.1 | 48 | 1.6.6.1 |
49 | 49 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0002-OMAP3-add-board-revision-detection-for-Overo.patch b/recipes-bsp/u-boot/u-boot/0002-OMAP3-add-board-revision-detection-for-Overo.patch index 255d7257..86cc3eff 100644 --- a/recipes-bsp/u-boot/u-boot/0002-OMAP3-add-board-revision-detection-for-Overo.patch +++ b/recipes-bsp/u-boot/u-boot/0002-OMAP3-add-board-revision-detection-for-Overo.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 59c9245c9a52954c8c084e257bbe55443201614b Mon Sep 17 00:00:00 2001 | 1 | From 8cea9443be01ccc2525ff1de17b0dddd7c27984e Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Wed, 10 Feb 2010 14:40:56 -0800 | 3 | Date: Wed, 10 Feb 2010 14:40:56 -0800 |
4 | Subject: [PATCH 02/37] OMAP3: add board revision detection for Overo | 4 | Subject: [PATCH 02/51] OMAP3: add board revision detection for Overo |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/overo/overo.c | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++ | 7 | board/overo/overo.c | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++ |
diff --git a/recipes-bsp/u-boot/u-boot/0003-OMAP3-update-Beagle-revision-detection-to-recognize-.patch b/recipes-bsp/u-boot/u-boot/0003-OMAP3-update-Beagle-revision-detection-to-recognize-.patch index d12ff7a1..546888c2 100644 --- a/recipes-bsp/u-boot/u-boot/0003-OMAP3-update-Beagle-revision-detection-to-recognize-.patch +++ b/recipes-bsp/u-boot/u-boot/0003-OMAP3-update-Beagle-revision-detection-to-recognize-.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 9db5da6e8a0d6fb973b71902525ad3298faa39d9 Mon Sep 17 00:00:00 2001 | 1 | From fae6228e203436ce0d82ce32da769bd91206865f Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Wed, 10 Feb 2010 14:51:48 -0800 | 3 | Date: Wed, 10 Feb 2010 14:51:48 -0800 |
4 | Subject: [PATCH 03/37] OMAP3: update Beagle revision detection to recognize C4 boards | 4 | Subject: [PATCH 03/51] OMAP3: update Beagle revision detection to recognize C4 boards |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 77 +++++++++++++++++++++++++++------------------- | 7 | board/ti/beagle/beagle.c | 77 +++++++++++++++++++++++++++------------------- |
diff --git a/recipes-bsp/u-boot/u-boot/0004-OMAP3-Set-VAUX2-to-1.8V-for-EHCI-PHY-on-Beagle-Rev-C.patch b/recipes-bsp/u-boot/u-boot/0004-OMAP3-Set-VAUX2-to-1.8V-for-EHCI-PHY-on-Beagle-Rev-C.patch index 549b3fbd..16f4888d 100644 --- a/recipes-bsp/u-boot/u-boot/0004-OMAP3-Set-VAUX2-to-1.8V-for-EHCI-PHY-on-Beagle-Rev-C.patch +++ b/recipes-bsp/u-boot/u-boot/0004-OMAP3-Set-VAUX2-to-1.8V-for-EHCI-PHY-on-Beagle-Rev-C.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From efc587fb24a5246f5a436a057320687a1b7847c6 Mon Sep 17 00:00:00 2001 | 1 | From a1a4ba7a5fce36522a994cb06d6d76931964578c Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Wed, 10 Feb 2010 15:23:19 -0800 | 3 | Date: Wed, 10 Feb 2010 15:23:19 -0800 |
4 | Subject: [PATCH 04/37] OMAP3: Set VAUX2 to 1.8V for EHCI PHY on Beagle Rev C4 boards | 4 | Subject: [PATCH 04/51] OMAP3: Set VAUX2 to 1.8V for EHCI PHY on Beagle Rev C4 boards |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 5 +++++ | 7 | board/ti/beagle/beagle.c | 5 +++++ |
diff --git a/recipes-bsp/u-boot/u-boot/0005-OMAP3-add-entry-for-rev-3.1.2-check-and-display-max-.patch b/recipes-bsp/u-boot/u-boot/0005-OMAP3-add-entry-for-rev-3.1.2-check-and-display-max-.patch index 783fe279..e8f0f5fe 100644 --- a/recipes-bsp/u-boot/u-boot/0005-OMAP3-add-entry-for-rev-3.1.2-check-and-display-max-.patch +++ b/recipes-bsp/u-boot/u-boot/0005-OMAP3-add-entry-for-rev-3.1.2-check-and-display-max-.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 27072274450ea8de1994744782397452b99814cc Mon Sep 17 00:00:00 2001 | 1 | From 13ed8be9848adff30bcfdcbe16bce3d2c6bb02f1 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Wed, 3 Feb 2010 12:26:30 -0800 | 3 | Date: Wed, 3 Feb 2010 12:26:30 -0800 |
4 | Subject: [PATCH 05/37] OMAP3: add entry for rev 3.1.2, check and display max cpu clock for rev > 3.0 | 4 | Subject: [PATCH 05/51] OMAP3: add entry for rev 3.1.2, check and display max cpu clock for rev > 3.0 |
5 | 5 | ||
6 | --- | 6 | --- |
7 | cpu/arm_cortexa8/omap3/sys_info.c | 24 ++++++++++++++++++++++-- | 7 | cpu/arm_cortexa8/omap3/sys_info.c | 24 ++++++++++++++++++++++-- |
diff --git a/recipes-bsp/u-boot/u-boot/0006-OMAP3-add-mpurate-boot-arg-for-overo-and-beagle.patch b/recipes-bsp/u-boot/u-boot/0006-OMAP3-add-mpurate-boot-arg-for-overo-and-beagle.patch index de3b4845..700c3c2d 100644 --- a/recipes-bsp/u-boot/u-boot/0006-OMAP3-add-mpurate-boot-arg-for-overo-and-beagle.patch +++ b/recipes-bsp/u-boot/u-boot/0006-OMAP3-add-mpurate-boot-arg-for-overo-and-beagle.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 1b082bb4a8ba5b7bee727baf3cd048e1785c8abd Mon Sep 17 00:00:00 2001 | 1 | From b03bad6826a2f3a0a03f6cdd5682e0a628fff851 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Wed, 3 Feb 2010 14:39:14 -0800 | 3 | Date: Wed, 3 Feb 2010 14:39:14 -0800 |
4 | Subject: [PATCH 06/37] OMAP3: add mpurate boot arg for overo and beagle | 4 | Subject: [PATCH 06/51] OMAP3: add mpurate boot arg for overo and beagle |
5 | 5 | ||
6 | allows one to set the omap clock rate via "setenv mpurate 720" for example | 6 | allows one to set the omap clock rate via "setenv mpurate 720" for example |
7 | --- | 7 | --- |
@@ -10,10 +10,10 @@ allows one to set the omap clock rate via "setenv mpurate 720" for example | |||
10 | 2 files changed, 6 insertions(+), 0 deletions(-) | 10 | 2 files changed, 6 insertions(+), 0 deletions(-) |
11 | 11 | ||
12 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 12 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
13 | index 87e3dd0..ce347cd 100644 | 13 | index d522c77..35ae8af 100644 |
14 | --- a/include/configs/omap3_beagle.h | 14 | --- a/include/configs/omap3_beagle.h |
15 | +++ b/include/configs/omap3_beagle.h | 15 | +++ b/include/configs/omap3_beagle.h |
16 | @@ -182,6 +182,7 @@ | 16 | @@ -187,6 +187,7 @@ |
17 | "loadaddr=0x82000000\0" \ | 17 | "loadaddr=0x82000000\0" \ |
18 | "usbtty=cdc_acm\0" \ | 18 | "usbtty=cdc_acm\0" \ |
19 | "console=ttyS2,115200n8\0" \ | 19 | "console=ttyS2,115200n8\0" \ |
@@ -21,7 +21,7 @@ index 87e3dd0..ce347cd 100644 | |||
21 | "vram=12M\0" \ | 21 | "vram=12M\0" \ |
22 | "dvimode=1024x768MR-16@60\0" \ | 22 | "dvimode=1024x768MR-16@60\0" \ |
23 | "defaultdisplay=dvi\0" \ | 23 | "defaultdisplay=dvi\0" \ |
24 | @@ -190,6 +191,7 @@ | 24 | @@ -195,6 +196,7 @@ |
25 | "nandroot=/dev/mtdblock4 rw\0" \ | 25 | "nandroot=/dev/mtdblock4 rw\0" \ |
26 | "nandrootfstype=jffs2\0" \ | 26 | "nandrootfstype=jffs2\0" \ |
27 | "mmcargs=setenv bootargs console=${console} " \ | 27 | "mmcargs=setenv bootargs console=${console} " \ |
@@ -29,7 +29,7 @@ index 87e3dd0..ce347cd 100644 | |||
29 | "vram=${vram} " \ | 29 | "vram=${vram} " \ |
30 | "omapfb.mode=dvi:${dvimode} " \ | 30 | "omapfb.mode=dvi:${dvimode} " \ |
31 | "omapfb.debug=y " \ | 31 | "omapfb.debug=y " \ |
32 | @@ -197,6 +199,7 @@ | 32 | @@ -202,6 +204,7 @@ |
33 | "root=${mmcroot} " \ | 33 | "root=${mmcroot} " \ |
34 | "rootfstype=${mmcrootfstype}\0" \ | 34 | "rootfstype=${mmcrootfstype}\0" \ |
35 | "nandargs=setenv bootargs console=${console} " \ | 35 | "nandargs=setenv bootargs console=${console} " \ |
@@ -38,10 +38,10 @@ index 87e3dd0..ce347cd 100644 | |||
38 | "omapfb.mode=dvi:${dvimode} " \ | 38 | "omapfb.mode=dvi:${dvimode} " \ |
39 | "omapfb.debug=y " \ | 39 | "omapfb.debug=y " \ |
40 | diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h | 40 | diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h |
41 | index 0d24758..295cce6 100644 | 41 | index a43500b..113c6df 100644 |
42 | --- a/include/configs/omap3_overo.h | 42 | --- a/include/configs/omap3_overo.h |
43 | +++ b/include/configs/omap3_overo.h | 43 | +++ b/include/configs/omap3_overo.h |
44 | @@ -152,6 +152,7 @@ | 44 | @@ -151,6 +151,7 @@ |
45 | #define CONFIG_EXTRA_ENV_SETTINGS \ | 45 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
46 | "loadaddr=0x82000000\0" \ | 46 | "loadaddr=0x82000000\0" \ |
47 | "console=ttyS2,115200n8\0" \ | 47 | "console=ttyS2,115200n8\0" \ |
@@ -49,7 +49,7 @@ index 0d24758..295cce6 100644 | |||
49 | "vram=12M\0" \ | 49 | "vram=12M\0" \ |
50 | "dvimode=1024x768MR-16@60\0" \ | 50 | "dvimode=1024x768MR-16@60\0" \ |
51 | "defaultdisplay=dvi\0" \ | 51 | "defaultdisplay=dvi\0" \ |
52 | @@ -160,6 +161,7 @@ | 52 | @@ -159,6 +160,7 @@ |
53 | "nandroot=/dev/mtdblock4 rw\0" \ | 53 | "nandroot=/dev/mtdblock4 rw\0" \ |
54 | "nandrootfstype=jffs2\0" \ | 54 | "nandrootfstype=jffs2\0" \ |
55 | "mmcargs=setenv bootargs console=${console} " \ | 55 | "mmcargs=setenv bootargs console=${console} " \ |
@@ -57,7 +57,7 @@ index 0d24758..295cce6 100644 | |||
57 | "vram=${vram} " \ | 57 | "vram=${vram} " \ |
58 | "omapfb.mode=dvi:${dvimode} " \ | 58 | "omapfb.mode=dvi:${dvimode} " \ |
59 | "omapfb.debug=y " \ | 59 | "omapfb.debug=y " \ |
60 | @@ -167,6 +169,7 @@ | 60 | @@ -166,6 +168,7 @@ |
61 | "root=${mmcroot} " \ | 61 | "root=${mmcroot} " \ |
62 | "rootfstype=${mmcrootfstype}\0" \ | 62 | "rootfstype=${mmcrootfstype}\0" \ |
63 | "nandargs=setenv bootargs console=${console} " \ | 63 | "nandargs=setenv bootargs console=${console} " \ |
diff --git a/recipes-bsp/u-boot/u-boot/0007-OMAP3-detect-expansion-board-type-version-using-eepr.patch b/recipes-bsp/u-boot/u-boot/0007-OMAP3-detect-expansion-board-type-version-using-eepr.patch index 13da414c..d89469c5 100644 --- a/recipes-bsp/u-boot/u-boot/0007-OMAP3-detect-expansion-board-type-version-using-eepr.patch +++ b/recipes-bsp/u-boot/u-boot/0007-OMAP3-detect-expansion-board-type-version-using-eepr.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 129dccd106ea5862f3ff25c368102bf656472f7f Mon Sep 17 00:00:00 2001 | 1 | From f1ad90ae5fd07257ea42aa771e16a7798cd440bb Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Fri, 12 Feb 2010 12:17:48 -0800 | 3 | Date: Fri, 12 Feb 2010 12:17:48 -0800 |
4 | Subject: [PATCH 07/37] OMAP3: detect expansion board type/version using eeprom contents | 4 | Subject: [PATCH 07/51] OMAP3: detect expansion board type/version using eeprom contents |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/overo/overo.c | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ | 7 | board/overo/overo.c | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ |
diff --git a/recipes-bsp/u-boot/u-boot/0008-OMAP3-Overo-enable-config-eeprom-to-set-u-boot-env-v.patch b/recipes-bsp/u-boot/u-boot/0008-OMAP3-Overo-enable-config-eeprom-to-set-u-boot-env-v.patch index c7aea042..d2cf9304 100644 --- a/recipes-bsp/u-boot/u-boot/0008-OMAP3-Overo-enable-config-eeprom-to-set-u-boot-env-v.patch +++ b/recipes-bsp/u-boot/u-boot/0008-OMAP3-Overo-enable-config-eeprom-to-set-u-boot-env-v.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 4fb2bbcae8f283c46e762aa93b25cbbd55bab8b6 Mon Sep 17 00:00:00 2001 | 1 | From 831504a9514c2cb4b1dc8c9a261fd4d1a037235f Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 16 Feb 2010 09:58:01 -0800 | 3 | Date: Tue, 16 Feb 2010 09:58:01 -0800 |
4 | Subject: [PATCH 08/37] OMAP3: Overo: enable config eeprom to set u-boot env variable | 4 | Subject: [PATCH 08/51] OMAP3: Overo: enable config eeprom to set u-boot env variable |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/overo/overo.c | 21 +++++++++++++-------- | 7 | board/overo/overo.c | 21 +++++++++++++-------- |
diff --git a/recipes-bsp/u-boot/u-boot/0009-OMAP3-Overo-enable-input-on-MMC1_CLK-and-MMC3_CLK-pi.patch b/recipes-bsp/u-boot/u-boot/0009-OMAP3-Overo-enable-input-on-MMC1_CLK-and-MMC3_CLK-pi.patch index b690a6c8..b1a41574 100644 --- a/recipes-bsp/u-boot/u-boot/0009-OMAP3-Overo-enable-input-on-MMC1_CLK-and-MMC3_CLK-pi.patch +++ b/recipes-bsp/u-boot/u-boot/0009-OMAP3-Overo-enable-input-on-MMC1_CLK-and-MMC3_CLK-pi.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 0ddd7f44f04b47d16d33a6b232b288ebdb1c9992 Mon Sep 17 00:00:00 2001 | 1 | From 500787d2999e23cf185808f611af61745c2746a3 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 16 Feb 2010 10:00:45 -0800 | 3 | Date: Tue, 16 Feb 2010 10:00:45 -0800 |
4 | Subject: [PATCH 09/37] OMAP3: Overo: enable input on MMC1_CLK and MMC3_CLK pinmux | 4 | Subject: [PATCH 09/51] OMAP3: Overo: enable input on MMC1_CLK and MMC3_CLK pinmux |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/overo/overo.h | 4 ++-- | 7 | board/overo/overo.h | 4 ++-- |
diff --git a/recipes-bsp/u-boot/u-boot/0010-OMAP3-Overo-set-CONFIG_SYS_I2C_SPEED-to-400Khz.patch b/recipes-bsp/u-boot/u-boot/0010-OMAP3-Overo-set-CONFIG_SYS_I2C_SPEED-to-400Khz.patch index 53e12b3e..37692a2e 100644 --- a/recipes-bsp/u-boot/u-boot/0010-OMAP3-Overo-set-CONFIG_SYS_I2C_SPEED-to-400Khz.patch +++ b/recipes-bsp/u-boot/u-boot/0010-OMAP3-Overo-set-CONFIG_SYS_I2C_SPEED-to-400Khz.patch | |||
@@ -1,14 +1,14 @@ | |||
1 | From 405a5a151c8d42f157dc48731f6e607675156774 Mon Sep 17 00:00:00 2001 | 1 | From 6ced8e0d859ea9cddbc2ec4a94a4c7394f1ee4c5 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 16 Feb 2010 10:03:14 -0800 | 3 | Date: Tue, 16 Feb 2010 10:03:14 -0800 |
4 | Subject: [PATCH 10/37] OMAP3: Overo: set CONFIG_SYS_I2C_SPEED to 400Khz | 4 | Subject: [PATCH 10/51] OMAP3: Overo: set CONFIG_SYS_I2C_SPEED to 400Khz |
5 | 5 | ||
6 | --- | 6 | --- |
7 | include/configs/omap3_overo.h | 2 +- | 7 | include/configs/omap3_overo.h | 2 +- |
8 | 1 files changed, 1 insertions(+), 1 deletions(-) | 8 | 1 files changed, 1 insertions(+), 1 deletions(-) |
9 | 9 | ||
10 | diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h | 10 | diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h |
11 | index 295cce6..fdbeb67 100644 | 11 | index 113c6df..27b5476 100644 |
12 | --- a/include/configs/omap3_overo.h | 12 | --- a/include/configs/omap3_overo.h |
13 | +++ b/include/configs/omap3_overo.h | 13 | +++ b/include/configs/omap3_overo.h |
14 | @@ -112,7 +112,7 @@ | 14 | @@ -112,7 +112,7 @@ |
diff --git a/recipes-bsp/u-boot/u-boot/0011-OMAP3-trim-excessively-long-delays-in-i2c-driver.patch b/recipes-bsp/u-boot/u-boot/0011-OMAP3-trim-excessively-long-delays-in-i2c-driver.patch index 6a3a5d93..b6e0545b 100644 --- a/recipes-bsp/u-boot/u-boot/0011-OMAP3-trim-excessively-long-delays-in-i2c-driver.patch +++ b/recipes-bsp/u-boot/u-boot/0011-OMAP3-trim-excessively-long-delays-in-i2c-driver.patch | |||
@@ -1,14 +1,14 @@ | |||
1 | From 991f54c9da846ab9571c256adf42d8d80d044bdc Mon Sep 17 00:00:00 2001 | 1 | From f054db5f2a8eedbeaf8c6045d0bbafde5aca3efc Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 16 Feb 2010 10:04:30 -0800 | 3 | Date: Tue, 16 Feb 2010 10:04:30 -0800 |
4 | Subject: [PATCH 11/37] OMAP3: trim excessively long delays in i2c driver | 4 | Subject: [PATCH 11/51] OMAP3: trim excessively long delays in i2c driver |
5 | 5 | ||
6 | --- | 6 | --- |
7 | drivers/i2c/omap24xx_i2c.c | 8 ++++---- | 7 | drivers/i2c/omap24xx_i2c.c | 8 ++++---- |
8 | 1 files changed, 4 insertions(+), 4 deletions(-) | 8 | 1 files changed, 4 insertions(+), 4 deletions(-) |
9 | 9 | ||
10 | diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c | 10 | diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c |
11 | index 30a8b4c..ba47fc4 100644 | 11 | index e8c8184..0af230d 100644 |
12 | --- a/drivers/i2c/omap24xx_i2c.c | 12 | --- a/drivers/i2c/omap24xx_i2c.c |
13 | +++ b/drivers/i2c/omap24xx_i2c.c | 13 | +++ b/drivers/i2c/omap24xx_i2c.c |
14 | @@ -148,7 +148,7 @@ static int i2c_read_byte (u8 devaddr, u8 regoffset, u8 * value) | 14 | @@ -148,7 +148,7 @@ static int i2c_read_byte (u8 devaddr, u8 regoffset, u8 * value) |
diff --git a/recipes-bsp/u-boot/u-boot/0012-OMAP3-Overo-allow-expansion-boards-with-any-vendor-I.patch b/recipes-bsp/u-boot/u-boot/0012-OMAP3-Overo-allow-expansion-boards-with-any-vendor-I.patch index b554d254..a7b97fa6 100644 --- a/recipes-bsp/u-boot/u-boot/0012-OMAP3-Overo-allow-expansion-boards-with-any-vendor-I.patch +++ b/recipes-bsp/u-boot/u-boot/0012-OMAP3-Overo-allow-expansion-boards-with-any-vendor-I.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From ad1a2c047554deae2e1608d025c4f6891cf8f116 Mon Sep 17 00:00:00 2001 | 1 | From 2c02d9b024b58bbea920d3d6c40d62b30e448f60 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Fri, 26 Feb 2010 12:40:26 -0800 | 3 | Date: Fri, 26 Feb 2010 12:40:26 -0800 |
4 | Subject: [PATCH 12/37] OMAP3: Overo: allow expansion boards with any vendor ID | 4 | Subject: [PATCH 12/51] OMAP3: Overo: allow expansion boards with any vendor ID |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/overo/overo.c | 10 +++------- | 7 | board/overo/overo.c | 10 +++------- |
diff --git a/recipes-bsp/u-boot/u-boot/0013-OMAP3-Overo-change-address-of-expansion-eeprom-to-0x.patch b/recipes-bsp/u-boot/u-boot/0013-OMAP3-Overo-change-address-of-expansion-eeprom-to-0x.patch index 4bbddcbd..2698c0fd 100644 --- a/recipes-bsp/u-boot/u-boot/0013-OMAP3-Overo-change-address-of-expansion-eeprom-to-0x.patch +++ b/recipes-bsp/u-boot/u-boot/0013-OMAP3-Overo-change-address-of-expansion-eeprom-to-0x.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 305e2cb16f4f6e8c7f13120e6a98bb1e999c764f Mon Sep 17 00:00:00 2001 | 1 | From 90119d705d2c56254d4b27efb8e8c61e62f014c1 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Fri, 26 Feb 2010 12:42:30 -0800 | 3 | Date: Fri, 26 Feb 2010 12:42:30 -0800 |
4 | Subject: [PATCH 13/37] OMAP3: Overo: change address of expansion eeprom to 0x51 so as to not conflict with EDID address | 4 | Subject: [PATCH 13/51] OMAP3: Overo: change address of expansion eeprom to 0x51 so as to not conflict with EDID address |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/overo/overo.c | 2 +- | 7 | board/overo/overo.c | 2 +- |
diff --git a/recipes-bsp/u-boot/u-boot/0014-OMAP3-board.c-don-t-attempt-to-set-up-second-RAM-ban.patch b/recipes-bsp/u-boot/u-boot/0014-OMAP3-board.c-don-t-attempt-to-set-up-second-RAM-ban.patch index 2936dffc..4e31550b 100644 --- a/recipes-bsp/u-boot/u-boot/0014-OMAP3-board.c-don-t-attempt-to-set-up-second-RAM-ban.patch +++ b/recipes-bsp/u-boot/u-boot/0014-OMAP3-board.c-don-t-attempt-to-set-up-second-RAM-ban.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 63de99ce613bbfce792ee46d14b324273e6a0d29 Mon Sep 17 00:00:00 2001 | 1 | From 7f50d09f9a00b7f2a392a5b0b9f2f19a96a90c16 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 23 Mar 2010 09:04:50 -0700 | 3 | Date: Tue, 23 Mar 2010 09:04:50 -0700 |
4 | Subject: [PATCH 14/37] OMAP3: board.c: don't attempt to set up second RAM bank, assume x-load has already done this | 4 | Subject: [PATCH 14/51] OMAP3: board.c: don't attempt to set up second RAM bank, assume x-load has already done this |
5 | 5 | ||
6 | --- | 6 | --- |
7 | cpu/arm_cortexa8/omap3/board.c | 19 +++++++++---------- | 7 | cpu/arm_cortexa8/omap3/board.c | 19 +++++++++---------- |
diff --git a/recipes-bsp/u-boot/u-boot/0015-OMAP3-mem.c-enhance-the-RAM-test.patch b/recipes-bsp/u-boot/u-boot/0015-OMAP3-mem.c-enhance-the-RAM-test.patch index ce3c3b85..d689f69f 100644 --- a/recipes-bsp/u-boot/u-boot/0015-OMAP3-mem.c-enhance-the-RAM-test.patch +++ b/recipes-bsp/u-boot/u-boot/0015-OMAP3-mem.c-enhance-the-RAM-test.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From f2e3d22fb1963d08844edee45f7d7d6beba32152 Mon Sep 17 00:00:00 2001 | 1 | From 379ff04432ffdef234c2f85b1801cf7df2d3d5ee Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 23 Mar 2010 09:06:49 -0700 | 3 | Date: Tue, 23 Mar 2010 09:06:49 -0700 |
4 | Subject: [PATCH 15/37] OMAP3: mem.c: enhance the RAM test | 4 | Subject: [PATCH 15/51] OMAP3: mem.c: enhance the RAM test |
5 | 5 | ||
6 | --- | 6 | --- |
7 | cpu/arm_cortexa8/omap3/mem.c | 28 +++++++++++++++------------- | 7 | cpu/arm_cortexa8/omap3/mem.c | 28 +++++++++++++++------------- |
diff --git a/recipes-bsp/u-boot/u-boot/0016-env_nand.c-fail-gracefully-if-no-nand-is-present.patch b/recipes-bsp/u-boot/u-boot/0016-env_nand.c-fail-gracefully-if-no-nand-is-present.patch index 5e83125e..8f39aa15 100644 --- a/recipes-bsp/u-boot/u-boot/0016-env_nand.c-fail-gracefully-if-no-nand-is-present.patch +++ b/recipes-bsp/u-boot/u-boot/0016-env_nand.c-fail-gracefully-if-no-nand-is-present.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 794e4aa6a5aa5fbe71b08bfe8f5f5f65078fbc68 Mon Sep 17 00:00:00 2001 | 1 | From a9b4ba0446bd55d98243de2f3e3a747f8842811f Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 23 Mar 2010 09:12:16 -0700 | 3 | Date: Tue, 23 Mar 2010 09:12:16 -0700 |
4 | Subject: [PATCH 16/37] env_nand.c: fail gracefully if no nand is present | 4 | Subject: [PATCH 16/51] env_nand.c: fail gracefully if no nand is present |
5 | 5 | ||
6 | --- | 6 | --- |
7 | common/env_nand.c | 4 ++++ | 7 | common/env_nand.c | 4 ++++ |
diff --git a/recipes-bsp/u-boot/u-boot/0017-OMAP3-add-definitions-to-support-sysinfo-cpu-and-cpu.patch b/recipes-bsp/u-boot/u-boot/0017-OMAP3-add-definitions-to-support-sysinfo-cpu-and-cpu.patch index ad5a2131..3c668220 100644 --- a/recipes-bsp/u-boot/u-boot/0017-OMAP3-add-definitions-to-support-sysinfo-cpu-and-cpu.patch +++ b/recipes-bsp/u-boot/u-boot/0017-OMAP3-add-definitions-to-support-sysinfo-cpu-and-cpu.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 34622e1e89b615c999480ab48ec004c16f8ca2d5 Mon Sep 17 00:00:00 2001 | 1 | From 4c1682016b61262456acb9386ef69d0da4243db9 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 23 Mar 2010 09:15:29 -0700 | 3 | Date: Tue, 23 Mar 2010 09:15:29 -0700 |
4 | Subject: [PATCH 17/37] OMAP3: add definitions to support sysinfo cpu and cpu family detection | 4 | Subject: [PATCH 17/51] OMAP3: add definitions to support sysinfo cpu and cpu family detection |
5 | 5 | ||
6 | --- | 6 | --- |
7 | include/asm-arm/arch-omap3/cpu.h | 6 ------ | 7 | include/asm-arm/arch-omap3/cpu.h | 6 ------ |
diff --git a/recipes-bsp/u-boot/u-boot/0018-OMAP3-sys_info-update-cpu-detection-for-36XX-37XX.patch b/recipes-bsp/u-boot/u-boot/0018-OMAP3-sys_info-update-cpu-detection-for-36XX-37XX.patch index 65f606b4..5566db2d 100644 --- a/recipes-bsp/u-boot/u-boot/0018-OMAP3-sys_info-update-cpu-detection-for-36XX-37XX.patch +++ b/recipes-bsp/u-boot/u-boot/0018-OMAP3-sys_info-update-cpu-detection-for-36XX-37XX.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 8480eb0272865078290146031e09eb70baed3f6e Mon Sep 17 00:00:00 2001 | 1 | From f8a42576fac8349ae8ff9d6673b229f6b3103798 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 23 Mar 2010 09:17:59 -0700 | 3 | Date: Tue, 23 Mar 2010 09:17:59 -0700 |
4 | Subject: [PATCH 18/37] OMAP3 sys_info: update cpu detection for 36XX/37XX | 4 | Subject: [PATCH 18/51] OMAP3 sys_info: update cpu detection for 36XX/37XX |
5 | 5 | ||
6 | --- | 6 | --- |
7 | cpu/arm_cortexa8/omap3/sys_info.c | 137 ++++++++++++++++++++++++++++--------- | 7 | cpu/arm_cortexa8/omap3/sys_info.c | 137 ++++++++++++++++++++++++++++--------- |
diff --git a/recipes-bsp/u-boot/u-boot/0019-OMAP3-clocks-update-clock-setup-for-36XX-37XX.patch b/recipes-bsp/u-boot/u-boot/0019-OMAP3-clocks-update-clock-setup-for-36XX-37XX.patch index e5dbec62..fc33fba4 100644 --- a/recipes-bsp/u-boot/u-boot/0019-OMAP3-clocks-update-clock-setup-for-36XX-37XX.patch +++ b/recipes-bsp/u-boot/u-boot/0019-OMAP3-clocks-update-clock-setup-for-36XX-37XX.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 0bf419a0faa8c9dc73d7a84f93d7fcb89be3ea21 Mon Sep 17 00:00:00 2001 | 1 | From 276236da04d67dfad61ccab5d4700613ae8527f9 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 23 Mar 2010 09:20:56 -0700 | 3 | Date: Tue, 23 Mar 2010 09:20:56 -0700 |
4 | Subject: [PATCH 19/37] OMAP3: clocks: update clock setup for 36XX/37XX | 4 | Subject: [PATCH 19/51] OMAP3: clocks: update clock setup for 36XX/37XX |
5 | 5 | ||
6 | --- | 6 | --- |
7 | cpu/arm_cortexa8/omap3/clock.c | 559 +++++++++++++++++++++-------- | 7 | cpu/arm_cortexa8/omap3/clock.c | 559 +++++++++++++++++++++-------- |
@@ -675,7 +675,7 @@ index 6330c9e..538a183 100644 | |||
675 | } | 675 | } |
676 | + | 676 | + |
677 | diff --git a/cpu/arm_cortexa8/omap3/lowlevel_init.S b/cpu/arm_cortexa8/omap3/lowlevel_init.S | 677 | diff --git a/cpu/arm_cortexa8/omap3/lowlevel_init.S b/cpu/arm_cortexa8/omap3/lowlevel_init.S |
678 | index 73063ec..2045e4e 100644 | 678 | index 73063ec..061d75f 100644 |
679 | --- a/cpu/arm_cortexa8/omap3/lowlevel_init.S | 679 | --- a/cpu/arm_cortexa8/omap3/lowlevel_init.S |
680 | +++ b/cpu/arm_cortexa8/omap3/lowlevel_init.S | 680 | +++ b/cpu/arm_cortexa8/omap3/lowlevel_init.S |
681 | @@ -359,3 +359,72 @@ per_dpll_param: | 681 | @@ -359,3 +359,72 @@ per_dpll_param: |
diff --git a/recipes-bsp/u-boot/u-boot/0020-OMAP3-beagle-add-support-for-Beagle-xM.patch b/recipes-bsp/u-boot/u-boot/0020-OMAP3-beagle-add-support-for-Beagle-xM.patch index e6ae0dc7..abe4655c 100644 --- a/recipes-bsp/u-boot/u-boot/0020-OMAP3-beagle-add-support-for-Beagle-xM.patch +++ b/recipes-bsp/u-boot/u-boot/0020-OMAP3-beagle-add-support-for-Beagle-xM.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 27c6c30dbb5de0c0ed30ceaf69bb0e9f12149c03 Mon Sep 17 00:00:00 2001 | 1 | From 8a8738a7d042a80ddef68a9683d7dda77bed8765 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Tue, 23 Mar 2010 09:21:49 -0700 | 3 | Date: Tue, 23 Mar 2010 09:21:49 -0700 |
4 | Subject: [PATCH 20/37] OMAP3: beagle: add support for Beagle xM | 4 | Subject: [PATCH 20/51] OMAP3: beagle: add support for Beagle xM |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 23 +++++++++++++++-------- | 7 | board/ti/beagle/beagle.c | 23 +++++++++++++++-------- |
@@ -121,10 +121,10 @@ index d95fd78..fd06d46 100644 | |||
121 | + | 121 | + |
122 | #endif | 122 | #endif |
123 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 123 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
124 | index ce347cd..bba36df 100644 | 124 | index 35ae8af..1370a29 100644 |
125 | --- a/include/configs/omap3_beagle.h | 125 | --- a/include/configs/omap3_beagle.h |
126 | +++ b/include/configs/omap3_beagle.h | 126 | +++ b/include/configs/omap3_beagle.h |
127 | @@ -157,6 +157,7 @@ | 127 | @@ -162,6 +162,7 @@ |
128 | /* | 128 | /* |
129 | * Board NAND Info. | 129 | * Board NAND Info. |
130 | */ | 130 | */ |
diff --git a/recipes-bsp/u-boot/u-boot/0021-OMAP3-Beagle-Overo-remove-omapfb.debug-y-from-defaul.patch b/recipes-bsp/u-boot/u-boot/0021-OMAP3-Beagle-Overo-remove-omapfb.debug-y-from-defaul.patch index 01aedc87..82789939 100644 --- a/recipes-bsp/u-boot/u-boot/0021-OMAP3-Beagle-Overo-remove-omapfb.debug-y-from-defaul.patch +++ b/recipes-bsp/u-boot/u-boot/0021-OMAP3-Beagle-Overo-remove-omapfb.debug-y-from-defaul.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From e26b222adeea78777a89e9b0d0aefed67cde7d55 Mon Sep 17 00:00:00 2001 | 1 | From 0fd26c84173c9a589c6cd9c0db6d2200e769134b Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Thu, 25 Mar 2010 06:54:47 -0700 | 3 | Date: Thu, 25 Mar 2010 06:54:47 -0700 |
4 | Subject: [PATCH 21/37] OMAP3: Beagle, Overo: remove omapfb.debug=y from default env | 4 | Subject: [PATCH 21/51] OMAP3: Beagle, Overo: remove omapfb.debug=y from default env |
5 | 5 | ||
6 | --- | 6 | --- |
7 | include/configs/omap3_beagle.h | 2 -- | 7 | include/configs/omap3_beagle.h | 2 -- |
@@ -9,10 +9,10 @@ Subject: [PATCH 21/37] OMAP3: Beagle, Overo: remove omapfb.debug=y from default | |||
9 | 2 files changed, 0 insertions(+), 4 deletions(-) | 9 | 2 files changed, 0 insertions(+), 4 deletions(-) |
10 | 10 | ||
11 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 11 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
12 | index bba36df..c156cea 100644 | 12 | index 1370a29..8bedf7d 100644 |
13 | --- a/include/configs/omap3_beagle.h | 13 | --- a/include/configs/omap3_beagle.h |
14 | +++ b/include/configs/omap3_beagle.h | 14 | +++ b/include/configs/omap3_beagle.h |
15 | @@ -195,7 +195,6 @@ | 15 | @@ -200,7 +200,6 @@ |
16 | "mpurate=${mpurate} " \ | 16 | "mpurate=${mpurate} " \ |
17 | "vram=${vram} " \ | 17 | "vram=${vram} " \ |
18 | "omapfb.mode=dvi:${dvimode} " \ | 18 | "omapfb.mode=dvi:${dvimode} " \ |
@@ -20,7 +20,7 @@ index bba36df..c156cea 100644 | |||
20 | "omapdss.def_disp=${defaultdisplay} " \ | 20 | "omapdss.def_disp=${defaultdisplay} " \ |
21 | "root=${mmcroot} " \ | 21 | "root=${mmcroot} " \ |
22 | "rootfstype=${mmcrootfstype}\0" \ | 22 | "rootfstype=${mmcrootfstype}\0" \ |
23 | @@ -203,7 +202,6 @@ | 23 | @@ -208,7 +207,6 @@ |
24 | "mpurate=${mpurate} " \ | 24 | "mpurate=${mpurate} " \ |
25 | "vram=${vram} " \ | 25 | "vram=${vram} " \ |
26 | "omapfb.mode=dvi:${dvimode} " \ | 26 | "omapfb.mode=dvi:${dvimode} " \ |
@@ -29,10 +29,10 @@ index bba36df..c156cea 100644 | |||
29 | "root=${nandroot} " \ | 29 | "root=${nandroot} " \ |
30 | "rootfstype=${nandrootfstype}\0" \ | 30 | "rootfstype=${nandrootfstype}\0" \ |
31 | diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h | 31 | diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h |
32 | index fdbeb67..418e2ea 100644 | 32 | index 27b5476..118e886 100644 |
33 | --- a/include/configs/omap3_overo.h | 33 | --- a/include/configs/omap3_overo.h |
34 | +++ b/include/configs/omap3_overo.h | 34 | +++ b/include/configs/omap3_overo.h |
35 | @@ -164,7 +164,6 @@ | 35 | @@ -163,7 +163,6 @@ |
36 | "mpurate=${mpurate} " \ | 36 | "mpurate=${mpurate} " \ |
37 | "vram=${vram} " \ | 37 | "vram=${vram} " \ |
38 | "omapfb.mode=dvi:${dvimode} " \ | 38 | "omapfb.mode=dvi:${dvimode} " \ |
@@ -40,7 +40,7 @@ index fdbeb67..418e2ea 100644 | |||
40 | "omapdss.def_disp=${defaultdisplay} " \ | 40 | "omapdss.def_disp=${defaultdisplay} " \ |
41 | "root=${mmcroot} " \ | 41 | "root=${mmcroot} " \ |
42 | "rootfstype=${mmcrootfstype}\0" \ | 42 | "rootfstype=${mmcrootfstype}\0" \ |
43 | @@ -172,7 +171,6 @@ | 43 | @@ -171,7 +170,6 @@ |
44 | "mpurate=${mpurate} " \ | 44 | "mpurate=${mpurate} " \ |
45 | "vram=${vram} " \ | 45 | "vram=${vram} " \ |
46 | "omapfb.mode=dvi:${dvimode} " \ | 46 | "omapfb.mode=dvi:${dvimode} " \ |
diff --git a/recipes-bsp/u-boot/u-boot/0022-OMAP3-beagle-implement-expansionboard-detection-base.patch b/recipes-bsp/u-boot/u-boot/0022-OMAP3-beagle-implement-expansionboard-detection-base.patch index 91d09abe..c301c779 100644 --- a/recipes-bsp/u-boot/u-boot/0022-OMAP3-beagle-implement-expansionboard-detection-base.patch +++ b/recipes-bsp/u-boot/u-boot/0022-OMAP3-beagle-implement-expansionboard-detection-base.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 851d35fab7f93400a1d714524b5e986206d9b0c4 Mon Sep 17 00:00:00 2001 | 1 | From b48754f4c77924a9351867e17e2f09fbe5a83b82 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Thu, 25 Mar 2010 16:07:23 +0100 | 3 | Date: Thu, 25 Mar 2010 16:07:23 +0100 |
4 | Subject: [PATCH 22/37] OMAP3: beagle: implement expansionboard detection based on board/overo.c code | 4 | Subject: [PATCH 22/51] OMAP3: beagle: implement expansionboard detection based on board/overo.c code |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 78 ++++++++++++++++++++++++++++++++++++++++++++++ | 7 | board/ti/beagle/beagle.c | 78 ++++++++++++++++++++++++++++++++++++++++++++++ |
diff --git a/recipes-bsp/u-boot/u-boot/0023-beagleboard-display-message-about-I2C-errors-being-e.patch b/recipes-bsp/u-boot/u-boot/0023-beagleboard-display-message-about-I2C-errors-being-e.patch index d7ac7131..498a5ac0 100644 --- a/recipes-bsp/u-boot/u-boot/0023-beagleboard-display-message-about-I2C-errors-being-e.patch +++ b/recipes-bsp/u-boot/u-boot/0023-beagleboard-display-message-about-I2C-errors-being-e.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 4b07f3a9f045453e5e7b5950e721ed35d9bd308a Mon Sep 17 00:00:00 2001 | 1 | From 653c13d956b189c05e6c02077dbd85cba8ff490b Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Wed, 31 Mar 2010 14:24:25 +0200 | 3 | Date: Wed, 31 Mar 2010 14:24:25 +0200 |
4 | Subject: [PATCH 23/37] beagleboard: display message about I2C errors being expected when no expansion boards are present | 4 | Subject: [PATCH 23/51] beagleboard: display message about I2C errors being expected when no expansion boards are present |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 3 +++ | 7 | board/ti/beagle/beagle.c | 3 +++ |
diff --git a/recipes-bsp/u-boot/u-boot/0024-beagleboard-fix-TCT-expansionboard-IDs.patch b/recipes-bsp/u-boot/u-boot/0024-beagleboard-fix-TCT-expansionboard-IDs.patch index dc5e69a2..ada474dd 100644 --- a/recipes-bsp/u-boot/u-boot/0024-beagleboard-fix-TCT-expansionboard-IDs.patch +++ b/recipes-bsp/u-boot/u-boot/0024-beagleboard-fix-TCT-expansionboard-IDs.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From a4fa85edf5ff6aa6a06f437acc8694dd866f6618 Mon Sep 17 00:00:00 2001 | 1 | From a0f21f7418dfa81a40bf99b7e926153a310ba457 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Sun, 11 Apr 2010 12:14:43 +0200 | 3 | Date: Sun, 11 Apr 2010 12:14:43 +0200 |
4 | Subject: [PATCH 24/37] beagleboard: fix TCT expansionboard IDs | 4 | Subject: [PATCH 24/51] beagleboard: fix TCT expansionboard IDs |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 4 ++-- | 7 | board/ti/beagle/beagle.c | 4 ++-- |
diff --git a/recipes-bsp/u-boot/u-boot/0025-Add-DSS-driver-for-OMAP3.patch b/recipes-bsp/u-boot/u-boot/0025-Add-DSS-driver-for-OMAP3.patch index da517b25..6a0baea7 100644 --- a/recipes-bsp/u-boot/u-boot/0025-Add-DSS-driver-for-OMAP3.patch +++ b/recipes-bsp/u-boot/u-boot/0025-Add-DSS-driver-for-OMAP3.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 10bffe78f0ef6cb450ecea717dce8d636982bc86 Mon Sep 17 00:00:00 2001 | 1 | From afa9025604773b90831cb93a5c80db8d2b8eed4b Mon Sep 17 00:00:00 2001 |
2 | From: Syed Mohammed Khasim <khasim@ti.com> | 2 | From: Syed Mohammed Khasim <khasim@ti.com> |
3 | Date: Tue, 12 Jan 2010 23:57:28 +0530 | 3 | Date: Tue, 12 Jan 2010 23:57:28 +0530 |
4 | Subject: [PATCH 25/37] Add DSS driver for OMAP3 | 4 | Subject: [PATCH 25/51] Add DSS driver for OMAP3 |
5 | 5 | ||
6 | Supports dynamic panel configuration | 6 | Supports dynamic panel configuration |
7 | Supports dynamic tv standard selection | 7 | Supports dynamic tv standard selection |
diff --git a/recipes-bsp/u-boot/u-boot/0026-Enable-DSS-driver-for-Beagle.patch b/recipes-bsp/u-boot/u-boot/0026-Enable-DSS-driver-for-Beagle.patch index 7e7bea83..415e718b 100644 --- a/recipes-bsp/u-boot/u-boot/0026-Enable-DSS-driver-for-Beagle.patch +++ b/recipes-bsp/u-boot/u-boot/0026-Enable-DSS-driver-for-Beagle.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From a8adb8e29aba9d2c83731839063f1381fce3906c Mon Sep 17 00:00:00 2001 | 1 | From 89a879905e59c837626b6a9425bcc27b097e02ad Mon Sep 17 00:00:00 2001 |
2 | From: Syed Mohammed Khasim <khasim@ti.com> | 2 | From: Syed Mohammed Khasim <khasim@ti.com> |
3 | Date: Sun, 11 Apr 2010 17:44:39 +0200 | 3 | Date: Sun, 11 Apr 2010 17:44:39 +0200 |
4 | Subject: [PATCH 26/37] Enable DSS driver for Beagle | 4 | Subject: [PATCH 26/51] Enable DSS driver for Beagle |
5 | 5 | ||
6 | Configures DSS to display color bar on Svideo | 6 | Configures DSS to display color bar on Svideo |
7 | Configures DSS to display background color on DVID | 7 | Configures DSS to display background color on DVID |
@@ -142,10 +142,10 @@ index ec4f831..69f9398 100644 | |||
142 | + | 142 | + |
143 | #endif | 143 | #endif |
144 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 144 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
145 | index c156cea..7bcbe9b 100644 | 145 | index 8bedf7d..52d727a 100644 |
146 | --- a/include/configs/omap3_beagle.h | 146 | --- a/include/configs/omap3_beagle.h |
147 | +++ b/include/configs/omap3_beagle.h | 147 | +++ b/include/configs/omap3_beagle.h |
148 | @@ -131,6 +131,7 @@ | 148 | @@ -137,6 +137,7 @@ |
149 | #define CONFIG_CMD_I2C /* I2C serial bus support */ | 149 | #define CONFIG_CMD_I2C /* I2C serial bus support */ |
150 | #define CONFIG_CMD_MMC /* MMC support */ | 150 | #define CONFIG_CMD_MMC /* MMC support */ |
151 | #define CONFIG_CMD_NAND /* NAND support */ | 151 | #define CONFIG_CMD_NAND /* NAND support */ |
diff --git a/recipes-bsp/u-boot/u-boot/0027-beagleboardXM-don-t-set-mpurate-on-xM-in-bootargs.patch b/recipes-bsp/u-boot/u-boot/0027-beagleboardXM-don-t-set-mpurate-on-xM-in-bootargs.patch index 90d71a8a..c0255038 100644 --- a/recipes-bsp/u-boot/u-boot/0027-beagleboardXM-don-t-set-mpurate-on-xM-in-bootargs.patch +++ b/recipes-bsp/u-boot/u-boot/0027-beagleboardXM-don-t-set-mpurate-on-xM-in-bootargs.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 85d4ffbc3a12b28cae00fc88d4adba7df4907fe4 Mon Sep 17 00:00:00 2001 | 1 | From 4aca3c70a18da58e263b08e37b288a06b2b6655c Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Tue, 13 Apr 2010 22:04:07 +0200 | 3 | Date: Tue, 13 Apr 2010 22:04:07 +0200 |
4 | Subject: [PATCH 27/37] beagleboardXM: don't set mpurate on xM in bootargs | 4 | Subject: [PATCH 27/51] beagleboardXM: don't set mpurate on xM in bootargs |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 1 - | 7 | board/ti/beagle/beagle.c | 1 - |
diff --git a/recipes-bsp/u-boot/u-boot/0028-OMAP3-fix-and-clean-up-L2-cache-enable-disable-funct.patch b/recipes-bsp/u-boot/u-boot/0028-OMAP3-fix-and-clean-up-L2-cache-enable-disable-funct.patch index d2c6abba..5d6a5bf6 100644 --- a/recipes-bsp/u-boot/u-boot/0028-OMAP3-fix-and-clean-up-L2-cache-enable-disable-funct.patch +++ b/recipes-bsp/u-boot/u-boot/0028-OMAP3-fix-and-clean-up-L2-cache-enable-disable-funct.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From c18bda32fdb048ea38b7ff579f365ea8858053d7 Mon Sep 17 00:00:00 2001 | 1 | From 72e1ab470e483c91ab3aa38bec31faf3dad52735 Mon Sep 17 00:00:00 2001 |
2 | From: Mans Rullgard <mans@mansr.com> | 2 | From: Mans Rullgard <mans@mansr.com> |
3 | Date: Wed, 14 Apr 2010 12:08:00 +0100 | 3 | Date: Wed, 14 Apr 2010 12:08:00 +0100 |
4 | Subject: [PATCH 28/37] OMAP3: fix and clean up L2 cache enable/disable functions | 4 | Subject: [PATCH 28/51] OMAP3: fix and clean up L2 cache enable/disable functions |
5 | 5 | ||
6 | On OMAP34xx ES1.0, the L2 enable bit can only be set in secure mode, | 6 | On OMAP34xx ES1.0, the L2 enable bit can only be set in secure mode, |
7 | so an SMC call to the ROM monitor is required. On later versions, | 7 | so an SMC call to the ROM monitor is required. On later versions, |
diff --git a/recipes-bsp/u-boot/u-boot/0029-OMAP3-convert-setup_auxcr-to-pure-asm.patch b/recipes-bsp/u-boot/u-boot/0029-OMAP3-convert-setup_auxcr-to-pure-asm.patch index e1ffdca7..a60aae46 100644 --- a/recipes-bsp/u-boot/u-boot/0029-OMAP3-convert-setup_auxcr-to-pure-asm.patch +++ b/recipes-bsp/u-boot/u-boot/0029-OMAP3-convert-setup_auxcr-to-pure-asm.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 6ddb5d4e28801907af7be39e47d502fd5c8e73e1 Mon Sep 17 00:00:00 2001 | 1 | From 1e795a2c3e44002c3512222dd3da07ac3ea42d7d Mon Sep 17 00:00:00 2001 |
2 | From: Mans Rullgard <mans@mansr.com> | 2 | From: Mans Rullgard <mans@mansr.com> |
3 | Date: Wed, 14 Apr 2010 16:49:57 +0100 | 3 | Date: Wed, 14 Apr 2010 16:49:57 +0100 |
4 | Subject: [PATCH 29/37] OMAP3: convert setup_auxcr() to pure asm | 4 | Subject: [PATCH 29/51] OMAP3: convert setup_auxcr() to pure asm |
5 | 5 | ||
6 | This function consists entirely of inline asm statements, so writing | 6 | This function consists entirely of inline asm statements, so writing |
7 | it directly in a .S file is simpler. Additionally, the inline asm is | 7 | it directly in a .S file is simpler. Additionally, the inline asm is |
diff --git a/recipes-bsp/u-boot/u-boot/0030-OMAP3-apply-Cortex-A8-errata-workarounds-only-on-aff.patch b/recipes-bsp/u-boot/u-boot/0030-OMAP3-apply-Cortex-A8-errata-workarounds-only-on-aff.patch index af669ec0..24f292c6 100644 --- a/recipes-bsp/u-boot/u-boot/0030-OMAP3-apply-Cortex-A8-errata-workarounds-only-on-aff.patch +++ b/recipes-bsp/u-boot/u-boot/0030-OMAP3-apply-Cortex-A8-errata-workarounds-only-on-aff.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 4e7bc59affc2a71de40259330e27e62181993968 Mon Sep 17 00:00:00 2001 | 1 | From fd092c7f2286fab34cf42c6c56360ae7794dbc7f Mon Sep 17 00:00:00 2001 |
2 | From: Mans Rullgard <mans@mansr.com> | 2 | From: Mans Rullgard <mans@mansr.com> |
3 | Date: Wed, 14 Apr 2010 17:10:28 +0100 | 3 | Date: Wed, 14 Apr 2010 17:10:28 +0100 |
4 | Subject: [PATCH 30/37] OMAP3: apply Cortex-A8 errata workarounds only on affected revisions | 4 | Subject: [PATCH 30/51] OMAP3: apply Cortex-A8 errata workarounds only on affected revisions |
5 | 5 | ||
6 | The workarounds for errata 621766 and 725233 should only be applied | 6 | The workarounds for errata 621766 and 725233 should only be applied |
7 | on affected Cortex-A8 revisions. Recent chips use r3px cores where | 7 | on affected Cortex-A8 revisions. Recent chips use r3px cores where |
diff --git a/recipes-bsp/u-boot/u-boot/0031-OMAP3-beagle-add-more-expansionboards-based-on-http-.patch b/recipes-bsp/u-boot/u-boot/0031-OMAP3-beagle-add-more-expansionboards-based-on-http-.patch index 9ea19123..b713ded4 100644 --- a/recipes-bsp/u-boot/u-boot/0031-OMAP3-beagle-add-more-expansionboards-based-on-http-.patch +++ b/recipes-bsp/u-boot/u-boot/0031-OMAP3-beagle-add-more-expansionboards-based-on-http-.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From bbfb38ccd1e2bb19a1eb698bd37cd1ab50c87b37 Mon Sep 17 00:00:00 2001 | 1 | From ccbe10687806b6504c87bd3ad80bd406bc6263f4 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Fri, 23 Apr 2010 10:50:43 +0200 | 3 | Date: Fri, 23 Apr 2010 10:50:43 +0200 |
4 | Subject: [PATCH 31/37] OMAP3: beagle: add more expansionboards, based on http://www.elinux.org/BeagleBoardPinMux#Vendor_and_Device_IDs | 4 | Subject: [PATCH 31/51] OMAP3: beagle: add more expansionboards, based on http://www.elinux.org/BeagleBoardPinMux#Vendor_and_Device_IDs |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 8 ++++++++ | 7 | board/ti/beagle/beagle.c | 8 ++++++++ |
diff --git a/recipes-bsp/u-boot/u-boot/0032-OMAP3-beagle-set-mpurate-to-600-for-revB-and-revC1-3.patch b/recipes-bsp/u-boot/u-boot/0032-OMAP3-beagle-set-mpurate-to-600-for-revB-and-revC1-3.patch index c99d3d98..b3513443 100644 --- a/recipes-bsp/u-boot/u-boot/0032-OMAP3-beagle-set-mpurate-to-600-for-revB-and-revC1-3.patch +++ b/recipes-bsp/u-boot/u-boot/0032-OMAP3-beagle-set-mpurate-to-600-for-revB-and-revC1-3.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From ae05ca488390671516bd4ed021eb43901fee740f Mon Sep 17 00:00:00 2001 | 1 | From 0d2821af767b7cfe1a5d868a14f8a18e01070e37 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Tue, 27 Apr 2010 13:44:16 +0200 | 3 | Date: Tue, 27 Apr 2010 13:44:16 +0200 |
4 | Subject: [PATCH 32/37] OMAP3: beagle: set mpurate to 600 for revB and revC1-3 | 4 | Subject: [PATCH 32/51] OMAP3: beagle: set mpurate to 600 for revB and revC1-3 |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 2 ++ | 7 | board/ti/beagle/beagle.c | 2 ++ |
diff --git a/recipes-bsp/u-boot/u-boot/0033-OMAP3-beagle-prettify-expansionboard-message-a-bit.patch b/recipes-bsp/u-boot/u-boot/0033-OMAP3-beagle-prettify-expansionboard-message-a-bit.patch index a7b2c017..27a3fd1a 100644 --- a/recipes-bsp/u-boot/u-boot/0033-OMAP3-beagle-prettify-expansionboard-message-a-bit.patch +++ b/recipes-bsp/u-boot/u-boot/0033-OMAP3-beagle-prettify-expansionboard-message-a-bit.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From caf18bc716d77d7bf2c75bc58ffbcbf09ae79f2b Mon Sep 17 00:00:00 2001 | 1 | From f4f92e1f72e2bcab85f205c66f0725a677e192e2 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Tue, 27 Apr 2010 13:45:28 +0200 | 3 | Date: Tue, 27 Apr 2010 13:45:28 +0200 |
4 | Subject: [PATCH 33/37] OMAP3: beagle: prettify expansionboard message a bit | 4 | Subject: [PATCH 33/51] OMAP3: beagle: prettify expansionboard message a bit |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 2 +- | 7 | board/ti/beagle/beagle.c | 2 +- |
diff --git a/recipes-bsp/u-boot/u-boot/0034-OMAP3-beagle-add-pinmux-for-Tincantools-Trainer-expa.patch b/recipes-bsp/u-boot/u-boot/0034-OMAP3-beagle-add-pinmux-for-Tincantools-Trainer-expa.patch index 5caa6f0f..fb0277b0 100644 --- a/recipes-bsp/u-boot/u-boot/0034-OMAP3-beagle-add-pinmux-for-Tincantools-Trainer-expa.patch +++ b/recipes-bsp/u-boot/u-boot/0034-OMAP3-beagle-add-pinmux-for-Tincantools-Trainer-expa.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 8580a3eafe3351e3c0f1ca3d0bc959bbeec40e28 Mon Sep 17 00:00:00 2001 | 1 | From d6d6f29e339b5d014f91870b35985a372dd330f2 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Tue, 27 Apr 2010 18:25:57 +0200 | 3 | Date: Tue, 27 Apr 2010 18:25:57 +0200 |
4 | Subject: [PATCH 34/37] OMAP3: beagle: add pinmux for Tincantools Trainer expansionboard | 4 | Subject: [PATCH 34/51] OMAP3: beagle: add pinmux for Tincantools Trainer expansionboard |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 2 ++ | 7 | board/ti/beagle/beagle.c | 2 ++ |
diff --git a/recipes-bsp/u-boot/u-boot/0035-OMAP3-Beagle-set-mpurate-to-1000-for-xM.patch b/recipes-bsp/u-boot/u-boot/0035-OMAP3-Beagle-set-mpurate-to-1000-for-xM.patch index 5c02fcb6..c4ed87c0 100644 --- a/recipes-bsp/u-boot/u-boot/0035-OMAP3-Beagle-set-mpurate-to-1000-for-xM.patch +++ b/recipes-bsp/u-boot/u-boot/0035-OMAP3-Beagle-set-mpurate-to-1000-for-xM.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From c45e93aef4d54b262f0d8e1ecf6b111f5e1c2a4c Mon Sep 17 00:00:00 2001 | 1 | From 442e5d80723e2772f38fe473d32287200d802907 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Fri, 30 Apr 2010 13:25:41 +0200 | 3 | Date: Fri, 30 Apr 2010 13:25:41 +0200 |
4 | Subject: [PATCH 35/37] OMAP3: Beagle: set mpurate to 1000 for xM | 4 | Subject: [PATCH 35/51] OMAP3: Beagle: set mpurate to 1000 for xM |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 1 + | 7 | board/ti/beagle/beagle.c | 1 + |
diff --git a/recipes-bsp/u-boot/u-boot/0036-OMAP3-Beagle-decrease-bootdelay-to-3-use-VGA-for-def.patch b/recipes-bsp/u-boot/u-boot/0036-OMAP3-Beagle-decrease-bootdelay-to-3-use-VGA-for-def.patch index 5f89f1ae..8cfdfc0e 100644 --- a/recipes-bsp/u-boot/u-boot/0036-OMAP3-Beagle-decrease-bootdelay-to-3-use-VGA-for-def.patch +++ b/recipes-bsp/u-boot/u-boot/0036-OMAP3-Beagle-decrease-bootdelay-to-3-use-VGA-for-def.patch | |||
@@ -1,17 +1,17 @@ | |||
1 | From 39f15722db5595411ec085e36b7fd7657415a554 Mon Sep 17 00:00:00 2001 | 1 | From 13b74d6ec2b88620515d0060f6276f744f058e44 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Fri, 30 Apr 2010 13:26:01 +0200 | 3 | Date: Fri, 30 Apr 2010 13:26:01 +0200 |
4 | Subject: [PATCH 36/37] OMAP3: Beagle: decrease bootdelay to 3, use VGA for default resolution | 4 | Subject: [PATCH 36/51] OMAP3: Beagle: decrease bootdelay to 3, use VGA for default resolution |
5 | 5 | ||
6 | --- | 6 | --- |
7 | include/configs/omap3_beagle.h | 4 ++-- | 7 | include/configs/omap3_beagle.h | 4 ++-- |
8 | 1 files changed, 2 insertions(+), 2 deletions(-) | 8 | 1 files changed, 2 insertions(+), 2 deletions(-) |
9 | 9 | ||
10 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 10 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
11 | index 7bcbe9b..93a6a5a 100644 | 11 | index 52d727a..47bc971 100644 |
12 | --- a/include/configs/omap3_beagle.h | 12 | --- a/include/configs/omap3_beagle.h |
13 | +++ b/include/configs/omap3_beagle.h | 13 | +++ b/include/configs/omap3_beagle.h |
14 | @@ -178,7 +178,7 @@ | 14 | @@ -183,7 +183,7 @@ |
15 | /* partition */ | 15 | /* partition */ |
16 | 16 | ||
17 | /* Environment information */ | 17 | /* Environment information */ |
@@ -20,7 +20,7 @@ index 7bcbe9b..93a6a5a 100644 | |||
20 | 20 | ||
21 | #define CONFIG_EXTRA_ENV_SETTINGS \ | 21 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
22 | "loadaddr=0x82000000\0" \ | 22 | "loadaddr=0x82000000\0" \ |
23 | @@ -186,7 +186,7 @@ | 23 | @@ -191,7 +191,7 @@ |
24 | "console=ttyS2,115200n8\0" \ | 24 | "console=ttyS2,115200n8\0" \ |
25 | "mpurate=500\0" \ | 25 | "mpurate=500\0" \ |
26 | "vram=12M\0" \ | 26 | "vram=12M\0" \ |
diff --git a/recipes-bsp/u-boot/u-boot/0037-OMAP3-beagle-pass-expansionboard-name-in-bootargs.patch b/recipes-bsp/u-boot/u-boot/0037-OMAP3-beagle-pass-expansionboard-name-in-bootargs.patch index 2ee844b9..59412b37 100644 --- a/recipes-bsp/u-boot/u-boot/0037-OMAP3-beagle-pass-expansionboard-name-in-bootargs.patch +++ b/recipes-bsp/u-boot/u-boot/0037-OMAP3-beagle-pass-expansionboard-name-in-bootargs.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 8ad472139f7b8b7c59c0192f3e2f50a20beadf59 Mon Sep 17 00:00:00 2001 | 1 | From 02dba49bdab65e1a96fd4593f5847b38252b66e0 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Mon, 3 May 2010 10:17:41 +0200 | 3 | Date: Mon, 3 May 2010 10:17:41 +0200 |
4 | Subject: [PATCH 37/37] OMAP3: beagle: pass expansionboard name in bootargs | 4 | Subject: [PATCH 37/51] OMAP3: beagle: pass expansionboard name in bootargs |
5 | 5 | ||
6 | This makes it possible to do in-kernel fixups for expansionboards like reclaiming GPIOs | 6 | This makes it possible to do in-kernel fixups for expansionboards like reclaiming GPIOs |
7 | --- | 7 | --- |
@@ -55,10 +55,10 @@ index 9300984..556e995 100644 | |||
55 | 55 | ||
56 | if (expansion_config.content == 1) | 56 | if (expansion_config.content == 1) |
57 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 57 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
58 | index 93a6a5a..affabf1 100644 | 58 | index 47bc971..8ad52aa 100644 |
59 | --- a/include/configs/omap3_beagle.h | 59 | --- a/include/configs/omap3_beagle.h |
60 | +++ b/include/configs/omap3_beagle.h | 60 | +++ b/include/configs/omap3_beagle.h |
61 | @@ -185,6 +185,7 @@ | 61 | @@ -190,6 +190,7 @@ |
62 | "usbtty=cdc_acm\0" \ | 62 | "usbtty=cdc_acm\0" \ |
63 | "console=ttyS2,115200n8\0" \ | 63 | "console=ttyS2,115200n8\0" \ |
64 | "mpurate=500\0" \ | 64 | "mpurate=500\0" \ |
@@ -66,7 +66,7 @@ index 93a6a5a..affabf1 100644 | |||
66 | "vram=12M\0" \ | 66 | "vram=12M\0" \ |
67 | "dvimode=640x480MR-16@60\0" \ | 67 | "dvimode=640x480MR-16@60\0" \ |
68 | "defaultdisplay=dvi\0" \ | 68 | "defaultdisplay=dvi\0" \ |
69 | @@ -194,6 +195,7 @@ | 69 | @@ -199,6 +200,7 @@ |
70 | "nandrootfstype=jffs2\0" \ | 70 | "nandrootfstype=jffs2\0" \ |
71 | "mmcargs=setenv bootargs console=${console} " \ | 71 | "mmcargs=setenv bootargs console=${console} " \ |
72 | "mpurate=${mpurate} " \ | 72 | "mpurate=${mpurate} " \ |
@@ -74,7 +74,7 @@ index 93a6a5a..affabf1 100644 | |||
74 | "vram=${vram} " \ | 74 | "vram=${vram} " \ |
75 | "omapfb.mode=dvi:${dvimode} " \ | 75 | "omapfb.mode=dvi:${dvimode} " \ |
76 | "omapdss.def_disp=${defaultdisplay} " \ | 76 | "omapdss.def_disp=${defaultdisplay} " \ |
77 | @@ -201,6 +203,7 @@ | 77 | @@ -206,6 +208,7 @@ |
78 | "rootfstype=${mmcrootfstype}\0" \ | 78 | "rootfstype=${mmcrootfstype}\0" \ |
79 | "nandargs=setenv bootargs console=${console} " \ | 79 | "nandargs=setenv bootargs console=${console} " \ |
80 | "mpurate=${mpurate} " \ | 80 | "mpurate=${mpurate} " \ |
diff --git a/recipes-bsp/u-boot/u-boot/0038-Added-configurations-for-xM-Rev-A-board.patch b/recipes-bsp/u-boot/u-boot/0038-Added-configurations-for-xM-Rev-A-board.patch index 4cfcfe15..bb51b8b7 100644 --- a/recipes-bsp/u-boot/u-boot/0038-Added-configurations-for-xM-Rev-A-board.patch +++ b/recipes-bsp/u-boot/u-boot/0038-Added-configurations-for-xM-Rev-A-board.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 9a5d5518c3d3844cc49cf2d9ef5aeabca1e87c30 Mon Sep 17 00:00:00 2001 | 1 | From 94462a5c200adbad2c4fc47d7fc0ca24aeb14a2a Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Wed, 5 May 2010 14:53:49 -0500 | 3 | Date: Wed, 5 May 2010 14:53:49 -0500 |
4 | Subject: [PATCH 38/38] Added configurations for xM Rev A board | 4 | Subject: [PATCH 38/51] Added configurations for xM Rev A board |
5 | 5 | ||
6 | This defaults to "on" condition for USB and DVI. May want to revise for | 6 | This defaults to "on" condition for USB and DVI. May want to revise for |
7 | power savings. | 7 | power savings. |
diff --git a/recipes-bsp/u-boot/u-boot/0039-OMAP3-beagle-setenv-beaglerev-for-AxBx-Cx-xMA-for-be.patch b/recipes-bsp/u-boot/u-boot/0039-OMAP3-beagle-setenv-beaglerev-for-AxBx-Cx-xMA-for-be.patch index 9b64327d..799afccb 100644 --- a/recipes-bsp/u-boot/u-boot/0039-OMAP3-beagle-setenv-beaglerev-for-AxBx-Cx-xMA-for-be.patch +++ b/recipes-bsp/u-boot/u-boot/0039-OMAP3-beagle-setenv-beaglerev-for-AxBx-Cx-xMA-for-be.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From c48581ecc0b060e4c1b5fa973d053e81e18f676b Mon Sep 17 00:00:00 2001 | 1 | From 4b5bb4a7656dc1c4a1b985b6f5454c58ad060112 Mon Sep 17 00:00:00 2001 |
2 | From: Koen Kooi <koen@dominion.thruhere.net> | 2 | From: Koen Kooi <koen@dominion.thruhere.net> |
3 | Date: Thu, 3 Jun 2010 19:50:57 +0200 | 3 | Date: Thu, 3 Jun 2010 19:50:57 +0200 |
4 | Subject: [PATCH 39/39] OMAP3: beagle: setenv beaglerev for AxBx/Cx/xMA for better bootscripts | 4 | Subject: [PATCH 39/51] OMAP3: beagle: setenv beaglerev for AxBx/Cx/xMA for better bootscripts |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 4 ++++ | 7 | board/ti/beagle/beagle.c | 4 ++++ |
diff --git a/recipes-bsp/u-boot/u-boot/0001-OMAP-mmc-add-support-for-second-and-third-mmc-chan.patch b/recipes-bsp/u-boot/u-boot/0040-OMAP-mmc-add-support-for-second-and-third-mmc-channe.patch index 2bda1bcd..68f39f0e 100644 --- a/recipes-bsp/u-boot/u-boot/0001-OMAP-mmc-add-support-for-second-and-third-mmc-chan.patch +++ b/recipes-bsp/u-boot/u-boot/0040-OMAP-mmc-add-support-for-second-and-third-mmc-channe.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 7252b81ec10aea48672f66e33cb6962b98fb0782 Mon Sep 17 00:00:00 2001 | 1 | From 0dd14c6a6f40cb47fd8517e9e9d48f0a119e9aa9 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Thu, 29 Apr 2010 10:28:14 -0700 | 3 | Date: Thu, 29 Apr 2010 10:28:14 -0700 |
4 | Subject: [PATCH] OMAP: mmc: add support for second and third mmc channels | 4 | Subject: [PATCH 40/51] OMAP: mmc: add support for second and third mmc channels |
5 | 5 | ||
6 | Boards wishing to use this feature should define CONFIG_SYS_MMC_SET_DEV | 6 | Boards wishing to use this feature should define CONFIG_SYS_MMC_SET_DEV |
7 | 7 | ||
@@ -122,5 +122,5 @@ index aa751c9..43dd705 100644 | |||
122 | typedef struct hsmmc { | 122 | typedef struct hsmmc { |
123 | unsigned char res1[0x10]; | 123 | unsigned char res1[0x10]; |
124 | -- | 124 | -- |
125 | 1.5.6.4 | 125 | 1.6.6.1 |
126 | 126 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0001-OMAP3-Beagle-enable-support-for-second-and-third-m.patch b/recipes-bsp/u-boot/u-boot/0041-OMAP3-Beagle-enable-support-for-second-and-third-mmc.patch index 21f1f13e..048962f8 100644 --- a/recipes-bsp/u-boot/u-boot/0001-OMAP3-Beagle-enable-support-for-second-and-third-m.patch +++ b/recipes-bsp/u-boot/u-boot/0041-OMAP3-Beagle-enable-support-for-second-and-third-mmc.patch | |||
@@ -1,16 +1,15 @@ | |||
1 | From 629a01965677e680ffa1fe76579ace7f69dd45b9 Mon Sep 17 00:00:00 2001 | 1 | From 8da9e2bac6daf2d61d7ca9d689790fc9ce5de9cb Mon Sep 17 00:00:00 2001 |
2 | From: Steve Sakoman <steve@sakoman.com> | 2 | From: Steve Sakoman <steve@sakoman.com> |
3 | Date: Fri, 7 May 2010 07:40:26 -0700 | 3 | Date: Fri, 7 May 2010 07:40:26 -0700 |
4 | Subject: [PATCH] OMAP3: Beagle: enable support for second and third mmc channels | 4 | Subject: [PATCH 41/51] OMAP3: Beagle: enable support for second and third mmc channels |
5 | 5 | ||
6 | Based on 629a01965677e680ffa1fe76579ace7f69dd45b9, but removed BOOTDELAY change. | 6 | Based on 629a01965677e680ffa1fe76579ace7f69dd45b9, but removed BOOTDELAY change. |
7 | |||
8 | --- | 7 | --- |
9 | include/configs/omap3_beagle.h | 8 +++++--- | 8 | include/configs/omap3_beagle.h | 8 +++++--- |
10 | 1 files changed, 5 insertions(+), 3 deletions(-) | 9 | 1 files changed, 5 insertions(+), 3 deletions(-) |
11 | 10 | ||
12 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 11 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
13 | index f2d0f53..74d4159 100644 | 12 | index 8ad52aa..e4c88f2 100644 |
14 | --- a/include/configs/omap3_beagle.h | 13 | --- a/include/configs/omap3_beagle.h |
15 | +++ b/include/configs/omap3_beagle.h | 14 | +++ b/include/configs/omap3_beagle.h |
16 | @@ -95,6 +95,7 @@ | 15 | @@ -95,6 +95,7 @@ |
@@ -21,15 +20,15 @@ index f2d0f53..74d4159 100644 | |||
21 | #define CONFIG_DOS_PARTITION 1 | 20 | #define CONFIG_DOS_PARTITION 1 |
22 | 21 | ||
23 | /* DDR - I use Micron DDR */ | 22 | /* DDR - I use Micron DDR */ |
24 | @@ -186,6 +187,7 @@ | 23 | @@ -194,6 +195,7 @@ |
25 | "vram=12M\0" \ | 24 | "vram=12M\0" \ |
26 | "dvimode=1024x768MR-16@60\0" \ | 25 | "dvimode=640x480MR-16@60\0" \ |
27 | "defaultdisplay=dvi\0" \ | 26 | "defaultdisplay=dvi\0" \ |
28 | + "mmcdev=1\0" \ | 27 | + "mmcdev=1\0" \ |
29 | "mmcroot=/dev/mmcblk0p2 rw\0" \ | 28 | "mmcroot=/dev/mmcblk0p2 rw\0" \ |
30 | "mmcrootfstype=ext3 rootwait\0" \ | 29 | "mmcrootfstype=ext3 rootwait\0" \ |
31 | "nandroot=/dev/mtdblock4 rw\0" \ | 30 | "nandroot=/dev/mtdblock4 rw\0" \ |
32 | @@ -204,10 +206,10 @@ | 31 | @@ -214,10 +216,10 @@ |
33 | "omapdss.def_disp=${defaultdisplay} " \ | 32 | "omapdss.def_disp=${defaultdisplay} " \ |
34 | "root=${nandroot} " \ | 33 | "root=${nandroot} " \ |
35 | "rootfstype=${nandrootfstype}\0" \ | 34 | "rootfstype=${nandrootfstype}\0" \ |
@@ -42,7 +41,7 @@ index f2d0f53..74d4159 100644 | |||
42 | "mmcboot=echo Booting from mmc ...; " \ | 41 | "mmcboot=echo Booting from mmc ...; " \ |
43 | "run mmcargs; " \ | 42 | "run mmcargs; " \ |
44 | "bootm ${loadaddr}\0" \ | 43 | "bootm ${loadaddr}\0" \ |
45 | @@ -217,7 +219,7 @@ | 44 | @@ -227,7 +229,7 @@ |
46 | "bootm ${loadaddr}\0" \ | 45 | "bootm ${loadaddr}\0" \ |
47 | 46 | ||
48 | #define CONFIG_BOOTCOMMAND \ | 47 | #define CONFIG_BOOTCOMMAND \ |
@@ -52,5 +51,5 @@ index f2d0f53..74d4159 100644 | |||
52 | "run bootscript; " \ | 51 | "run bootscript; " \ |
53 | "else " \ | 52 | "else " \ |
54 | -- | 53 | -- |
55 | 1.5.6.4 | 54 | 1.6.6.1 |
56 | 55 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0038-BeagleBoard-Added-LED-driver.patch b/recipes-bsp/u-boot/u-boot/0042-BeagleBoard-Added-LED-driver.patch index 74ee4e31..cbe0ce1d 100644 --- a/recipes-bsp/u-boot/u-boot/0038-BeagleBoard-Added-LED-driver.patch +++ b/recipes-bsp/u-boot/u-boot/0042-BeagleBoard-Added-LED-driver.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 157b125b905b6dc69164d3f43eeb5e40d3744648 Mon Sep 17 00:00:00 2001 | 1 | From bb88a9c0ffa5b6006d689635028177be4ce83104 Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Thu, 20 May 2010 06:14:01 -0500 | 3 | Date: Thu, 20 May 2010 06:14:01 -0500 |
4 | Subject: [PATCH] BeagleBoard: Added LED driver | 4 | Subject: [PATCH 42/51] BeagleBoard: Added LED driver |
5 | 5 | ||
6 | Added LED driver using status_led. USR0 is set to monitor the boot | 6 | Added LED driver using status_led. USR0 is set to monitor the boot |
7 | status. USR1 is set to be the green LED. | 7 | status. USR1 is set to be the green LED. |
@@ -33,7 +33,7 @@ index f797112..4cc675c 100644 | |||
33 | OBJS := $(addprefix $(obj),$(COBJS)) | 33 | OBJS := $(addprefix $(obj),$(COBJS)) |
34 | 34 | ||
35 | diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c | 35 | diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c |
36 | index 556e995..d21b9c8 100644 | 36 | index cdba3dd..a6a4961 100644 |
37 | --- a/board/ti/beagle/beagle.c | 37 | --- a/board/ti/beagle/beagle.c |
38 | +++ b/board/ti/beagle/beagle.c | 38 | +++ b/board/ti/beagle/beagle.c |
39 | @@ -30,6 +30,9 @@ | 39 | @@ -30,6 +30,9 @@ |
@@ -57,7 +57,7 @@ index 556e995..d21b9c8 100644 | |||
57 | return 0; | 57 | return 0; |
58 | } | 58 | } |
59 | 59 | ||
60 | @@ -278,3 +285,4 @@ void set_muxconf_regs(void) | 60 | @@ -282,3 +289,4 @@ void set_muxconf_regs(void) |
61 | { | 61 | { |
62 | MUX_BEAGLE(); | 62 | MUX_BEAGLE(); |
63 | } | 63 | } |
@@ -160,5 +160,5 @@ index 0000000..df26552 | |||
160 | +} | 160 | +} |
161 | + | 161 | + |
162 | -- | 162 | -- |
163 | 1.5.6.4 | 163 | 1.6.6.1 |
164 | 164 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0039-Add-led-command.patch b/recipes-bsp/u-boot/u-boot/0043-Add-led-command.patch index 6adbe2f7..bd5a5e21 100644 --- a/recipes-bsp/u-boot/u-boot/0039-Add-led-command.patch +++ b/recipes-bsp/u-boot/u-boot/0043-Add-led-command.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 609524ecd54526b3f3c7d52cc43a3c9795970f6b Mon Sep 17 00:00:00 2001 | 1 | From 1fc5c28bc260c72b4f9cefdf55bfd10504916457 Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Thu, 20 May 2010 05:41:26 -0500 | 3 | Date: Thu, 20 May 2010 05:41:26 -0500 |
4 | Subject: [PATCH] Add 'led' command | 4 | Subject: [PATCH 43/51] Add 'led' command |
5 | 5 | ||
6 | This patch allows any board implementing the coloured LED API | 6 | This patch allows any board implementing the coloured LED API |
7 | to control the LEDs from the console. | 7 | to control the LEDs from the console. |
@@ -252,5 +252,5 @@ index 0000000..3b7b534 | |||
252 | +); | 252 | +); |
253 | + | 253 | + |
254 | -- | 254 | -- |
255 | 1.5.6.4 | 255 | 1.6.6.1 |
256 | 256 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0041-BeagleBoard-Enabled-LEDs.patch b/recipes-bsp/u-boot/u-boot/0044-BeagleBoard-Enabled-LEDs.patch index 8b046193..0142c85d 100644 --- a/recipes-bsp/u-boot/u-boot/0041-BeagleBoard-Enabled-LEDs.patch +++ b/recipes-bsp/u-boot/u-boot/0044-BeagleBoard-Enabled-LEDs.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 9d3e56ba351348b6329c488a981d3e2d8f848164 Mon Sep 17 00:00:00 2001 | 1 | From 40049e97a5a97d597f8754ff1b39d931053eb465 Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Wed, 19 May 2010 05:14:43 -0500 | 3 | Date: Wed, 19 May 2010 05:14:43 -0500 |
4 | Subject: [PATCH] BeagleBoard: Enabled LEDs | 4 | Subject: [PATCH 44/51] BeagleBoard: Enabled LEDs |
5 | 5 | ||
6 | Added LED driver using status_led. USR0 is set to monitor the boot | 6 | Added LED driver using status_led. USR0 is set to monitor the boot |
7 | status. USR1 is set to be the GREEN LED. | 7 | status. USR1 is set to be the GREEN LED. |
@@ -12,7 +12,7 @@ Signed-off-by: Jason Kridner <jkridner@beagleboard.org> | |||
12 | 1 files changed, 13 insertions(+), 0 deletions(-) | 12 | 1 files changed, 13 insertions(+), 0 deletions(-) |
13 | 13 | ||
14 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 14 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
15 | index c2fc6ba..eaa8779 100644 | 15 | index e4c88f2..053f5df 100644 |
16 | --- a/include/configs/omap3_beagle.h | 16 | --- a/include/configs/omap3_beagle.h |
17 | +++ b/include/configs/omap3_beagle.h | 17 | +++ b/include/configs/omap3_beagle.h |
18 | @@ -98,6 +98,18 @@ | 18 | @@ -98,6 +98,18 @@ |
@@ -34,7 +34,7 @@ index c2fc6ba..eaa8779 100644 | |||
34 | /* DDR - I use Micron DDR */ | 34 | /* DDR - I use Micron DDR */ |
35 | #define CONFIG_OMAP3_MICRON_DDR 1 | 35 | #define CONFIG_OMAP3_MICRON_DDR 1 |
36 | 36 | ||
37 | @@ -132,6 +144,7 @@ | 37 | @@ -138,6 +150,7 @@ |
38 | #define CONFIG_CMD_I2C /* I2C serial bus support */ | 38 | #define CONFIG_CMD_I2C /* I2C serial bus support */ |
39 | #define CONFIG_CMD_MMC /* MMC support */ | 39 | #define CONFIG_CMD_MMC /* MMC support */ |
40 | #define CONFIG_CMD_NAND /* NAND support */ | 40 | #define CONFIG_CMD_NAND /* NAND support */ |
@@ -43,5 +43,5 @@ index c2fc6ba..eaa8779 100644 | |||
43 | 43 | ||
44 | #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ | 44 | #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */ |
45 | -- | 45 | -- |
46 | 1.5.6.4 | 46 | 1.6.6.1 |
47 | 47 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0042-BeagleBoard-New-command-for-status-of-USER-button.patch b/recipes-bsp/u-boot/u-boot/0045-BeagleBoard-Added-userbutton-command.patch index 9a704a80..993d40c5 100644 --- a/recipes-bsp/u-boot/u-boot/0042-BeagleBoard-New-command-for-status-of-USER-button.patch +++ b/recipes-bsp/u-boot/u-boot/0045-BeagleBoard-Added-userbutton-command.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From c053723cc5a73781a4954e6c93d280436623e3d6 Mon Sep 17 00:00:00 2001 | 1 | From f5146ac9d3af9c9cd4f4bc940c343d3ef75ac6f0 Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Wed, 21 Jul 2010 07:41:25 -0500 | 3 | Date: Wed, 21 Jul 2010 07:41:25 -0500 |
4 | Subject: [PATCH] BeagleBoard: Added userbutton command | 4 | Subject: [PATCH 45/51] BeagleBoard: Added userbutton command |
5 | 5 | ||
6 | Based on commit f1099c7c43caf5bac3bf6a65aa266fade4747072 | 6 | Based on commit f1099c7c43caf5bac3bf6a65aa266fade4747072 |
7 | Author: Greg Turner <gregturner@ti.com> | 7 | Author: Greg Turner <gregturner@ti.com> |
@@ -93,5 +93,5 @@ index a6a4961..66df719 100644 | |||
93 | +); | 93 | +); |
94 | + | 94 | + |
95 | -- | 95 | -- |
96 | 1.6.1 | 96 | 1.6.6.1 |
97 | 97 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0043-BeagleBoard-Add-CONFIG_SYS_MEMTEST_SCRATCH.patch b/recipes-bsp/u-boot/u-boot/0046-BeagleBoard-Add-CONFIG_SYS_MEMTEST_SCRATCH.patch index fa6bb48e..a34f6bfe 100644 --- a/recipes-bsp/u-boot/u-boot/0043-BeagleBoard-Add-CONFIG_SYS_MEMTEST_SCRATCH.patch +++ b/recipes-bsp/u-boot/u-boot/0046-BeagleBoard-Add-CONFIG_SYS_MEMTEST_SCRATCH.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From d912a6d2d546faf55d07e91816b47096879137cc Mon Sep 17 00:00:00 2001 | 1 | From 631cd4e4a02faa5726c058626390bee97188f456 Mon Sep 17 00:00:00 2001 |
2 | From: Steven Kipisz <s-kipisz2@ti.com> | 2 | From: Steven Kipisz <s-kipisz2@ti.com> |
3 | Date: Fri, 4 Jun 2010 10:31:04 -0500 | 3 | Date: Fri, 4 Jun 2010 10:31:04 -0500 |
4 | Subject: [PATCH] BeagleBoard: Add CONFIG_SYS_MEMTEST_SCRATCH | 4 | Subject: [PATCH 46/51] BeagleBoard: Add CONFIG_SYS_MEMTEST_SCRATCH |
5 | 5 | ||
6 | Add CONFIG_SYS_MEMTEST_SCRATCH to point to a scratch memory area. | 6 | Add CONFIG_SYS_MEMTEST_SCRATCH to point to a scratch memory area. |
7 | 7 | ||
@@ -11,10 +11,10 @@ Signed-off-by: Jason Kridner <jkridner@beagleboard.org> | |||
11 | 1 files changed, 5 insertions(+), 4 deletions(-) | 11 | 1 files changed, 5 insertions(+), 4 deletions(-) |
12 | 12 | ||
13 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 13 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
14 | index 555b350..0c6fce6 100644 | 14 | index 053f5df..b265b0c 100644 |
15 | --- a/include/configs/omap3_beagle.h | 15 | --- a/include/configs/omap3_beagle.h |
16 | +++ b/include/configs/omap3_beagle.h | 16 | +++ b/include/configs/omap3_beagle.h |
17 | @@ -297,10 +297,11 @@ | 17 | @@ -269,10 +269,11 @@ |
18 | /* Boot Argument Buffer Size */ | 18 | /* Boot Argument Buffer Size */ |
19 | #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) | 19 | #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) |
20 | 20 | ||
@@ -31,5 +31,5 @@ index 555b350..0c6fce6 100644 | |||
31 | #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */ | 31 | #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default */ |
32 | /* load address */ | 32 | /* load address */ |
33 | -- | 33 | -- |
34 | 1.5.6.4 | 34 | 1.6.6.1 |
35 | 35 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0044-Beagleboard-Adjust-boot.patch b/recipes-bsp/u-boot/u-boot/0047-BeagleBoard-Adjust-boot-command-on-USER-button.patch index 19b4ab79..7d40ff7e 100644 --- a/recipes-bsp/u-boot/u-boot/0044-Beagleboard-Adjust-boot.patch +++ b/recipes-bsp/u-boot/u-boot/0047-BeagleBoard-Adjust-boot-command-on-USER-button.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From c8d52ff17d71be0c632f20092d96e9530088c786 Mon Sep 17 00:00:00 2001 | 1 | From d3f9ba7264111551ea11f33aadbecc15c87a4332 Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Wed, 21 Jul 2010 08:47:59 -0500 | 3 | Date: Wed, 21 Jul 2010 08:47:59 -0500 |
4 | Subject: [PATCH] BeagleBoard: Adjust boot command on USER button | 4 | Subject: [PATCH 47/51] BeagleBoard: Adjust boot command on USER button |
5 | 5 | ||
6 | When the USER button is pressed, the default boot command will attempt | 6 | When the USER button is pressed, the default boot command will attempt |
7 | to load user.scr. If that fails, it will try to load a ramdisk image. | 7 | to load user.scr. If that fails, it will try to load a ramdisk image. |
@@ -14,10 +14,10 @@ attempts to load the user.scr file. | |||
14 | 1 files changed, 44 insertions(+), 7 deletions(-) | 14 | 1 files changed, 44 insertions(+), 7 deletions(-) |
15 | 15 | ||
16 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | 16 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h |
17 | index f372de2..6d1166f 100644 | 17 | index b265b0c..1a76004 100644 |
18 | --- a/include/configs/omap3_beagle.h | 18 | --- a/include/configs/omap3_beagle.h |
19 | +++ b/include/configs/omap3_beagle.h | 19 | +++ b/include/configs/omap3_beagle.h |
20 | @@ -195,9 +195,12 @@ | 20 | @@ -200,9 +200,12 @@ |
21 | #define CONFIG_BOOTDELAY 3 | 21 | #define CONFIG_BOOTDELAY 3 |
22 | 22 | ||
23 | #define CONFIG_EXTRA_ENV_SETTINGS \ | 23 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
@@ -31,7 +31,7 @@ index f372de2..6d1166f 100644 | |||
31 | "mpurate=500\0" \ | 31 | "mpurate=500\0" \ |
32 | "buddy=none\0" \ | 32 | "buddy=none\0" \ |
33 | "vram=12M\0" \ | 33 | "vram=12M\0" \ |
34 | @@ -208,7 +211,10 @@ | 34 | @@ -213,7 +216,10 @@ |
35 | "mmcrootfstype=ext3 rootwait\0" \ | 35 | "mmcrootfstype=ext3 rootwait\0" \ |
36 | "nandroot=/dev/mtdblock4 rw\0" \ | 36 | "nandroot=/dev/mtdblock4 rw\0" \ |
37 | "nandrootfstype=jffs2\0" \ | 37 | "nandrootfstype=jffs2\0" \ |
@@ -42,7 +42,7 @@ index f372de2..6d1166f 100644 | |||
42 | "mpurate=${mpurate} " \ | 42 | "mpurate=${mpurate} " \ |
43 | "buddy=${buddy} "\ | 43 | "buddy=${buddy} "\ |
44 | "vram=${vram} " \ | 44 | "vram=${vram} " \ |
45 | @@ -217,6 +223,7 @@ | 45 | @@ -222,6 +228,7 @@ |
46 | "root=${mmcroot} " \ | 46 | "root=${mmcroot} " \ |
47 | "rootfstype=${mmcrootfstype}\0" \ | 47 | "rootfstype=${mmcrootfstype}\0" \ |
48 | "nandargs=setenv bootargs console=${console} " \ | 48 | "nandargs=setenv bootargs console=${console} " \ |
@@ -50,7 +50,7 @@ index f372de2..6d1166f 100644 | |||
50 | "mpurate=${mpurate} " \ | 50 | "mpurate=${mpurate} " \ |
51 | "buddy=${buddy} "\ | 51 | "buddy=${buddy} "\ |
52 | "vram=${vram} " \ | 52 | "vram=${vram} " \ |
53 | @@ -224,7 +231,18 @@ | 53 | @@ -229,7 +236,18 @@ |
54 | "omapdss.def_disp=${defaultdisplay} " \ | 54 | "omapdss.def_disp=${defaultdisplay} " \ |
55 | "root=${nandroot} " \ | 55 | "root=${nandroot} " \ |
56 | "rootfstype=${nandrootfstype}\0" \ | 56 | "rootfstype=${nandrootfstype}\0" \ |
@@ -70,7 +70,7 @@ index f372de2..6d1166f 100644 | |||
70 | "bootscript=echo Running bootscript from mmc ...; " \ | 70 | "bootscript=echo Running bootscript from mmc ...; " \ |
71 | "source ${loadaddr}\0" \ | 71 | "source ${loadaddr}\0" \ |
72 | "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ | 72 | "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \ |
73 | @@ -235,15 +253,34 @@ | 73 | @@ -240,15 +258,34 @@ |
74 | "run nandargs; " \ | 74 | "run nandargs; " \ |
75 | "nand read ${loadaddr} 280000 400000; " \ | 75 | "nand read ${loadaddr} 280000 400000; " \ |
76 | "bootm ${loadaddr}\0" \ | 76 | "bootm ${loadaddr}\0" \ |
@@ -111,5 +111,5 @@ index f372de2..6d1166f 100644 | |||
111 | "fi; " \ | 111 | "fi; " \ |
112 | "else run nandboot; fi" | 112 | "else run nandboot; fi" |
113 | -- | 113 | -- |
114 | 1.6.1 | 114 | 1.6.6.1 |
115 | 115 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0045-BeagleBoard-Enable-pullups-on-i2c2.patch b/recipes-bsp/u-boot/u-boot/0048-BeagleBoard-Enable-pullups-on-i2c2.patch index ea3ab74c..dce5de5b 100644 --- a/recipes-bsp/u-boot/u-boot/0045-BeagleBoard-Enable-pullups-on-i2c2.patch +++ b/recipes-bsp/u-boot/u-boot/0048-BeagleBoard-Enable-pullups-on-i2c2.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From bf4b655c6c02bbf95bd6ebbf820e53dbd8eb4803 Mon Sep 17 00:00:00 2001 | 1 | From 35e971eea9c9d9cb690da0509e0f8a48a2cb1269 Mon Sep 17 00:00:00 2001 |
2 | From: Steve Kipisz <s-kipisz2@ti.com> | 2 | From: Steve Kipisz <s-kipisz2@ti.com> |
3 | Date: Thu, 5 Aug 2010 10:36:07 -0500 | 3 | Date: Thu, 5 Aug 2010 10:36:07 -0500 |
4 | Subject: [PATCH] BeagleBoard: Enable pullups on i2c2. | 4 | Subject: [PATCH 48/51] BeagleBoard: Enable pullups on i2c2. |
5 | 5 | ||
6 | --- | 6 | --- |
7 | board/ti/beagle/beagle.c | 2 ++ | 7 | board/ti/beagle/beagle.c | 2 ++ |
@@ -9,10 +9,10 @@ Subject: [PATCH] BeagleBoard: Enable pullups on i2c2. | |||
9 | 2 files changed, 11 insertions(+), 0 deletions(-) | 9 | 2 files changed, 11 insertions(+), 0 deletions(-) |
10 | 10 | ||
11 | diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c | 11 | diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c |
12 | index cdba3dd..eeb37bc 100644 | 12 | index 66df719..ee6bad2 100644 |
13 | --- a/board/ti/beagle/beagle.c | 13 | --- a/board/ti/beagle/beagle.c |
14 | +++ b/board/ti/beagle/beagle.c | 14 | +++ b/board/ti/beagle/beagle.c |
15 | @@ -163,6 +163,8 @@ int misc_init_r(void) | 15 | @@ -171,6 +171,8 @@ int misc_init_r(void) |
16 | struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE; | 16 | struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE; |
17 | struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE; | 17 | struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE; |
18 | 18 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0046-BeagleBoard-Add-camera-to-default-bootargs.patch b/recipes-bsp/u-boot/u-boot/0049-BeagleBoard-Add-camera-to-default-bootargs.patch index f999f7fa..e3ac8609 100644 --- a/recipes-bsp/u-boot/u-boot/0046-BeagleBoard-Add-camera-to-default-bootargs.patch +++ b/recipes-bsp/u-boot/u-boot/0049-BeagleBoard-Add-camera-to-default-bootargs.patch | |||
@@ -1,8 +1,7 @@ | |||
1 | From 519ecc8a8f441d30e55c7e4552c63e2363fa6dd5 Mon Sep 17 00:00:00 2001 | 1 | From 0a49d60caf30738f13b60a71e740e28f4e7af902 Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Thu, 5 Aug 2010 13:54:12 -0500 | 3 | Date: Thu, 5 Aug 2010 13:54:12 -0500 |
4 | Subject: [PATCH] BeagleBoard: Add camera to default bootargs | 4 | Subject: [PATCH 49/51] BeagleBoard: Add camera to default bootargs |
5 | |||
6 | 5 | ||
7 | Signed-off-by: Jason Kridner <jkridner@beagleboard.org> | 6 | Signed-off-by: Jason Kridner <jkridner@beagleboard.org> |
8 | --- | 7 | --- |
@@ -46,5 +45,5 @@ index 1a76004..48ad805 100644 | |||
46 | "omapfb.mode=dvi:${dvimode} " \ | 45 | "omapfb.mode=dvi:${dvimode} " \ |
47 | "omapdss.def_disp=${defaultdisplay} " \ | 46 | "omapdss.def_disp=${defaultdisplay} " \ |
48 | -- | 47 | -- |
49 | 1.5.6.4 | 48 | 1.6.6.1 |
50 | 49 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0001-BeagleBoard-move-ramdisk-parameters.patch b/recipes-bsp/u-boot/u-boot/0050-BeagleBoard-move-ramdisk-parameters.patch index 5d6e69d2..ebd998dc 100644 --- a/recipes-bsp/u-boot/u-boot/0001-BeagleBoard-move-ramdisk-parameters.patch +++ b/recipes-bsp/u-boot/u-boot/0050-BeagleBoard-move-ramdisk-parameters.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From c8d02f2a8500f06de39681aed60ea5c9894f8087 Mon Sep 17 00:00:00 2001 | 1 | From 21738fa5ae05dd5060cf755ac0460f5d1f27e910 Mon Sep 17 00:00:00 2001 |
2 | From: Jason Kridner <jkridner@beagleboard.org> | 2 | From: Jason Kridner <jkridner@beagleboard.org> |
3 | Date: Wed, 11 Aug 2010 14:50:38 -0500 | 3 | Date: Wed, 11 Aug 2010 14:50:38 -0500 |
4 | Subject: [PATCH] BeagleBoard: move ramdisk parameters | 4 | Subject: [PATCH 50/51] BeagleBoard: move ramdisk parameters |
5 | 5 | ||
6 | This will make it easier to reprogram the ramdisk size. | 6 | This will make it easier to reprogram the ramdisk size. |
7 | 7 | ||
@@ -34,5 +34,5 @@ index 48ad805..4f5c1d4 100644 | |||
34 | "loadramdisk=fatload mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \ | 34 | "loadramdisk=fatload mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \ |
35 | "bootscript=echo Running bootscript from mmc ...; " \ | 35 | "bootscript=echo Running bootscript from mmc ...; " \ |
36 | -- | 36 | -- |
37 | 1.5.6.4 | 37 | 1.6.6.1 |
38 | 38 | ||
diff --git a/recipes-bsp/u-boot/u-boot/0051-add-support-for-beagleboardtoys-expansionboards.patch b/recipes-bsp/u-boot/u-boot/0051-add-support-for-beagleboardtoys-expansionboards.patch new file mode 100644 index 00000000..3f75a60b --- /dev/null +++ b/recipes-bsp/u-boot/u-boot/0051-add-support-for-beagleboardtoys-expansionboards.patch | |||
@@ -0,0 +1,74 @@ | |||
1 | From 05c4ef3b0963cef095075486820b030226ced7c3 Mon Sep 17 00:00:00 2001 | ||
2 | From: Koen Kooi <koen@dominion.thruhere.net> | ||
3 | Date: Tue, 8 Feb 2011 12:02:46 +0100 | ||
4 | Subject: [PATCH 51/51] add support for beagleboardtoys expansionboards | ||
5 | |||
6 | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> | ||
7 | --- | ||
8 | board/ti/beagle/beagle.c | 15 +++++++++++++++ | ||
9 | board/ti/beagle/beagle.h | 10 ++++++++++ | ||
10 | 2 files changed, 25 insertions(+), 0 deletions(-) | ||
11 | |||
12 | diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c | ||
13 | index ee6bad2..fdd9c09 100644 | ||
14 | --- a/board/ti/beagle/beagle.c | ||
15 | +++ b/board/ti/beagle/beagle.c | ||
16 | @@ -62,12 +62,16 @@ static struct { | ||
17 | #define HYR_VENDORID 0x0400 | ||
18 | #define MENTOREL_VENDORID 0x0500 | ||
19 | #define KBADC_VENDORID 0x0600 | ||
20 | +#define BBTOYS_VENDORID 0x0B00 | ||
21 | |||
22 | #define TINCANTOOLS_ZIPPY 0x01000100 | ||
23 | #define TINCANTOOLS_ZIPPY2 0x02000100 | ||
24 | #define TINCANTOOLS_TRAINER 0x04000100 | ||
25 | #define TINCANTOOLS_SHOWDOG 0x03000100 | ||
26 | #define KBADC_BEAGLEFPGA 0x01000600 | ||
27 | +#define BBTOYS_WIFI 0x01000B00 | ||
28 | +#define BBTOYS_VGA 0x02000B00 | ||
29 | +#define BBTOYS_LCD 0x03000B00 | ||
30 | |||
31 | #define BEAGLE_NO_EEPROM 0xffffffff | ||
32 | |||
33 | @@ -209,6 +213,17 @@ int misc_init_r(void) | ||
34 | MUX_KBADC_BEAGLEFPGA(); | ||
35 | setenv("buddy", "beaglefpga"); | ||
36 | break; | ||
37 | + case BBTOYS_WIFI: | ||
38 | + printf("Recognized Beagleboardtoys wifi board\n"); | ||
39 | + MUX_BBTOYS_WIFI() | ||
40 | + setenv("buddy", "bbtoys-wifi"); | ||
41 | + break;; | ||
42 | + case BBTOYS_VGA: | ||
43 | + printf("Recognized Beagleboardtoys VGA board\n"); | ||
44 | + break;; | ||
45 | + case BBTOYS_LCD: | ||
46 | + printf("Recognized Beagleboardtoys LCD board\n"); | ||
47 | + break;; | ||
48 | case BEAGLE_NO_EEPROM: | ||
49 | printf("No EEPROM on expansion board\n"); | ||
50 | setenv("buddy", "none"); | ||
51 | diff --git a/board/ti/beagle/beagle.h b/board/ti/beagle/beagle.h | ||
52 | index cb7fd1c..2dc6ee6 100644 | ||
53 | --- a/board/ti/beagle/beagle.h | ||
54 | +++ b/board/ti/beagle/beagle.h | ||
55 | @@ -459,6 +459,16 @@ const omap3_sysinfo sysinfo = { | ||
56 | MUX_VAL(CP(MCBSP1_DR), (IEN | PTU | EN | M1)) /*MCSPI4_SOMI*/\ | ||
57 | MUX_VAL(CP(MCBSP1_FSX), (IDIS | PTU | DIS | M1)) /*MCSPI4_CS0*/\ | ||
58 | |||
59 | +#define MUX_BBTOYS_WIFI() \ | ||
60 | + MUX_VAL(CP(MMC2_CLK), (IEN | PTU | EN | M0)) /*MMC2_CLK*/\ | ||
61 | + MUX_VAL(CP(MMC2_CMD), (IEN | PTU | EN | M0)) /*MMC2_CMD*/\ | ||
62 | + MUX_VAL(CP(MMC2_DAT0), (IEN | PTU | EN | M0)) /*MMC2_DAT0*/\ | ||
63 | + MUX_VAL(CP(MMC2_DAT1), (IEN | PTU | EN | M0)) /*MMC2_DAT1*/\ | ||
64 | + MUX_VAL(CP(MMC2_DAT2), (IEN | PTU | EN | M0)) /*MMC2_DAT2*/\ | ||
65 | + MUX_VAL(CP(MMC2_DAT3), (IEN | PTU | EN | M0)) /*MMC2_DAT3*/\ | ||
66 | + MUX_VAL(CP(MMC2_DAT5), (IEN | PTU | EN | M4)) /*GPIO_137*/\ | ||
67 | + MUX_VAL(CP(MMC2_DAT7), (IDIS | PTD | DIS | M4)) /*GPIO_139*/\ | ||
68 | + | ||
69 | /* | ||
70 | * Display Configuration | ||
71 | */ | ||
72 | -- | ||
73 | 1.6.6.1 | ||
74 | |||
diff --git a/recipes-bsp/u-boot/u-boot_git.bb b/recipes-bsp/u-boot/u-boot_git.bb index 75ab9f90..c4f393d1 100644 --- a/recipes-bsp/u-boot/u-boot_git.bb +++ b/recipes-bsp/u-boot/u-boot_git.bb | |||
@@ -1,10 +1,10 @@ | |||
1 | require u-boot.inc | 1 | require u-boot.inc |
2 | PR ="r65" | 2 | PR ="r66" |
3 | 3 | ||
4 | FILESPATHPKG =. "u-boot-git:" | 4 | FILESPATHPKG =. "u-boot-git:" |
5 | 5 | ||
6 | SRC_URI_beagleboard = "git://www.denx.de/git/u-boot.git;protocol=git \ | 6 | SRC_URI_beagleboard = "git://www.denx.de/git/u-boot.git;protocol=git \ |
7 | file://0001-OMAP3-enable-i2c-bus-switching-for-Beagle-and-Overo.patch \ | 7 | file://0001-Enable-I2C-bus-switching.patch \ |
8 | file://0002-OMAP3-add-board-revision-detection-for-Overo.patch \ | 8 | file://0002-OMAP3-add-board-revision-detection-for-Overo.patch \ |
9 | file://0003-OMAP3-update-Beagle-revision-detection-to-recognize-.patch \ | 9 | file://0003-OMAP3-update-Beagle-revision-detection-to-recognize-.patch \ |
10 | file://0004-OMAP3-Set-VAUX2-to-1.8V-for-EHCI-PHY-on-Beagle-Rev-C.patch \ | 10 | file://0004-OMAP3-Set-VAUX2-to-1.8V-for-EHCI-PHY-on-Beagle-Rev-C.patch \ |
@@ -43,17 +43,18 @@ SRC_URI_beagleboard = "git://www.denx.de/git/u-boot.git;protocol=git \ | |||
43 | file://0037-OMAP3-beagle-pass-expansionboard-name-in-bootargs.patch \ | 43 | file://0037-OMAP3-beagle-pass-expansionboard-name-in-bootargs.patch \ |
44 | file://0038-Added-configurations-for-xM-Rev-A-board.patch \ | 44 | file://0038-Added-configurations-for-xM-Rev-A-board.patch \ |
45 | file://0039-OMAP3-beagle-setenv-beaglerev-for-AxBx-Cx-xMA-for-be.patch \ | 45 | file://0039-OMAP3-beagle-setenv-beaglerev-for-AxBx-Cx-xMA-for-be.patch \ |
46 | file://0001-OMAP-mmc-add-support-for-second-and-third-mmc-chan.patch \ | 46 | file://0040-OMAP-mmc-add-support-for-second-and-third-mmc-channe.patch \ |
47 | file://0001-OMAP3-Beagle-enable-support-for-second-and-third-m.patch \ | 47 | file://0041-OMAP3-Beagle-enable-support-for-second-and-third-mmc.patch \ |
48 | file://0038-BeagleBoard-Added-LED-driver.patch \ | 48 | file://0042-BeagleBoard-Added-LED-driver.patch \ |
49 | file://0039-Add-led-command.patch \ | 49 | file://0043-Add-led-command.patch \ |
50 | file://0041-BeagleBoard-Enabled-LEDs.patch \ | 50 | file://0044-BeagleBoard-Enabled-LEDs.patch \ |
51 | file://0042-BeagleBoard-New-command-for-status-of-USER-button.patch \ | 51 | file://0045-BeagleBoard-Added-userbutton-command.patch \ |
52 | file://0043-BeagleBoard-Add-CONFIG_SYS_MEMTEST_SCRATCH.patch \ | 52 | file://0046-BeagleBoard-Add-CONFIG_SYS_MEMTEST_SCRATCH.patch \ |
53 | file://0044-Beagleboard-Adjust-boot.patch \ | 53 | file://0047-BeagleBoard-Adjust-boot-command-on-USER-button.patch \ |
54 | file://0045-BeagleBoard-Enable-pullups-on-i2c2.patch \ | 54 | file://0048-BeagleBoard-Enable-pullups-on-i2c2.patch \ |
55 | file://0046-BeagleBoard-Add-camera-to-default-bootargs.patch \ | 55 | file://0049-BeagleBoard-Add-camera-to-default-bootargs.patch \ |
56 | file://0001-BeagleBoard-move-ramdisk-parameters.patch \ | 56 | file://0050-BeagleBoard-move-ramdisk-parameters.patch \ |
57 | file://0051-add-support-for-beagleboardtoys-expansionboards.patch \ | ||
57 | file://fw_env.config \ | 58 | file://fw_env.config \ |
58 | " | 59 | " |
59 | SRCREV_pn-${PN}_beagleboard = "ca6e1c136ddb720c3bb2cc043b99f7f06bc46c55" | 60 | SRCREV_pn-${PN}_beagleboard = "ca6e1c136ddb720c3bb2cc043b99f7f06bc46c55" |