Sumit Semwal | b7ee79a | 2011-01-24 06:21:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * OMAP2plus display device setup / initialization. |
| 3 | * |
| 4 | * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ |
| 5 | * Senthilvadivu Guruswamy |
| 6 | * Sumit Semwal |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 13 | * kind, whether express or implied; without even the implied warranty |
| 14 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | */ |
| 17 | |
Paul Gortmaker | d44b28c | 2011-07-31 10:52:44 -0400 | [diff] [blame] | 18 | #include <linux/string.h> |
Sumit Semwal | b7ee79a | 2011-01-24 06:21:54 +0000 | [diff] [blame] | 19 | #include <linux/kernel.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/io.h> |
| 23 | #include <linux/clk.h> |
| 24 | #include <linux/err.h> |
| 25 | |
Tomi Valkeinen | a0b38cc | 2011-05-11 14:05:07 +0300 | [diff] [blame] | 26 | #include <video/omapdss.h> |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 27 | #include <plat/omap_hwmod.h> |
| 28 | #include <plat/omap_device.h> |
Tomi Valkeinen | 700dee7 | 2011-05-23 15:50:47 +0300 | [diff] [blame] | 29 | #include <plat/omap-pm.h> |
Tomi Valkeinen | 13662dc | 2011-11-08 03:16:13 -0700 | [diff] [blame] | 30 | #include <plat/common.h> |
Sumit Semwal | b7ee79a | 2011-01-24 06:21:54 +0000 | [diff] [blame] | 31 | |
Mythri P K | ee9dfd8 | 2012-01-02 14:02:37 +0530 | [diff] [blame] | 32 | #include "mux.h" |
Tomi Valkeinen | dc35835 | 2011-06-15 15:22:47 +0300 | [diff] [blame] | 33 | #include "control.h" |
Archit Taneja | b923d40 | 2011-10-06 18:04:08 -0600 | [diff] [blame] | 34 | #include "display.h" |
| 35 | |
| 36 | #define DISPC_CONTROL 0x0040 |
| 37 | #define DISPC_CONTROL2 0x0238 |
| 38 | #define DISPC_IRQSTATUS 0x0018 |
| 39 | |
| 40 | #define DSS_SYSCONFIG 0x10 |
| 41 | #define DSS_SYSSTATUS 0x14 |
| 42 | #define DSS_CONTROL 0x40 |
| 43 | #define DSS_SDI_CONTROL 0x44 |
| 44 | #define DSS_PLL_CONTROL 0x48 |
| 45 | |
| 46 | #define LCD_EN_MASK (0x1 << 0) |
| 47 | #define DIGIT_EN_MASK (0x1 << 1) |
| 48 | |
| 49 | #define FRAMEDONE_IRQ_SHIFT 0 |
| 50 | #define EVSYNC_EVEN_IRQ_SHIFT 2 |
| 51 | #define EVSYNC_ODD_IRQ_SHIFT 3 |
| 52 | #define FRAMEDONE2_IRQ_SHIFT 22 |
| 53 | #define FRAMEDONETV_IRQ_SHIFT 24 |
| 54 | |
| 55 | /* |
| 56 | * FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC |
| 57 | * reset before deciding that something has gone wrong |
| 58 | */ |
| 59 | #define FRAMEDONE_IRQ_TIMEOUT 100 |
Tomi Valkeinen | dc35835 | 2011-06-15 15:22:47 +0300 | [diff] [blame] | 60 | |
Sumit Semwal | b7ee79a | 2011-01-24 06:21:54 +0000 | [diff] [blame] | 61 | static struct platform_device omap_display_device = { |
| 62 | .name = "omapdss", |
| 63 | .id = -1, |
| 64 | .dev = { |
| 65 | .platform_data = NULL, |
| 66 | }, |
| 67 | }; |
| 68 | |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 69 | struct omap_dss_hwmod_data { |
| 70 | const char *oh_name; |
| 71 | const char *dev_name; |
| 72 | const int id; |
| 73 | }; |
| 74 | |
| 75 | static const struct omap_dss_hwmod_data omap2_dss_hwmod_data[] __initdata = { |
| 76 | { "dss_core", "omapdss_dss", -1 }, |
| 77 | { "dss_dispc", "omapdss_dispc", -1 }, |
| 78 | { "dss_rfbi", "omapdss_rfbi", -1 }, |
| 79 | { "dss_venc", "omapdss_venc", -1 }, |
| 80 | }; |
| 81 | |
| 82 | static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initdata = { |
| 83 | { "dss_core", "omapdss_dss", -1 }, |
| 84 | { "dss_dispc", "omapdss_dispc", -1 }, |
| 85 | { "dss_rfbi", "omapdss_rfbi", -1 }, |
| 86 | { "dss_venc", "omapdss_venc", -1 }, |
Tomi Valkeinen | 7c68dd9 | 2011-08-03 14:00:57 +0300 | [diff] [blame] | 87 | { "dss_dsi1", "omapdss_dsi", 0 }, |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initdata = { |
| 91 | { "dss_core", "omapdss_dss", -1 }, |
| 92 | { "dss_dispc", "omapdss_dispc", -1 }, |
| 93 | { "dss_rfbi", "omapdss_rfbi", -1 }, |
| 94 | { "dss_venc", "omapdss_venc", -1 }, |
Tomi Valkeinen | 7c68dd9 | 2011-08-03 14:00:57 +0300 | [diff] [blame] | 95 | { "dss_dsi1", "omapdss_dsi", 0 }, |
| 96 | { "dss_dsi2", "omapdss_dsi", 1 }, |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 97 | { "dss_hdmi", "omapdss_hdmi", -1 }, |
| 98 | }; |
| 99 | |
Mythri P K | 9a90168 | 2012-01-02 14:02:38 +0530 | [diff] [blame^] | 100 | static void omap4_hdmi_mux_pads(enum omap_hdmi_flags flags) |
Mythri P K | ee9dfd8 | 2012-01-02 14:02:37 +0530 | [diff] [blame] | 101 | { |
Mythri P K | 9a90168 | 2012-01-02 14:02:38 +0530 | [diff] [blame^] | 102 | u32 reg; |
| 103 | u16 control_i2c_1; |
| 104 | |
Mythri P K | ee9dfd8 | 2012-01-02 14:02:37 +0530 | [diff] [blame] | 105 | /* PAD0_HDMI_HPD_PAD1_HDMI_CEC */ |
| 106 | omap_mux_init_signal("hdmi_hpd", |
| 107 | OMAP_PIN_INPUT_PULLUP); |
| 108 | omap_mux_init_signal("hdmi_cec", |
| 109 | OMAP_PIN_INPUT_PULLUP); |
| 110 | /* PAD0_HDMI_DDC_SCL_PAD1_HDMI_DDC_SDA */ |
| 111 | omap_mux_init_signal("hdmi_ddc_scl", |
| 112 | OMAP_PIN_INPUT_PULLUP); |
| 113 | omap_mux_init_signal("hdmi_ddc_sda", |
| 114 | OMAP_PIN_INPUT_PULLUP); |
Mythri P K | 9a90168 | 2012-01-02 14:02:38 +0530 | [diff] [blame^] | 115 | |
| 116 | /* |
| 117 | * CONTROL_I2C_1: HDMI_DDC_SDA_PULLUPRESX (bit 28) and |
| 118 | * HDMI_DDC_SCL_PULLUPRESX (bit 24) are set to disable |
| 119 | * internal pull up resistor. |
| 120 | */ |
| 121 | if (flags & OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP) { |
| 122 | control_i2c_1 = OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_I2C_1; |
| 123 | reg = omap4_ctrl_pad_readl(control_i2c_1); |
| 124 | reg |= (OMAP4_HDMI_DDC_SDA_PULLUPRESX_MASK | |
| 125 | OMAP4_HDMI_DDC_SCL_PULLUPRESX_MASK); |
| 126 | omap4_ctrl_pad_writel(reg, control_i2c_1); |
| 127 | } |
Mythri P K | ee9dfd8 | 2012-01-02 14:02:37 +0530 | [diff] [blame] | 128 | } |
| 129 | |
Tomi Valkeinen | dc35835 | 2011-06-15 15:22:47 +0300 | [diff] [blame] | 130 | static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes) |
| 131 | { |
| 132 | u32 enable_mask, enable_shift; |
| 133 | u32 pipd_mask, pipd_shift; |
| 134 | u32 reg; |
| 135 | |
| 136 | if (dsi_id == 0) { |
| 137 | enable_mask = OMAP4_DSI1_LANEENABLE_MASK; |
| 138 | enable_shift = OMAP4_DSI1_LANEENABLE_SHIFT; |
| 139 | pipd_mask = OMAP4_DSI1_PIPD_MASK; |
| 140 | pipd_shift = OMAP4_DSI1_PIPD_SHIFT; |
| 141 | } else if (dsi_id == 1) { |
| 142 | enable_mask = OMAP4_DSI2_LANEENABLE_MASK; |
| 143 | enable_shift = OMAP4_DSI2_LANEENABLE_SHIFT; |
| 144 | pipd_mask = OMAP4_DSI2_PIPD_MASK; |
| 145 | pipd_shift = OMAP4_DSI2_PIPD_SHIFT; |
| 146 | } else { |
| 147 | return -ENODEV; |
| 148 | } |
| 149 | |
| 150 | reg = omap4_ctrl_pad_readl(OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY); |
| 151 | |
| 152 | reg &= ~enable_mask; |
| 153 | reg &= ~pipd_mask; |
| 154 | |
| 155 | reg |= (lanes << enable_shift) & enable_mask; |
| 156 | reg |= (lanes << pipd_shift) & pipd_mask; |
| 157 | |
| 158 | omap4_ctrl_pad_writel(reg, OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY); |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
Mythri P K | 9a90168 | 2012-01-02 14:02:38 +0530 | [diff] [blame^] | 163 | int omap_hdmi_init(enum omap_hdmi_flags flags) |
Mythri P K | ee9dfd8 | 2012-01-02 14:02:37 +0530 | [diff] [blame] | 164 | { |
| 165 | if (cpu_is_omap44xx()) |
Mythri P K | 9a90168 | 2012-01-02 14:02:38 +0530 | [diff] [blame^] | 166 | omap4_hdmi_mux_pads(flags); |
Mythri P K | ee9dfd8 | 2012-01-02 14:02:37 +0530 | [diff] [blame] | 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | |
Tomi Valkeinen | 5bc416c | 2011-06-15 15:21:12 +0300 | [diff] [blame] | 171 | static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask) |
| 172 | { |
Tomi Valkeinen | dc35835 | 2011-06-15 15:22:47 +0300 | [diff] [blame] | 173 | if (cpu_is_omap44xx()) |
| 174 | return omap4_dsi_mux_pads(dsi_id, lane_mask); |
| 175 | |
Tomi Valkeinen | 5bc416c | 2011-06-15 15:21:12 +0300 | [diff] [blame] | 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask) |
| 180 | { |
Tomi Valkeinen | dc35835 | 2011-06-15 15:22:47 +0300 | [diff] [blame] | 181 | if (cpu_is_omap44xx()) |
| 182 | omap4_dsi_mux_pads(dsi_id, 0); |
Tomi Valkeinen | 5bc416c | 2011-06-15 15:21:12 +0300 | [diff] [blame] | 183 | } |
| 184 | |
Sumit Semwal | b7ee79a | 2011-01-24 06:21:54 +0000 | [diff] [blame] | 185 | int __init omap_display_init(struct omap_dss_board_info *board_data) |
| 186 | { |
| 187 | int r = 0; |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 188 | struct omap_hwmod *oh; |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 189 | struct platform_device *pdev; |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 190 | int i, oh_count; |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 191 | struct omap_display_platform_data pdata; |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 192 | const struct omap_dss_hwmod_data *curr_dss_hwmod; |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 193 | |
| 194 | memset(&pdata, 0, sizeof(pdata)); |
| 195 | |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 196 | if (cpu_is_omap24xx()) { |
| 197 | curr_dss_hwmod = omap2_dss_hwmod_data; |
| 198 | oh_count = ARRAY_SIZE(omap2_dss_hwmod_data); |
| 199 | } else if (cpu_is_omap34xx()) { |
| 200 | curr_dss_hwmod = omap3_dss_hwmod_data; |
| 201 | oh_count = ARRAY_SIZE(omap3_dss_hwmod_data); |
| 202 | } else { |
| 203 | curr_dss_hwmod = omap4_dss_hwmod_data; |
| 204 | oh_count = ARRAY_SIZE(omap4_dss_hwmod_data); |
| 205 | } |
Mayuresh Janorkar | 545376e | 2011-01-27 11:17:04 +0000 | [diff] [blame] | 206 | |
Tomi Valkeinen | 5bc416c | 2011-06-15 15:21:12 +0300 | [diff] [blame] | 207 | if (board_data->dsi_enable_pads == NULL) |
| 208 | board_data->dsi_enable_pads = omap_dsi_enable_pads; |
| 209 | if (board_data->dsi_disable_pads == NULL) |
| 210 | board_data->dsi_disable_pads = omap_dsi_disable_pads; |
| 211 | |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 212 | pdata.board_data = board_data; |
Tomi Valkeinen | 700dee7 | 2011-05-23 15:50:47 +0300 | [diff] [blame] | 213 | pdata.board_data->get_context_loss_count = |
| 214 | omap_pm_get_dev_context_loss_count; |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 215 | |
| 216 | for (i = 0; i < oh_count; i++) { |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 217 | oh = omap_hwmod_lookup(curr_dss_hwmod[i].oh_name); |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 218 | if (!oh) { |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 219 | pr_err("Could not look up %s\n", |
| 220 | curr_dss_hwmod[i].oh_name); |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 221 | return -ENODEV; |
| 222 | } |
Semwal, Sumit | fd4b34f | 2011-03-01 02:42:13 -0600 | [diff] [blame] | 223 | |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 224 | pdev = omap_device_build(curr_dss_hwmod[i].dev_name, |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 225 | curr_dss_hwmod[i].id, oh, &pdata, |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 226 | sizeof(struct omap_display_platform_data), |
Benoit Cousson | f718e2c | 2011-08-10 15:30:09 +0200 | [diff] [blame] | 227 | NULL, 0, 0); |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 228 | |
Kevin Hilman | 3528c58 | 2011-07-21 13:48:45 -0700 | [diff] [blame] | 229 | if (WARN((IS_ERR(pdev)), "Could not build omap_device for %s\n", |
Archit Taneja | 179e045 | 2011-04-18 09:32:13 +0530 | [diff] [blame] | 230 | curr_dss_hwmod[i].oh_name)) |
Senthilvadivu Guruswamy | cf07f53 | 2011-01-24 06:21:56 +0000 | [diff] [blame] | 231 | return -ENODEV; |
| 232 | } |
Sumit Semwal | b7ee79a | 2011-01-24 06:21:54 +0000 | [diff] [blame] | 233 | omap_display_device.dev.platform_data = board_data; |
| 234 | |
| 235 | r = platform_device_register(&omap_display_device); |
| 236 | if (r < 0) |
| 237 | printk(KERN_ERR "Unable to register OMAP-Display device\n"); |
| 238 | |
| 239 | return r; |
| 240 | } |
Tomi Valkeinen | 13662dc | 2011-11-08 03:16:13 -0700 | [diff] [blame] | 241 | |
Archit Taneja | b923d40 | 2011-10-06 18:04:08 -0600 | [diff] [blame] | 242 | static void dispc_disable_outputs(void) |
| 243 | { |
| 244 | u32 v, irq_mask = 0; |
| 245 | bool lcd_en, digit_en, lcd2_en = false; |
| 246 | int i; |
| 247 | struct omap_dss_dispc_dev_attr *da; |
| 248 | struct omap_hwmod *oh; |
| 249 | |
| 250 | oh = omap_hwmod_lookup("dss_dispc"); |
| 251 | if (!oh) { |
| 252 | WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod\n"); |
| 253 | return; |
| 254 | } |
| 255 | |
| 256 | if (!oh->dev_attr) { |
| 257 | pr_err("display: could not disable outputs during reset due to missing dev_attr\n"); |
| 258 | return; |
| 259 | } |
| 260 | |
| 261 | da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr; |
| 262 | |
| 263 | /* store value of LCDENABLE and DIGITENABLE bits */ |
| 264 | v = omap_hwmod_read(oh, DISPC_CONTROL); |
| 265 | lcd_en = v & LCD_EN_MASK; |
| 266 | digit_en = v & DIGIT_EN_MASK; |
| 267 | |
| 268 | /* store value of LCDENABLE for LCD2 */ |
| 269 | if (da->manager_count > 2) { |
| 270 | v = omap_hwmod_read(oh, DISPC_CONTROL2); |
| 271 | lcd2_en = v & LCD_EN_MASK; |
| 272 | } |
| 273 | |
| 274 | if (!(lcd_en | digit_en | lcd2_en)) |
| 275 | return; /* no managers currently enabled */ |
| 276 | |
| 277 | /* |
| 278 | * If any manager was enabled, we need to disable it before |
| 279 | * DSS clocks are disabled or DISPC module is reset |
| 280 | */ |
| 281 | if (lcd_en) |
| 282 | irq_mask |= 1 << FRAMEDONE_IRQ_SHIFT; |
| 283 | |
| 284 | if (digit_en) { |
| 285 | if (da->has_framedonetv_irq) { |
| 286 | irq_mask |= 1 << FRAMEDONETV_IRQ_SHIFT; |
| 287 | } else { |
| 288 | irq_mask |= 1 << EVSYNC_EVEN_IRQ_SHIFT | |
| 289 | 1 << EVSYNC_ODD_IRQ_SHIFT; |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | if (lcd2_en) |
| 294 | irq_mask |= 1 << FRAMEDONE2_IRQ_SHIFT; |
| 295 | |
| 296 | /* |
| 297 | * clear any previous FRAMEDONE, FRAMEDONETV, |
| 298 | * EVSYNC_EVEN/ODD or FRAMEDONE2 interrupts |
| 299 | */ |
| 300 | omap_hwmod_write(irq_mask, oh, DISPC_IRQSTATUS); |
| 301 | |
| 302 | /* disable LCD and TV managers */ |
| 303 | v = omap_hwmod_read(oh, DISPC_CONTROL); |
| 304 | v &= ~(LCD_EN_MASK | DIGIT_EN_MASK); |
| 305 | omap_hwmod_write(v, oh, DISPC_CONTROL); |
| 306 | |
| 307 | /* disable LCD2 manager */ |
| 308 | if (da->manager_count > 2) { |
| 309 | v = omap_hwmod_read(oh, DISPC_CONTROL2); |
| 310 | v &= ~LCD_EN_MASK; |
| 311 | omap_hwmod_write(v, oh, DISPC_CONTROL2); |
| 312 | } |
| 313 | |
| 314 | i = 0; |
| 315 | while ((omap_hwmod_read(oh, DISPC_IRQSTATUS) & irq_mask) != |
| 316 | irq_mask) { |
| 317 | i++; |
| 318 | if (i > FRAMEDONE_IRQ_TIMEOUT) { |
| 319 | pr_err("didn't get FRAMEDONE1/2 or TV interrupt\n"); |
| 320 | break; |
| 321 | } |
| 322 | mdelay(1); |
| 323 | } |
| 324 | } |
| 325 | |
Tomi Valkeinen | 13662dc | 2011-11-08 03:16:13 -0700 | [diff] [blame] | 326 | #define MAX_MODULE_SOFTRESET_WAIT 10000 |
| 327 | int omap_dss_reset(struct omap_hwmod *oh) |
| 328 | { |
| 329 | struct omap_hwmod_opt_clk *oc; |
| 330 | int c = 0; |
| 331 | int i, r; |
| 332 | |
| 333 | if (!(oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)) { |
| 334 | pr_err("dss_core: hwmod data doesn't contain reset data\n"); |
| 335 | return -EINVAL; |
| 336 | } |
| 337 | |
| 338 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
| 339 | if (oc->_clk) |
| 340 | clk_enable(oc->_clk); |
| 341 | |
Archit Taneja | b923d40 | 2011-10-06 18:04:08 -0600 | [diff] [blame] | 342 | dispc_disable_outputs(); |
| 343 | |
| 344 | /* clear SDI registers */ |
| 345 | if (cpu_is_omap3430()) { |
| 346 | omap_hwmod_write(0x0, oh, DSS_SDI_CONTROL); |
| 347 | omap_hwmod_write(0x0, oh, DSS_PLL_CONTROL); |
| 348 | } |
| 349 | |
| 350 | /* |
| 351 | * clear DSS_CONTROL register to switch DSS clock sources to |
| 352 | * PRCM clock, if any |
| 353 | */ |
| 354 | omap_hwmod_write(0x0, oh, DSS_CONTROL); |
| 355 | |
Tomi Valkeinen | 13662dc | 2011-11-08 03:16:13 -0700 | [diff] [blame] | 356 | omap_test_timeout((omap_hwmod_read(oh, oh->class->sysc->syss_offs) |
| 357 | & SYSS_RESETDONE_MASK), |
| 358 | MAX_MODULE_SOFTRESET_WAIT, c); |
| 359 | |
| 360 | if (c == MAX_MODULE_SOFTRESET_WAIT) |
| 361 | pr_warning("dss_core: waiting for reset to finish failed\n"); |
| 362 | else |
| 363 | pr_debug("dss_core: softreset done\n"); |
| 364 | |
| 365 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
| 366 | if (oc->_clk) |
| 367 | clk_disable(oc->_clk); |
| 368 | |
| 369 | r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0; |
| 370 | |
| 371 | return r; |
| 372 | } |