Skip to content

Commit

Permalink
Added support for rk3066 devices
Browse files Browse the repository at this point in the history
Signed-off-by: Omegamoon <[email protected]>
  • Loading branch information
omegamoon committed Oct 2, 2013
1 parent 80096fc commit 5cd0004
Show file tree
Hide file tree
Showing 9 changed files with 4,578 additions and 59 deletions.
223 changes: 170 additions & 53 deletions arch/arm/mach-rk30/board-rk30-box.c

Large diffs are not rendered by default.

449 changes: 449 additions & 0 deletions arch/arm/mach-rk30/board-rk30-sdk-rfkill.c

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions arch/arm/mach-rk30/board-rk30-sdk-sdmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,12 @@ static struct rksdmmc_gpio_board rksdmmc1_gpio_init = {
*************************************************************************/

#if !defined(CONFIG_SDMMC_RK29_OLD)
#ifdef CONFIG_ARCH_RK30XX
// Omegamoon: rk29_sdmmc_gpio_open was static
void rk29_sdmmc_gpio_open(int device_id, int on)
#else
static void rk29_sdmmc_gpio_open(int device_id, int on)
#endif
{
switch(device_id)
{
Expand Down Expand Up @@ -1185,6 +1190,7 @@ static void rk29_sdmmc_gpio_open(int device_id, int on)
break;
}
}
EXPORT_SYMBOL(rk29_sdmmc_gpio_open);

static void rk29_sdmmc_set_iomux_mmc0(unsigned int bus_width)
{
Expand Down
Loading

2 comments on commit 5cd0004

@tonikasch
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job!!
I'll test it soon :)

@kage00
Copy link

@kage00 kage00 commented on 5cd0004 Nov 10, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed you mentioned you added support for the RK3066
Does that mean this kernel will work on the Archos 80 Cobalt running the RK3066 chip?

Please sign in to comment.