aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-shmobile/board-mackerel.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-shmobile/board-mackerel.c')
-rw-r--r--arch/arm/mach-shmobile/board-mackerel.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c
index 49bc07482179..7da2ca24229d 100644
--- a/arch/arm/mach-shmobile/board-mackerel.c
+++ b/arch/arm/mach-shmobile/board-mackerel.c
@@ -32,10 +32,10 @@
32#include <linux/io.h> 32#include <linux/io.h>
33#include <linux/i2c.h> 33#include <linux/i2c.h>
34#include <linux/leds.h> 34#include <linux/leds.h>
35#include <linux/mfd/sh_mobile_sdhi.h>
36#include <linux/mfd/tmio.h> 35#include <linux/mfd/tmio.h>
37#include <linux/mmc/host.h> 36#include <linux/mmc/host.h>
38#include <linux/mmc/sh_mmcif.h> 37#include <linux/mmc/sh_mmcif.h>
38#include <linux/mmc/sh_mobile_sdhi.h>
39#include <linux/mtd/mtd.h> 39#include <linux/mtd/mtd.h>
40#include <linux/mtd/partitions.h> 40#include <linux/mtd/partitions.h>
41#include <linux/mtd/physmap.h> 41#include <linux/mtd/physmap.h>
@@ -423,7 +423,7 @@ static struct platform_device fsi_hdmi_device = {
423 .name = "sh_fsi2_b_hdmi", 423 .name = "sh_fsi2_b_hdmi",
424}; 424};
425 425
426static int __init hdmi_init_pm_clock(void) 426static void __init hdmi_init_pm_clock(void)
427{ 427{
428 struct clk *hdmi_ick = clk_get(&hdmi_device.dev, "ick"); 428 struct clk *hdmi_ick = clk_get(&hdmi_device.dev, "ick");
429 int ret; 429 int ret;
@@ -467,17 +467,13 @@ static int __init hdmi_init_pm_clock(void)
467 pr_debug("PLLC2 set frequency %lu\n", rate); 467 pr_debug("PLLC2 set frequency %lu\n", rate);
468 468
469 ret = clk_set_parent(hdmi_ick, &sh7372_pllc2_clk); 469 ret = clk_set_parent(hdmi_ick, &sh7372_pllc2_clk);
470 if (ret < 0) { 470 if (ret < 0)
471 pr_err("Cannot set HDMI parent: %d\n", ret); 471 pr_err("Cannot set HDMI parent: %d\n", ret);
472 goto out;
473 }
474 472
475out: 473out:
476 if (!IS_ERR(hdmi_ick)) 474 if (!IS_ERR(hdmi_ick))
477 clk_put(hdmi_ick); 475 clk_put(hdmi_ick);
478 return ret;
479} 476}
480device_initcall(hdmi_init_pm_clock);
481 477
482/* USB1 (Host) */ 478/* USB1 (Host) */
483static void usb1_host_port_power(int port, int power) 479static void usb1_host_port_power(int port, int power)
@@ -690,7 +686,7 @@ static struct resource sdhi0_resources[] = {
690 [0] = { 686 [0] = {
691 .name = "SDHI0", 687 .name = "SDHI0",
692 .start = 0xe6850000, 688 .start = 0xe6850000,
693 .end = 0xe68501ff, 689 .end = 0xe68500ff,
694 .flags = IORESOURCE_MEM, 690 .flags = IORESOURCE_MEM,
695 }, 691 },
696 [1] = { 692 [1] = {
@@ -725,7 +721,7 @@ static struct resource sdhi1_resources[] = {
725 [0] = { 721 [0] = {
726 .name = "SDHI1", 722 .name = "SDHI1",
727 .start = 0xe6860000, 723 .start = 0xe6860000,
728 .end = 0xe68601ff, 724 .end = 0xe68600ff,
729 .flags = IORESOURCE_MEM, 725 .flags = IORESOURCE_MEM,
730 }, 726 },
731 [1] = { 727 [1] = {
@@ -768,7 +764,7 @@ static struct resource sdhi2_resources[] = {
768 [0] = { 764 [0] = {
769 .name = "SDHI2", 765 .name = "SDHI2",
770 .start = 0xe6870000, 766 .start = 0xe6870000,
771 .end = 0xe68701ff, 767 .end = 0xe68700ff,
772 .flags = IORESOURCE_MEM, 768 .flags = IORESOURCE_MEM,
773 }, 769 },
774 [1] = { 770 [1] = {
@@ -1124,15 +1120,15 @@ static void __init mackerel_init(void)
1124 1120
1125 /* enable Keypad */ 1121 /* enable Keypad */
1126 gpio_request(GPIO_FN_IRQ9_42, NULL); 1122 gpio_request(GPIO_FN_IRQ9_42, NULL);
1127 set_irq_type(IRQ9, IRQ_TYPE_LEVEL_HIGH); 1123 irq_set_irq_type(IRQ9, IRQ_TYPE_LEVEL_HIGH);
1128 1124
1129 /* enable Touchscreen */ 1125 /* enable Touchscreen */
1130 gpio_request(GPIO_FN_IRQ7_40, NULL); 1126 gpio_request(GPIO_FN_IRQ7_40, NULL);
1131 set_irq_type(IRQ7, IRQ_TYPE_LEVEL_LOW); 1127 irq_set_irq_type(IRQ7, IRQ_TYPE_LEVEL_LOW);
1132 1128
1133 /* enable Accelerometer */ 1129 /* enable Accelerometer */
1134 gpio_request(GPIO_FN_IRQ21, NULL); 1130 gpio_request(GPIO_FN_IRQ21, NULL);
1135 set_irq_type(IRQ21, IRQ_TYPE_LEVEL_HIGH); 1131 irq_set_irq_type(IRQ21, IRQ_TYPE_LEVEL_HIGH);
1136 1132
1137 /* enable SDHI0 */ 1133 /* enable SDHI0 */
1138 gpio_request(GPIO_FN_SDHICD0, NULL); 1134 gpio_request(GPIO_FN_SDHICD0, NULL);
@@ -1218,6 +1214,8 @@ static void __init mackerel_init(void)
1218 sh7372_add_standard_devices(); 1214 sh7372_add_standard_devices();
1219 1215
1220 platform_add_devices(mackerel_devices, ARRAY_SIZE(mackerel_devices)); 1216 platform_add_devices(mackerel_devices, ARRAY_SIZE(mackerel_devices));
1217
1218 hdmi_init_pm_clock();
1221} 1219}
1222 1220
1223static void __init mackerel_timer_init(void) 1221static void __init mackerel_timer_init(void)