|
@@ -231,3 +231,174 @@ static struct platform_device smartq_lcd_power_device = {
|
|
.dev.platform_data = &smartq_lcd_power_data,
|
|
.dev.platform_data = &smartq_lcd_power_data,
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+static struct i2c_board_info smartq_i2c_devs[] __initdata = {
|
|
|
|
+ { I2C_BOARD_INFO("wm8987", 0x1a), },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct platform_device *smartq_devices[] __initdata = {
|
|
|
|
+ &s3c_device_hsmmc1, /* Init iNAND first, ... */
|
|
|
|
+ &s3c_device_hsmmc0, /* ... then the external SD card */
|
|
|
|
+ &s3c_device_hsmmc2,
|
|
|
|
+ &s3c_device_adc,
|
|
|
|
+ &s3c_device_fb,
|
|
|
|
+ &s3c_device_hwmon,
|
|
|
|
+ &s3c_device_i2c0,
|
|
|
|
+ &s3c_device_ohci,
|
|
|
|
+ &s3c_device_rtc,
|
|
|
|
+ &s3c_device_timer[1],
|
|
|
|
+ &s3c_device_ts,
|
|
|
|
+ &s3c_device_usb_hsotg,
|
|
|
|
+ &s3c64xx_device_iis0,
|
|
|
|
+ &smartq_backlight_device,
|
|
|
|
+ &smartq_lcd_control_device,
|
|
|
|
+ &smartq_lcd_power_device,
|
|
|
|
+ &smartq_usb_otg_vbus_dev,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static void __init smartq_lcd_mode_set(void)
|
|
|
|
+{
|
|
|
|
+ u32 tmp;
|
|
|
|
+
|
|
|
|
+ /* set the LCD type */
|
|
|
|
+ tmp = __raw_readl(S3C64XX_SPCON);
|
|
|
|
+ tmp &= ~S3C64XX_SPCON_LCD_SEL_MASK;
|
|
|
|
+ tmp |= S3C64XX_SPCON_LCD_SEL_RGB;
|
|
|
|
+ __raw_writel(tmp, S3C64XX_SPCON);
|
|
|
|
+
|
|
|
|
+ /* remove the LCD bypass */
|
|
|
|
+ tmp = __raw_readl(S3C64XX_MODEM_MIFPCON);
|
|
|
|
+ tmp &= ~MIFPCON_LCD_BYPASS;
|
|
|
|
+ __raw_writel(tmp, S3C64XX_MODEM_MIFPCON);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void smartq_power_off(void)
|
|
|
|
+{
|
|
|
|
+ gpio_direction_output(S3C64XX_GPK(15), 1);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int __init smartq_power_off_init(void)
|
|
|
|
+{
|
|
|
|
+ int ret;
|
|
|
|
+
|
|
|
|
+ ret = gpio_request(S3C64XX_GPK(15), "Power control");
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ pr_err("%s: failed to get GPK15\n", __func__);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* leave power on */
|
|
|
|
+ gpio_direction_output(S3C64XX_GPK(15), 0);
|
|
|
|
+
|
|
|
|
+ pm_power_off = smartq_power_off;
|
|
|
|
+
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int __init smartq_usb_host_init(void)
|
|
|
|
+{
|
|
|
|
+ int ret;
|
|
|
|
+
|
|
|
|
+ ret = gpio_request(S3C64XX_GPL(0), "USB power control");
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ pr_err("%s: failed to get GPL0\n", __func__);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ret = gpio_request(S3C64XX_GPL(1), "USB host power control");
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ pr_err("%s: failed to get GPL1\n", __func__);
|
|
|
|
+ goto err;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!machine_is_smartq5()) {
|
|
|
|
+ /* This isn't present on a SmartQ 5 board */
|
|
|
|
+ ret = gpio_request(S3C64XX_GPL(10), "USB host overcurrent");
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ pr_err("%s: failed to get GPL10\n", __func__);
|
|
|
|
+ goto err2;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* turn power off */
|
|
|
|
+ gpio_direction_output(S3C64XX_GPL(0), 0);
|
|
|
|
+ gpio_direction_output(S3C64XX_GPL(1), 0);
|
|
|
|
+ if (!machine_is_smartq5())
|
|
|
|
+ gpio_direction_input(S3C64XX_GPL(10));
|
|
|
|
+
|
|
|
|
+ s3c_device_ohci.dev.platform_data = &smartq_usb_host_info;
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
|
|
+err2:
|
|
|
|
+ gpio_free(S3C64XX_GPL(1));
|
|
|
|
+err:
|
|
|
|
+ gpio_free(S3C64XX_GPL(0));
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int __init smartq_usb_otg_init(void)
|
|
|
|
+{
|
|
|
|
+ clk_xusbxti.rate = 12000000;
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int __init smartq_wifi_init(void)
|
|
|
|
+{
|
|
|
|
+ int ret;
|
|
|
|
+
|
|
|
|
+ ret = gpio_request(S3C64XX_GPK(1), "wifi control");
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ pr_err("%s: failed to get GPK1\n", __func__);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ret = gpio_request(S3C64XX_GPK(2), "wifi reset");
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ pr_err("%s: failed to get GPK2\n", __func__);
|
|
|
|
+ gpio_free(S3C64XX_GPK(1));
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* turn power on */
|
|
|
|
+ gpio_direction_output(S3C64XX_GPK(1), 1);
|
|
|
|
+
|
|
|
|
+ /* reset device */
|
|
|
|
+ gpio_direction_output(S3C64XX_GPK(2), 0);
|
|
|
|
+ mdelay(100);
|
|
|
|
+ gpio_set_value(S3C64XX_GPK(2), 1);
|
|
|
|
+ gpio_direction_input(S3C64XX_GPK(2));
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct map_desc smartq_iodesc[] __initdata = {};
|
|
|
|
+void __init smartq_map_io(void)
|
|
|
|
+{
|
|
|
|
+ s3c64xx_init_io(smartq_iodesc, ARRAY_SIZE(smartq_iodesc));
|
|
|
|
+ s3c24xx_init_clocks(12000000);
|
|
|
|
+ s3c24xx_init_uarts(smartq_uartcfgs, ARRAY_SIZE(smartq_uartcfgs));
|
|
|
|
+
|
|
|
|
+ smartq_lcd_mode_set();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void __init smartq_machine_init(void)
|
|
|
|
+{
|
|
|
|
+ s3c_i2c0_set_platdata(NULL);
|
|
|
|
+ s3c_hsotg_set_platdata(&smartq_hsotg_pdata);
|
|
|
|
+ s3c_hwmon_set_platdata(&smartq_hwmon_pdata);
|
|
|
|
+ s3c_sdhci1_set_platdata(&smartq_internal_hsmmc_pdata);
|
|
|
|
+ s3c_sdhci2_set_platdata(&smartq_internal_hsmmc_pdata);
|
|
|
|
+ s3c24xx_ts_set_platdata(&smartq_touchscreen_pdata);
|
|
|
|
+
|
|
|
|
+ i2c_register_board_info(0, smartq_i2c_devs,
|
|
|
|
+ ARRAY_SIZE(smartq_i2c_devs));
|
|
|
|
+
|
|
|
|
+ WARN_ON(smartq_lcd_setup_gpio());
|
|
|
|
+ WARN_ON(smartq_power_off_init());
|
|
|
|
+ WARN_ON(smartq_usb_host_init());
|
|
|
|
+ WARN_ON(smartq_usb_otg_init());
|
|
|
|
+ WARN_ON(smartq_wifi_init());
|
|
|
|
+
|
|
|
|
+ platform_add_devices(smartq_devices, ARRAY_SIZE(smartq_devices));
|
|
|
|
+}
|