* [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups
@ 2011-07-15 11:24 Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 1/4] DaVinci EMAC: declare function for all DA8xx CPUs Laurence Withers
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Laurence Withers @ 2011-07-15 11:24 UTC (permalink / raw)
To: u-boot
Some general cleanup patches for the DaVinci/DA8xx CPUs made in preparation
for porting to a new board based on the DA850.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 1/4] DaVinci EMAC: declare function for all DA8xx CPUs
2011-07-15 11:24 [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Laurence Withers
@ 2011-07-15 11:24 ` Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 2/4] DA8xx: add MMC/SD controller addresses Laurence Withers
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Laurence Withers @ 2011-07-15 11:24 UTC (permalink / raw)
To: u-boot
The function davinci_emac_mii_mode_sel() is defined in
board/davinci/common/misc.c for any DA8xx CPU which has
CONFIG_DRIVER_TI_EMAC enabled. However, the prototype was only being
declared in <include/asm/arch/davinci_misc.h> for the DA850 EVM board.
This patch declares it for all DA8xx CPUs where CONFIG_DRIVER_TI_EMAC
is enabled.
Signed-off-by: Laurence Withers <lwithers@guralp.com>
---
arch/arm/include/asm/arch-davinci/davinci_misc.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/include/asm/arch-davinci/davinci_misc.h b/arch/arm/include/asm/arch-davinci/davinci_misc.h
index 347aa89..211b769 100644
--- a/arch/arm/include/asm/arch-davinci/davinci_misc.h
+++ b/arch/arm/include/asm/arch-davinci/davinci_misc.h
@@ -57,7 +57,7 @@ void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr);
int davinci_configure_pin_mux(const struct pinmux_config *pins, int n_pins);
int davinci_configure_pin_mux_items(const struct pinmux_resource *item,
int n_items);
-#if defined(CONFIG_DRIVER_TI_EMAC) && defined(CONFIG_MACH_DAVINCI_DA850_EVM)
+#if defined(CONFIG_DRIVER_TI_EMAC) && defined(CONFIG_SOC_DA8XX)
void davinci_emac_mii_mode_sel(int mode_sel);
#endif
#if defined(CONFIG_SOC_DA8XX)
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 2/4] DA8xx: add MMC/SD controller addresses
2011-07-15 11:24 [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 1/4] DaVinci EMAC: declare function for all DA8xx CPUs Laurence Withers
@ 2011-07-15 11:24 ` Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 3/4] DA8xx: switch an enum to defines for consistency Laurence Withers
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Laurence Withers @ 2011-07-15 11:24 UTC (permalink / raw)
To: u-boot
Signed-off-by: Laurence Withers <lwithers@guralp.com>
---
arch/arm/include/asm/arch-davinci/hardware.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/arch-davinci/hardware.h b/arch/arm/include/asm/arch-davinci/hardware.h
index df3f549..d5d4211 100644
--- a/arch/arm/include/asm/arch-davinci/hardware.h
+++ b/arch/arm/include/asm/arch-davinci/hardware.h
@@ -140,6 +140,8 @@ typedef volatile unsigned int * dv_reg_p;
#define DAVINCI_EMAC_WRAPPER_CNTRL_REGS_BASE 0x01e22000
#define DAVINCI_EMAC_WRAPPER_RAM_BASE 0x01e20000
#define DAVINCI_MDIO_CNTRL_REGS_BASE 0x01e24000
+#define DAVINCI_MMC_SD0_BASE 0x01c40000
+#define DAVINCI_MMC_SD1_BASE 0x01e1b000
#define DAVINCI_ASYNC_EMIF_CNTRL_BASE 0x68000000
#define DAVINCI_ASYNC_EMIF_DATA_CE0_BASE 0x40000000
#define DAVINCI_ASYNC_EMIF_DATA_CE2_BASE 0x60000000
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 3/4] DA8xx: switch an enum to defines for consistency
2011-07-15 11:24 [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 1/4] DaVinci EMAC: declare function for all DA8xx CPUs Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 2/4] DA8xx: add MMC/SD controller addresses Laurence Withers
@ 2011-07-15 11:24 ` Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 4/4] DA8xx: fix LPSC constants Laurence Withers
2011-07-16 9:06 ` [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Albert ARIBAUD
4 siblings, 0 replies; 9+ messages in thread
From: Laurence Withers @ 2011-07-15 11:24 UTC (permalink / raw)
To: u-boot
There are two main sets of LPSC constants, depending on the processor
family. The DA8xx constants were given in an enum whereas the non-DA8xx
constants were preprocessor defines. This commit switches the DA8xx
constants to defines for consistency.
Signed-off-by: Laurence Withers <lwithers@guralp.com>
---
arch/arm/include/asm/arch-davinci/hardware.h | 81 +++++++++++++-------------
1 files changed, 40 insertions(+), 41 deletions(-)
diff --git a/arch/arm/include/asm/arch-davinci/hardware.h b/arch/arm/include/asm/arch-davinci/hardware.h
index d5d4211..551b469 100644
--- a/arch/arm/include/asm/arch-davinci/hardware.h
+++ b/arch/arm/include/asm/arch-davinci/hardware.h
@@ -215,47 +215,46 @@ typedef volatile unsigned int * dv_reg_p;
#else /* CONFIG_SOC_DA8XX */
-enum davinci_lpsc_ids {
- DAVINCI_LPSC_TPCC = 0,
- DAVINCI_LPSC_TPTC0,
- DAVINCI_LPSC_TPTC1,
- DAVINCI_LPSC_AEMIF,
- DAVINCI_LPSC_SPI0,
- DAVINCI_LPSC_MMC_SD,
- DAVINCI_LPSC_AINTC,
- DAVINCI_LPSC_ARM_RAM_ROM,
- DAVINCI_LPSC_SECCTL_KEYMGR,
- DAVINCI_LPSC_UART0,
- DAVINCI_LPSC_SCR0,
- DAVINCI_LPSC_SCR1,
- DAVINCI_LPSC_SCR2,
- DAVINCI_LPSC_DMAX,
- DAVINCI_LPSC_ARM,
- DAVINCI_LPSC_GEM,
- /* for LPSCs in PSC1, offset from 32 for differentiation */
- DAVINCI_LPSC_PSC1_BASE = 32,
- DAVINCI_LPSC_USB11,
- DAVINCI_LPSC_USB20,
- DAVINCI_LPSC_GPIO,
- DAVINCI_LPSC_UHPI,
- DAVINCI_LPSC_EMAC,
- DAVINCI_LPSC_DDR_EMIF,
- DAVINCI_LPSC_McASP0,
- DAVINCI_LPSC_McASP1,
- DAVINCI_LPSC_McASP2,
- DAVINCI_LPSC_SPI1,
- DAVINCI_LPSC_I2C1,
- DAVINCI_LPSC_UART1,
- DAVINCI_LPSC_UART2,
- DAVINCI_LPSC_LCDC,
- DAVINCI_LPSC_ePWM,
- DAVINCI_LPSC_eCAP,
- DAVINCI_LPSC_eQEP,
- DAVINCI_LPSC_SCR_P0,
- DAVINCI_LPSC_SCR_P1,
- DAVINCI_LPSC_CR_P3,
- DAVINCI_LPSC_L3_CBA_RAM
-};
+#define DAVINCI_LPSC_TPCC 0
+#define DAVINCI_LPSC_TPTC0 1
+#define DAVINCI_LPSC_TPTC1 2
+#define DAVINCI_LPSC_AEMIF 3
+#define DAVINCI_LPSC_SPI0 4
+#define DAVINCI_LPSC_MMC_SD 5
+#define DAVINCI_LPSC_AINTC 6
+#define DAVINCI_LPSC_ARM_RAM_ROM 7
+#define DAVINCI_LPSC_SECCTL_KEYMGR 8
+#define DAVINCI_LPSC_UART0 9
+#define DAVINCI_LPSC_SCR0 10
+#define DAVINCI_LPSC_SCR1 11
+#define DAVINCI_LPSC_SCR2 12
+#define DAVINCI_LPSC_DMAX 13
+#define DAVINCI_LPSC_ARM 14
+#define DAVINCI_LPSC_GEM 15
+
+/* for LPSCs in PSC1, offset from 32 for differentiation */
+#define DAVINCI_LPSC_PSC1_BASE 32
+#define DAVINCI_LPSC_USB11 (DAVINCI_LPSC_PSC1_BASE + 1)
+#define DAVINCI_LPSC_USB20 (DAVINCI_LPSC_PSC1_BASE + 2)
+#define DAVINCI_LPSC_GPIO (DAVINCI_LPSC_PSC1_BASE + 3)
+#define DAVINCI_LPSC_UHPI (DAVINCI_LPSC_PSC1_BASE + 4)
+#define DAVINCI_LPSC_EMAC (DAVINCI_LPSC_PSC1_BASE + 5)
+#define DAVINCI_LPSC_DDR_EMIF (DAVINCI_LPSC_PSC1_BASE + 6)
+#define DAVINCI_LPSC_McASP0 (DAVINCI_LPSC_PSC1_BASE + 7)
+#define DAVINCI_LPSC_McASP1 (DAVINCI_LPSC_PSC1_BASE + 8)
+#define DAVINCI_LPSC_McASP2 (DAVINCI_LPSC_PSC1_BASE + 9)
+#define DAVINCI_LPSC_SPI1 (DAVINCI_LPSC_PSC1_BASE + 10)
+#define DAVINCI_LPSC_I2C1 (DAVINCI_LPSC_PSC1_BASE + 11)
+#define DAVINCI_LPSC_UART1 (DAVINCI_LPSC_PSC1_BASE + 12)
+#define DAVINCI_LPSC_UART2 (DAVINCI_LPSC_PSC1_BASE + 13)
+#define DAVINCI_LPSC_LCDC (DAVINCI_LPSC_PSC1_BASE + 14)
+#define DAVINCI_LPSC_ePWM (DAVINCI_LPSC_PSC1_BASE + 15)
+#define DAVINCI_LPSC_eCAP (DAVINCI_LPSC_PSC1_BASE + 16)
+#define DAVINCI_LPSC_eQEP (DAVINCI_LPSC_PSC1_BASE + 17)
+#define DAVINCI_LPSC_SCR_P0 (DAVINCI_LPSC_PSC1_BASE + 18)
+#define DAVINCI_LPSC_SCR_P1 (DAVINCI_LPSC_PSC1_BASE + 19)
+#define DAVINCI_LPSC_CR_P3 (DAVINCI_LPSC_PSC1_BASE + 20)
+#define DAVINCI_LPSC_L3_CBA_RAM (DAVINCI_LPSC_PSC1_BASE + 21)
#endif /* CONFIG_SOC_DA8XX */
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 4/4] DA8xx: fix LPSC constants
2011-07-15 11:24 [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Laurence Withers
` (2 preceding siblings ...)
2011-07-15 11:24 ` [U-Boot] [PATCH 3/4] DA8xx: switch an enum to defines for consistency Laurence Withers
@ 2011-07-15 11:24 ` Laurence Withers
2011-07-16 9:06 ` [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Albert ARIBAUD
4 siblings, 0 replies; 9+ messages in thread
From: Laurence Withers @ 2011-07-15 11:24 UTC (permalink / raw)
To: u-boot
Some of the LPSC constants were incorrect, and some were missing. This
commit fixes the incorrect constants (which were not used anywhere in
the tree) and adds all constants for both DA830 and DA850, as per the
TI datasheets.
Signed-off-by: Laurence Withers <lwithers@guralp.com>
---
arch/arm/include/asm/arch-davinci/hardware.h | 43 ++++++++++++++++++-------
1 files changed, 31 insertions(+), 12 deletions(-)
diff --git a/arch/arm/include/asm/arch-davinci/hardware.h b/arch/arm/include/asm/arch-davinci/hardware.h
index 551b469..f537c4b 100644
--- a/arch/arm/include/asm/arch-davinci/hardware.h
+++ b/arch/arm/include/asm/arch-davinci/hardware.h
@@ -234,27 +234,46 @@ typedef volatile unsigned int * dv_reg_p;
/* for LPSCs in PSC1, offset from 32 for differentiation */
#define DAVINCI_LPSC_PSC1_BASE 32
-#define DAVINCI_LPSC_USB11 (DAVINCI_LPSC_PSC1_BASE + 1)
-#define DAVINCI_LPSC_USB20 (DAVINCI_LPSC_PSC1_BASE + 2)
+#define DAVINCI_LPSC_USB20 (DAVINCI_LPSC_PSC1_BASE + 1)
+#define DAVINCI_LPSC_USB11 (DAVINCI_LPSC_PSC1_BASE + 2)
#define DAVINCI_LPSC_GPIO (DAVINCI_LPSC_PSC1_BASE + 3)
#define DAVINCI_LPSC_UHPI (DAVINCI_LPSC_PSC1_BASE + 4)
#define DAVINCI_LPSC_EMAC (DAVINCI_LPSC_PSC1_BASE + 5)
#define DAVINCI_LPSC_DDR_EMIF (DAVINCI_LPSC_PSC1_BASE + 6)
#define DAVINCI_LPSC_McASP0 (DAVINCI_LPSC_PSC1_BASE + 7)
-#define DAVINCI_LPSC_McASP1 (DAVINCI_LPSC_PSC1_BASE + 8)
-#define DAVINCI_LPSC_McASP2 (DAVINCI_LPSC_PSC1_BASE + 9)
#define DAVINCI_LPSC_SPI1 (DAVINCI_LPSC_PSC1_BASE + 10)
#define DAVINCI_LPSC_I2C1 (DAVINCI_LPSC_PSC1_BASE + 11)
#define DAVINCI_LPSC_UART1 (DAVINCI_LPSC_PSC1_BASE + 12)
#define DAVINCI_LPSC_UART2 (DAVINCI_LPSC_PSC1_BASE + 13)
-#define DAVINCI_LPSC_LCDC (DAVINCI_LPSC_PSC1_BASE + 14)
-#define DAVINCI_LPSC_ePWM (DAVINCI_LPSC_PSC1_BASE + 15)
-#define DAVINCI_LPSC_eCAP (DAVINCI_LPSC_PSC1_BASE + 16)
-#define DAVINCI_LPSC_eQEP (DAVINCI_LPSC_PSC1_BASE + 17)
-#define DAVINCI_LPSC_SCR_P0 (DAVINCI_LPSC_PSC1_BASE + 18)
-#define DAVINCI_LPSC_SCR_P1 (DAVINCI_LPSC_PSC1_BASE + 19)
-#define DAVINCI_LPSC_CR_P3 (DAVINCI_LPSC_PSC1_BASE + 20)
-#define DAVINCI_LPSC_L3_CBA_RAM (DAVINCI_LPSC_PSC1_BASE + 21)
+#define DAVINCI_LPSC_LCDC (DAVINCI_LPSC_PSC1_BASE + 16)
+#define DAVINCI_LPSC_ePWM (DAVINCI_LPSC_PSC1_BASE + 17)
+#define DAVINCI_LPSC_eCAP (DAVINCI_LPSC_PSC1_BASE + 20)
+#define DAVINCI_LPSC_L3_CBA_RAM (DAVINCI_LPSC_PSC1_BASE + 31)
+
+/* DA830-specific peripherals */
+#define DAVINCI_LPSC_McASP1 (DAVINCI_LPSC_PSC1_BASE + 8)
+#define DAVINCI_LPSC_McASP2 (DAVINCI_LPSC_PSC1_BASE + 9)
+#define DAVINCI_LPSC_eQEP (DAVINCI_LPSC_PSC1_BASE + 21)
+#define DAVINCI_LPSC_SCR8 (DAVINCI_LPSC_PSC1_BASE + 24)
+#define DAVINCI_LPSC_SCR7 (DAVINCI_LPSC_PSC1_BASE + 25)
+#define DAVINCI_LPSC_SCR12 (DAVINCI_LPSC_PSC1_BASE + 26)
+
+/* DA850-specific peripherals */
+#define DAVINCI_LPSC_TPCC1 (DAVINCI_LPSC_PSC1_BASE + 0)
+#define DAVINCI_LPSC_SATA (DAVINCI_LPSC_PSC1_BASE + 8)
+#define DAVINCI_LPSC_VPIF (DAVINCI_LPSC_PSC1_BASE + 9)
+#define DAVINCI_LPSC_McBSP0 (DAVINCI_LPSC_PSC1_BASE + 14)
+#define DAVINCI_LPSC_McBSP1 (DAVINCI_LPSC_PSC1_BASE + 15)
+#define DAVINCI_LPSC_MMC_SD1 (DAVINCI_LPSC_PSC1_BASE + 18)
+#define DAVINCI_LPSC_uPP (DAVINCI_LPSC_PSC1_BASE + 19)
+#define DAVINCI_LPSC_TPTC2 (DAVINCI_LPSC_PSC1_BASE + 21)
+#define DAVINCI_LPSC_SCR_F0 (DAVINCI_LPSC_PSC1_BASE + 24)
+#define DAVINCI_LPSC_SCR_F1 (DAVINCI_LPSC_PSC1_BASE + 25)
+#define DAVINCI_LPSC_SCR_F2 (DAVINCI_LPSC_PSC1_BASE + 26)
+#define DAVINCI_LPSC_SCR_F6 (DAVINCI_LPSC_PSC1_BASE + 27)
+#define DAVINCI_LPSC_SCR_F7 (DAVINCI_LPSC_PSC1_BASE + 28)
+#define DAVINCI_LPSC_SCR_F8 (DAVINCI_LPSC_PSC1_BASE + 29)
+#define DAVINCI_LPSC_BR_F7 (DAVINCI_LPSC_PSC1_BASE + 30)
#endif /* CONFIG_SOC_DA8XX */
--
1.7.2.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups
2011-07-15 11:24 [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Laurence Withers
` (3 preceding siblings ...)
2011-07-15 11:24 ` [U-Boot] [PATCH 4/4] DA8xx: fix LPSC constants Laurence Withers
@ 2011-07-16 9:06 ` Albert ARIBAUD
2011-07-16 10:52 ` Laurence Withers
4 siblings, 1 reply; 9+ messages in thread
From: Albert ARIBAUD @ 2011-07-16 9:06 UTC (permalink / raw)
To: u-boot
Hi Laurence,
Le 15/07/2011 13:24, Laurence Withers a ?crit :
> Some general cleanup patches for the DaVinci/DA8xx CPUs made in preparation
> for porting to a new board based on the DA850.
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
Maybe as it touches at least indirectly DA8x boards you could CC: the
board maintainers?
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups
@ 2011-07-16 10:51 Laurence Withers
0 siblings, 0 replies; 9+ messages in thread
From: Laurence Withers @ 2011-07-16 10:51 UTC (permalink / raw)
To: u-boot
Some general cleanup patches for the DaVinci/DA8xx CPUs made in preparation
for porting to a new board based on the DA850.
This is an unchanged repost from my original, with DaVinci/DA8xx board
maintainers CCed.
Laurence Withers (4):
DaVinci EMAC: declare function for all DA8xx CPUs
DA8xx: add MMC/SD controller addresses
DA8xx: switch an enum to defines for consistency
DA8xx: fix LPSC constants
arch/arm/include/asm/arch-davinci/davinci_misc.h | 2 +-
arch/arm/include/asm/arch-davinci/hardware.h | 102 +++++++++++++---------
2 files changed, 62 insertions(+), 42 deletions(-)
--
Laurence Withers, <lwithers@guralp.com> http://www.guralp.com/
Direct tel:+447753988197 or tel:+443333408643 Software Engineer
General support queries: <support@guralp.com> CMG-DCM CMG-EAM CMG-NAM
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups
2011-07-16 9:06 ` [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Albert ARIBAUD
@ 2011-07-16 10:52 ` Laurence Withers
2011-07-16 11:03 ` Albert ARIBAUD
0 siblings, 1 reply; 9+ messages in thread
From: Laurence Withers @ 2011-07-16 10:52 UTC (permalink / raw)
To: u-boot
On Sat, Jul 16, 2011 at 11:06:50AM +0200, Albert ARIBAUD wrote:
> Maybe as it touches at least indirectly DA8x boards you could CC: the
> board maintainers?
Hi Albert,
Thanks for the pointer, I have reposted with CCs in place.
Bye for now,
--
Laurence Withers, <lwithers@guralp.com> http://www.guralp.com/
Direct tel:+447753988197 or tel:+443333408643 Software Engineer
General support queries: <support@guralp.com> CMG-DCM CMG-EAM CMG-NAM
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups
2011-07-16 10:52 ` Laurence Withers
@ 2011-07-16 11:03 ` Albert ARIBAUD
0 siblings, 0 replies; 9+ messages in thread
From: Albert ARIBAUD @ 2011-07-16 11:03 UTC (permalink / raw)
To: u-boot
Hi Laurence,
Le 16/07/2011 12:52, Laurence Withers a ?crit :
> On Sat, Jul 16, 2011 at 11:06:50AM +0200, Albert ARIBAUD wrote:
>> Maybe as it touches at least indirectly DA8x boards you could CC: the
>> board maintainers?
>
> Hi Albert,
>
> Thanks for the pointer, I have reposted with CCs in place.
>
> Bye for now,
Hmm -- if you repost patches, please either bump up their version number
(V2, V3, etc) or at the very least tag them as RESEND.
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-07-16 11:03 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-15 11:24 [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 1/4] DaVinci EMAC: declare function for all DA8xx CPUs Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 2/4] DA8xx: add MMC/SD controller addresses Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 3/4] DA8xx: switch an enum to defines for consistency Laurence Withers
2011-07-15 11:24 ` [U-Boot] [PATCH 4/4] DA8xx: fix LPSC constants Laurence Withers
2011-07-16 9:06 ` [U-Boot] [PATCH 0/4] DaVinci/DA8xx cleanups Albert ARIBAUD
2011-07-16 10:52 ` Laurence Withers
2011-07-16 11:03 ` Albert ARIBAUD
-- strict thread matches above, loose matches on Subject: below --
2011-07-16 10:51 Laurence Withers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox