* [PATCH] at91sam9m10g45ek: add mci0 support
@ 2011-06-10 8:37 Hubert Feurstein
2011-06-10 11:29 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 1 reply; 4+ messages in thread
From: Hubert Feurstein @ 2011-06-10 8:37 UTC (permalink / raw)
To: barebox
and enable fat support
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
arch/arm/boards/at91sam9m10g45ek/init.c | 8 ++++++++
arch/arm/configs/at91sam9m10g45ek_defconfig | 5 +++++
2 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/arch/arm/boards/at91sam9m10g45ek/init.c b/arch/arm/boards/at91sam9m10g45ek/init.c
index 77d51b7..4f79e42 100644
--- a/arch/arm/boards/at91sam9m10g45ek/init.c
+++ b/arch/arm/boards/at91sam9m10g45ek/init.c
@@ -22,6 +22,7 @@
#include <common.h>
#include <net.h>
+#include <mci.h>
#include <init.h>
#include <environment.h>
#include <asm/armlinux.h>
@@ -110,11 +111,18 @@ static struct at91_ether_platform_data macb_pdata = {
.phy_addr = 0,
};
+static struct atmel_mci_platform_data mci0_pdata = {
+ .bus_width = 4,
+ .host_caps = MMC_MODE_HS,
+ .detect_pin = AT91_PIN_PD10,
+};
+
static int at91sam9m10g45ek_devices_init(void)
{
at91_add_device_sdram(128 * 1024 * 1024);
ek_add_device_nand();
at91_add_device_eth(&macb_pdata);
+ at91_add_device_mci(0, &mci0_pdata);
devfs_add_partition("nand0", 0x00000, 0x80000, PARTITION_FIXED, "self_raw");
dev_add_bb_dev("self_raw", "self0");
diff --git a/arch/arm/configs/at91sam9m10g45ek_defconfig b/arch/arm/configs/at91sam9m10g45ek_defconfig
index e1c6cef..deca884 100644
--- a/arch/arm/configs/at91sam9m10g45ek_defconfig
+++ b/arch/arm/configs/at91sam9m10g45ek_defconfig
@@ -53,3 +53,8 @@ CONFIG_CFI_BUFFER_WRITE=y
CONFIG_MTD=y
CONFIG_NAND=y
CONFIG_UBI=y
+CONFIG_MCI=y
+CONFIG_MCI_WRITE=y
+CONFIG_MCI_ATMEL=y
+CONFIG_FS_FAT=y
+CONFIG_FS_FAT_WRITE=y
--
1.7.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] at91sam9m10g45ek: add mci0 support
2011-06-10 8:37 [PATCH] at91sam9m10g45ek: add mci0 support Hubert Feurstein
@ 2011-06-10 11:29 ` Jean-Christophe PLAGNIOL-VILLARD
2011-06-12 22:12 ` [PATCH v2] " Hubert Feurstein
0 siblings, 1 reply; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2011-06-10 11:29 UTC (permalink / raw)
To: Hubert Feurstein; +Cc: barebox
On 10:37 Fri 10 Jun , Hubert Feurstein wrote:
> and enable fat support
>
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> arch/arm/boards/at91sam9m10g45ek/init.c | 8 ++++++++
> arch/arm/configs/at91sam9m10g45ek_defconfig | 5 +++++
> 2 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boards/at91sam9m10g45ek/init.c b/arch/arm/boards/at91sam9m10g45ek/init.c
> index 77d51b7..4f79e42 100644
> --- a/arch/arm/boards/at91sam9m10g45ek/init.c
> +++ b/arch/arm/boards/at91sam9m10g45ek/init.c
> @@ -22,6 +22,7 @@
>
> #include <common.h>
> #include <net.h>
> +#include <mci.h>
> #include <init.h>
> #include <environment.h>
> #include <asm/armlinux.h>
> @@ -110,11 +111,18 @@ static struct at91_ether_platform_data macb_pdata = {
> .phy_addr = 0,
> };
>
> +static struct atmel_mci_platform_data mci0_pdata = {
> + .bus_width = 4,
> + .host_caps = MMC_MODE_HS,
> + .detect_pin = AT91_PIN_PD10,
> +};
> +
> static int at91sam9m10g45ek_devices_init(void)
> {
> at91_add_device_sdram(128 * 1024 * 1024);
> ek_add_device_nand();
> at91_add_device_eth(&macb_pdata);
> + at91_add_device_mci(0, &mci0_pdata);
please do the same as I did on 9263ek
only add the device if the driver is enable
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] at91sam9m10g45ek: add mci0 support
2011-06-10 11:29 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2011-06-12 22:12 ` Hubert Feurstein
2011-06-15 0:30 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 1 reply; 4+ messages in thread
From: Hubert Feurstein @ 2011-06-12 22:12 UTC (permalink / raw)
To: barebox
enable fat support
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
arch/arm/boards/at91sam9m10g45ek/init.c | 17 +++++++++++++++++
arch/arm/configs/at91sam9m10g45ek_defconfig | 5 +++++
2 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/arch/arm/boards/at91sam9m10g45ek/init.c b/arch/arm/boards/at91sam9m10g45ek/init.c
index 77d51b7..dcd2fe6 100644
--- a/arch/arm/boards/at91sam9m10g45ek/init.c
+++ b/arch/arm/boards/at91sam9m10g45ek/init.c
@@ -22,6 +22,7 @@
#include <common.h>
#include <net.h>
+#include <mci.h>
#include <init.h>
#include <environment.h>
#include <asm/armlinux.h>
@@ -110,11 +111,27 @@ static struct at91_ether_platform_data macb_pdata = {
.phy_addr = 0,
};
+#if defined(CONFIG_MCI_ATMEL)
+static struct atmel_mci_platform_data ek_mci_data = {
+ .bus_width = 4,
+ .host_caps = MMC_MODE_HS,
+ .detect_pin = AT91_PIN_PD10,
+};
+
+static void ek_add_device_mci(void)
+{
+ at91_add_device_mci(0, &ek_mci_data);
+}
+#else
+static void ek_add_device_mci(void) {}
+#endif
+
static int at91sam9m10g45ek_devices_init(void)
{
at91_add_device_sdram(128 * 1024 * 1024);
ek_add_device_nand();
at91_add_device_eth(&macb_pdata);
+ ek_add_device_mci();
devfs_add_partition("nand0", 0x00000, 0x80000, PARTITION_FIXED, "self_raw");
dev_add_bb_dev("self_raw", "self0");
diff --git a/arch/arm/configs/at91sam9m10g45ek_defconfig b/arch/arm/configs/at91sam9m10g45ek_defconfig
index e1c6cef..deca884 100644
--- a/arch/arm/configs/at91sam9m10g45ek_defconfig
+++ b/arch/arm/configs/at91sam9m10g45ek_defconfig
@@ -53,3 +53,8 @@ CONFIG_CFI_BUFFER_WRITE=y
CONFIG_MTD=y
CONFIG_NAND=y
CONFIG_UBI=y
+CONFIG_MCI=y
+CONFIG_MCI_WRITE=y
+CONFIG_MCI_ATMEL=y
+CONFIG_FS_FAT=y
+CONFIG_FS_FAT_WRITE=y
--
1.7.4.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] at91sam9m10g45ek: add mci0 support
2011-06-12 22:12 ` [PATCH v2] " Hubert Feurstein
@ 2011-06-15 0:30 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 0 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2011-06-15 0:30 UTC (permalink / raw)
To: Hubert Feurstein; +Cc: barebox
On 00:12 Mon 13 Jun , Hubert Feurstein wrote:
> enable fat support
>
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-06-15 0:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-10 8:37 [PATCH] at91sam9m10g45ek: add mci0 support Hubert Feurstein
2011-06-10 11:29 ` Jean-Christophe PLAGNIOL-VILLARD
2011-06-12 22:12 ` [PATCH v2] " Hubert Feurstein
2011-06-15 0:30 ` Jean-Christophe PLAGNIOL-VILLARD
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox