Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137258
b: refs/heads/master
c: f2cb641
h: refs/heads/master
v: v3
  • Loading branch information
Sascha Hauer committed Mar 13, 2009
1 parent 91c73ff commit 8c3b325
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2adc1d654e41f4308193fdd46cee885b7a35c149
refs/heads/master: f2cb641f565dccebfa934b1a940bc6517734d391
28 changes: 28 additions & 0 deletions trunk/arch/arm/mach-mx3/pcm037.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include <mach/iomux-mx3.h>
#include <mach/board-pcm037.h>
#include <mach/mxc_nand.h>
#include <mach/mmc.h>
#ifdef CONFIG_I2C_IMX
#include <mach/i2c.h>
#endif
Expand Down Expand Up @@ -162,6 +163,32 @@ static struct i2c_board_info pcm037_i2c_devices[] = {
};
#endif

static int sdhc1_pins[] = {
MX31_PIN_SD1_DATA3__SD1_DATA3,
MX31_PIN_SD1_DATA2__SD1_DATA2,
MX31_PIN_SD1_DATA1__SD1_DATA1,
MX31_PIN_SD1_DATA0__SD1_DATA0,
MX31_PIN_SD1_CLK__SD1_CLK,
MX31_PIN_SD1_CMD__SD1_CMD,
};

static int pcm970_sdhc1_init(struct device *dev, irq_handler_t h, void *data)
{
return mxc_iomux_setup_multiple_pins(sdhc1_pins, ARRAY_SIZE(sdhc1_pins),
"sdhc-1");
}

static void pcm970_sdhc1_exit(struct device *dev, void *data)
{
mxc_iomux_release_multiple_pins(sdhc1_pins, ARRAY_SIZE(sdhc1_pins));
}

/* No card and rw detection at the moment */
static struct imxmmc_platform_data sdhc_pdata = {
.init = pcm970_sdhc1_init,
.exit = pcm970_sdhc1_exit,
};

static struct platform_device *devices[] __initdata = {
&pcm037_flash,
&pcm037_eth,
Expand Down Expand Up @@ -208,6 +235,7 @@ static void __init mxc_board_init(void)
mxc_register_device(&mxc_i2c_device1, &pcm037_i2c_1_data);
#endif
mxc_register_device(&mxc_nand_device, &pcm037_nand_board_info);
mxc_register_device(&mxcsdhc_device0, &sdhc_pdata);
}

static void __init pcm037_timer_init(void)
Expand Down

0 comments on commit 8c3b325

Please sign in to comment.