Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 Samsung Electronics |
| 3 | * Minkyu Kang <mk7.kang@samsung.com> |
| 4 | * Kyungmin Park <kyungmin.park@samsung.com> |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 10 | #include <spi.h> |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 11 | #include <lcd.h> |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 12 | #include <asm/io.h> |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 13 | #include <asm/gpio.h> |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 14 | #include <asm/arch/adc.h> |
Piotr Wilczek | ea7991b | 2012-09-20 00:19:59 +0000 | [diff] [blame] | 15 | #include <asm/arch/pinmux.h> |
Piotr Wilczek | 11a4479 | 2012-09-20 00:20:00 +0000 | [diff] [blame] | 16 | #include <asm/arch/watchdog.h> |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 17 | #include <ld9040.h> |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 18 | #include <power/pmic.h> |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 19 | #include <usb.h> |
Lukasz Majewski | ddc7e54 | 2011-12-15 10:32:12 +0100 | [diff] [blame] | 20 | #include <usb/s3c_udc.h> |
| 21 | #include <asm/arch/cpu.h> |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 22 | #include <power/max8998_pmic.h> |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 23 | #include <libtizen.h> |
Przemyslaw Marczak | 82b0a055 | 2014-01-22 11:24:20 +0100 | [diff] [blame] | 24 | #include <samsung/misc.h> |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 25 | #include <usb_mass_storage.h> |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 29 | unsigned int board_rev; |
| 30 | |
| 31 | u32 get_board_rev(void) |
| 32 | { |
| 33 | return board_rev; |
| 34 | } |
| 35 | |
| 36 | static int get_hwrev(void) |
| 37 | { |
| 38 | return board_rev & 0xFF; |
| 39 | } |
| 40 | |
Minkyu Kang | 48e91ca | 2012-12-09 20:50:11 +0000 | [diff] [blame] | 41 | static void init_pmic_lcd(void); |
| 42 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 43 | int exynos_power_init(void) |
Łukasz Majewski | f5a7004 | 2012-11-13 03:22:17 +0000 | [diff] [blame] | 44 | { |
| 45 | int ret; |
| 46 | |
Łukasz Majewski | 2936df1 | 2013-08-16 15:33:33 +0200 | [diff] [blame] | 47 | /* |
| 48 | * For PMIC the I2C bus is named as I2C5, but it is connected |
| 49 | * to logical I2C adapter 0 |
| 50 | */ |
Piotr Wilczek | c47817b | 2014-01-14 08:15:07 +0100 | [diff] [blame] | 51 | ret = pmic_init(I2C_0); |
Łukasz Majewski | f5a7004 | 2012-11-13 03:22:17 +0000 | [diff] [blame] | 52 | if (ret) |
| 53 | return ret; |
| 54 | |
Minkyu Kang | 48e91ca | 2012-12-09 20:50:11 +0000 | [diff] [blame] | 55 | init_pmic_lcd(); |
| 56 | |
Łukasz Majewski | f5a7004 | 2012-11-13 03:22:17 +0000 | [diff] [blame] | 57 | return 0; |
| 58 | } |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 59 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 60 | static unsigned short get_adc_value(int channel) |
| 61 | { |
| 62 | struct s5p_adc *adc = (struct s5p_adc *)samsung_get_base_adc(); |
| 63 | unsigned short ret = 0; |
| 64 | unsigned int reg; |
| 65 | unsigned int loop = 0; |
| 66 | |
| 67 | writel(channel & 0xF, &adc->adcmux); |
| 68 | writel((1 << 14) | (49 << 6), &adc->adccon); |
| 69 | writel(1000 & 0xffff, &adc->adcdly); |
| 70 | writel(readl(&adc->adccon) | (1 << 16), &adc->adccon); /* 12 bit */ |
| 71 | udelay(10); |
| 72 | writel(readl(&adc->adccon) | (1 << 0), &adc->adccon); /* Enable */ |
| 73 | udelay(10); |
| 74 | |
| 75 | do { |
| 76 | udelay(1); |
| 77 | reg = readl(&adc->adccon); |
| 78 | } while (!(reg & (1 << 15)) && (loop++ < 1000)); |
| 79 | |
| 80 | ret = readl(&adc->adcdat0) & 0xFFF; |
| 81 | |
| 82 | return ret; |
| 83 | } |
| 84 | |
Łukasz Majewski | 4d86bf0 | 2012-03-26 21:53:48 +0000 | [diff] [blame] | 85 | static int adc_power_control(int on) |
| 86 | { |
| 87 | int ret; |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 88 | struct pmic *p = pmic_get("MAX8998_PMIC"); |
| 89 | if (!p) |
| 90 | return -ENODEV; |
Łukasz Majewski | 4d86bf0 | 2012-03-26 21:53:48 +0000 | [diff] [blame] | 91 | |
| 92 | if (pmic_probe(p)) |
| 93 | return -1; |
| 94 | |
| 95 | ret = pmic_set_output(p, |
| 96 | MAX8998_REG_ONOFF1, |
| 97 | MAX8998_LDO4, !!on); |
| 98 | |
| 99 | return ret; |
| 100 | } |
| 101 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 102 | static unsigned int get_hw_revision(void) |
| 103 | { |
| 104 | int hwrev, mode0, mode1; |
| 105 | |
Łukasz Majewski | 4d86bf0 | 2012-03-26 21:53:48 +0000 | [diff] [blame] | 106 | adc_power_control(1); |
| 107 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 108 | mode0 = get_adc_value(1); /* HWREV_MODE0 */ |
| 109 | mode1 = get_adc_value(2); /* HWREV_MODE1 */ |
| 110 | |
| 111 | /* |
| 112 | * XXX Always set the default hwrev as the latest board |
| 113 | * ADC = (voltage) / 3.3 * 4096 |
| 114 | */ |
| 115 | hwrev = 3; |
| 116 | |
| 117 | #define IS_RANGE(x, min, max) ((x) > (min) && (x) < (max)) |
| 118 | if (IS_RANGE(mode0, 80, 200) && IS_RANGE(mode1, 80, 200)) |
| 119 | hwrev = 0x0; /* 0.01V 0.01V */ |
| 120 | if (IS_RANGE(mode0, 750, 1000) && IS_RANGE(mode1, 80, 200)) |
| 121 | hwrev = 0x1; /* 610mV 0.01V */ |
| 122 | if (IS_RANGE(mode0, 1300, 1700) && IS_RANGE(mode1, 80, 200)) |
| 123 | hwrev = 0x2; /* 1.16V 0.01V */ |
| 124 | if (IS_RANGE(mode0, 2000, 2400) && IS_RANGE(mode1, 80, 200)) |
| 125 | hwrev = 0x3; /* 1.79V 0.01V */ |
| 126 | #undef IS_RANGE |
| 127 | |
| 128 | debug("mode0: %d, mode1: %d, hwrev 0x%x\n", mode0, mode1, hwrev); |
| 129 | |
Łukasz Majewski | 4d86bf0 | 2012-03-26 21:53:48 +0000 | [diff] [blame] | 130 | adc_power_control(0); |
| 131 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 132 | return hwrev; |
| 133 | } |
| 134 | |
| 135 | static void check_hw_revision(void) |
| 136 | { |
| 137 | int hwrev; |
| 138 | |
| 139 | hwrev = get_hw_revision(); |
| 140 | |
| 141 | board_rev |= hwrev; |
| 142 | } |
| 143 | |
Lukasz Majewski | ddc7e54 | 2011-12-15 10:32:12 +0100 | [diff] [blame] | 144 | #ifdef CONFIG_USB_GADGET |
| 145 | static int s5pc210_phy_control(int on) |
| 146 | { |
Anatolij Gustschin | e03492c | 2011-12-19 04:20:04 +0000 | [diff] [blame] | 147 | int ret = 0; |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 148 | struct pmic *p = pmic_get("MAX8998_PMIC"); |
| 149 | if (!p) |
| 150 | return -ENODEV; |
Lukasz Majewski | ddc7e54 | 2011-12-15 10:32:12 +0100 | [diff] [blame] | 151 | |
| 152 | if (pmic_probe(p)) |
| 153 | return -1; |
| 154 | |
| 155 | if (on) { |
| 156 | ret |= pmic_set_output(p, |
| 157 | MAX8998_REG_BUCK_ACTIVE_DISCHARGE3, |
| 158 | MAX8998_SAFEOUT1, LDO_ON); |
| 159 | ret |= pmic_set_output(p, MAX8998_REG_ONOFF1, |
| 160 | MAX8998_LDO3, LDO_ON); |
| 161 | ret |= pmic_set_output(p, MAX8998_REG_ONOFF2, |
| 162 | MAX8998_LDO8, LDO_ON); |
| 163 | |
| 164 | } else { |
| 165 | ret |= pmic_set_output(p, MAX8998_REG_ONOFF2, |
| 166 | MAX8998_LDO8, LDO_OFF); |
| 167 | ret |= pmic_set_output(p, MAX8998_REG_ONOFF1, |
| 168 | MAX8998_LDO3, LDO_OFF); |
| 169 | ret |= pmic_set_output(p, |
| 170 | MAX8998_REG_BUCK_ACTIVE_DISCHARGE3, |
| 171 | MAX8998_SAFEOUT1, LDO_OFF); |
| 172 | } |
| 173 | |
| 174 | if (ret) { |
| 175 | puts("MAX8998 LDO setting error!\n"); |
| 176 | return -1; |
| 177 | } |
| 178 | |
| 179 | return 0; |
| 180 | } |
| 181 | |
Marek Vasut | c098287 | 2015-12-04 02:23:29 +0100 | [diff] [blame^] | 182 | struct dwc2_plat_otg_data s5pc210_otg_data = { |
Lukasz Majewski | ddc7e54 | 2011-12-15 10:32:12 +0100 | [diff] [blame] | 183 | .phy_control = s5pc210_phy_control, |
| 184 | .regs_phy = EXYNOS4_USBPHY_BASE, |
| 185 | .regs_otg = EXYNOS4_USBOTG_BASE, |
| 186 | .usb_phy_ctrl = EXYNOS4_USBPHY_CONTROL, |
| 187 | .usb_flags = PHY0_SLEEP, |
| 188 | }; |
| 189 | #endif |
Piotr Wilczek | 11a4479 | 2012-09-20 00:20:00 +0000 | [diff] [blame] | 190 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 191 | int board_usb_init(int index, enum usb_init_type init) |
| 192 | { |
| 193 | debug("USB_udc_probe\n"); |
| 194 | return s3c_udc_probe(&s5pc210_otg_data); |
| 195 | } |
| 196 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 197 | int exynos_early_init_f(void) |
Piotr Wilczek | 11a4479 | 2012-09-20 00:20:00 +0000 | [diff] [blame] | 198 | { |
| 199 | wdt_stop(); |
| 200 | |
| 201 | return 0; |
| 202 | } |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 203 | |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 204 | static void init_pmic_lcd(void) |
| 205 | { |
| 206 | unsigned char val; |
| 207 | int ret = 0; |
| 208 | |
Minkyu Kang | 48e91ca | 2012-12-09 20:50:11 +0000 | [diff] [blame] | 209 | struct pmic *p = pmic_get("MAX8998_PMIC"); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 210 | |
Minkyu Kang | fbef8e6 | 2012-12-10 22:43:57 +0900 | [diff] [blame] | 211 | if (!p) |
| 212 | return; |
| 213 | |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 214 | if (pmic_probe(p)) |
| 215 | return; |
| 216 | |
| 217 | /* LDO7 1.8V */ |
| 218 | val = 0x02; /* (1800 - 1600) / 100; */ |
| 219 | ret |= pmic_reg_write(p, MAX8998_REG_LDO7, val); |
| 220 | |
| 221 | /* LDO17 3.0V */ |
| 222 | val = 0xe; /* (3000 - 1600) / 100; */ |
| 223 | ret |= pmic_reg_write(p, MAX8998_REG_LDO17, val); |
| 224 | |
| 225 | /* Disable unneeded regulators */ |
| 226 | /* |
| 227 | * ONOFF1 |
| 228 | * Buck1 ON, Buck2 OFF, Buck3 ON, Buck4 ON |
| 229 | * LDO2 ON, LDO3 OFF, LDO4 OFF, LDO5 ON |
| 230 | */ |
| 231 | val = 0xB9; |
| 232 | ret |= pmic_reg_write(p, MAX8998_REG_ONOFF1, val); |
| 233 | |
| 234 | /* ONOFF2 |
| 235 | * LDO6 OFF, LDO7 ON, LDO8 OFF, LDO9 ON, |
| 236 | * LDO10 OFF, LDO11 OFF, LDO12 OFF, LDO13 OFF |
| 237 | */ |
| 238 | val = 0x50; |
| 239 | ret |= pmic_reg_write(p, MAX8998_REG_ONOFF2, val); |
| 240 | |
| 241 | /* ONOFF3 |
| 242 | * LDO14 OFF, LDO15 OFF, LGO16 OFF, LDO17 OFF |
| 243 | * EPWRHOLD OFF, EBATTMON OFF, ELBCNFG2 OFF, ELBCNFG1 OFF |
| 244 | */ |
| 245 | val = 0x00; |
| 246 | ret |= pmic_reg_write(p, MAX8998_REG_ONOFF3, val); |
| 247 | |
| 248 | if (ret) |
| 249 | puts("LCD pmic initialisation error!\n"); |
| 250 | } |
| 251 | |
Ajay Kumar | 29fd570 | 2013-02-21 23:52:57 +0000 | [diff] [blame] | 252 | void exynos_cfg_lcd_gpio(void) |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 253 | { |
| 254 | unsigned int i, f3_end = 4; |
| 255 | |
| 256 | for (i = 0; i < 8; i++) { |
| 257 | /* set GPF0,1,2[0:7] for RGB Interface and Data lines (32bit) */ |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 258 | gpio_cfg_pin(EXYNOS4_GPIO_F00 + i, S5P_GPIO_FUNC(2)); |
| 259 | gpio_cfg_pin(EXYNOS4_GPIO_F10 + i, S5P_GPIO_FUNC(2)); |
| 260 | gpio_cfg_pin(EXYNOS4_GPIO_F20 + i, S5P_GPIO_FUNC(2)); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 261 | /* pull-up/down disable */ |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 262 | gpio_set_pull(EXYNOS4_GPIO_F00 + i, S5P_GPIO_PULL_NONE); |
| 263 | gpio_set_pull(EXYNOS4_GPIO_F10 + i, S5P_GPIO_PULL_NONE); |
| 264 | gpio_set_pull(EXYNOS4_GPIO_F20 + i, S5P_GPIO_PULL_NONE); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 265 | |
| 266 | /* drive strength to max (24bit) */ |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 267 | gpio_set_drv(EXYNOS4_GPIO_F00 + i, S5P_GPIO_DRV_4X); |
| 268 | gpio_set_rate(EXYNOS4_GPIO_F00 + i, S5P_GPIO_DRV_SLOW); |
| 269 | gpio_set_drv(EXYNOS4_GPIO_F10 + i, S5P_GPIO_DRV_4X); |
| 270 | gpio_set_rate(EXYNOS4_GPIO_F10 + i, S5P_GPIO_DRV_SLOW); |
| 271 | gpio_set_drv(EXYNOS4_GPIO_F20 + i, S5P_GPIO_DRV_4X); |
| 272 | gpio_set_rate(EXYNOS4_GPIO_F00 + i, S5P_GPIO_DRV_SLOW); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 275 | for (i = EXYNOS4_GPIO_F30; i < (EXYNOS4_GPIO_F30 + f3_end); i++) { |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 276 | /* set GPF3[0:3] for RGB Interface and Data lines (32bit) */ |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 277 | gpio_cfg_pin(i, S5P_GPIO_FUNC(2)); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 278 | /* pull-up/down disable */ |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 279 | gpio_set_pull(i, S5P_GPIO_PULL_NONE); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 280 | /* drive strength to max (24bit) */ |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 281 | gpio_set_drv(i, S5P_GPIO_DRV_4X); |
| 282 | gpio_set_rate(i, S5P_GPIO_DRV_SLOW); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | /* gpio pad configuration for LCD reset. */ |
Simon Glass | 7f19610 | 2014-10-20 19:48:39 -0600 | [diff] [blame] | 286 | gpio_request(EXYNOS4_GPIO_Y45, "lcd_reset"); |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 287 | gpio_cfg_pin(EXYNOS4_GPIO_Y45, S5P_GPIO_OUTPUT); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 290 | int mipi_power(void) |
| 291 | { |
| 292 | return 0; |
| 293 | } |
| 294 | |
Ajay Kumar | 29fd570 | 2013-02-21 23:52:57 +0000 | [diff] [blame] | 295 | void exynos_reset_lcd(void) |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 296 | { |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 297 | gpio_set_value(EXYNOS4_GPIO_Y45, 1); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 298 | udelay(10000); |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 299 | gpio_set_value(EXYNOS4_GPIO_Y45, 0); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 300 | udelay(10000); |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 301 | gpio_set_value(EXYNOS4_GPIO_Y45, 1); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 302 | udelay(100); |
| 303 | } |
| 304 | |
Ajay Kumar | 29fd570 | 2013-02-21 23:52:57 +0000 | [diff] [blame] | 305 | void exynos_lcd_power_on(void) |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 306 | { |
Minkyu Kang | 48e91ca | 2012-12-09 20:50:11 +0000 | [diff] [blame] | 307 | struct pmic *p = pmic_get("MAX8998_PMIC"); |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 308 | |
Minkyu Kang | fbef8e6 | 2012-12-10 22:43:57 +0900 | [diff] [blame] | 309 | if (!p) |
| 310 | return; |
| 311 | |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 312 | if (pmic_probe(p)) |
| 313 | return; |
| 314 | |
| 315 | pmic_set_output(p, MAX8998_REG_ONOFF3, MAX8998_LDO17, LDO_ON); |
| 316 | pmic_set_output(p, MAX8998_REG_ONOFF2, MAX8998_LDO7, LDO_ON); |
| 317 | } |
| 318 | |
Ajay Kumar | 29fd570 | 2013-02-21 23:52:57 +0000 | [diff] [blame] | 319 | void exynos_cfg_ldo(void) |
| 320 | { |
| 321 | ld9040_cfg_ldo(); |
| 322 | } |
| 323 | |
| 324 | void exynos_enable_ldo(unsigned int onoff) |
| 325 | { |
| 326 | ld9040_enable_ldo(onoff); |
| 327 | } |
| 328 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 329 | int exynos_init(void) |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 330 | { |
Przemyslaw Marczak | 4381aad | 2014-10-24 17:45:03 +0200 | [diff] [blame] | 331 | char buf[16]; |
| 332 | |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 333 | gd->bd->bi_arch_number = MACH_TYPE_UNIVERSAL_C210; |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 334 | |
| 335 | switch (get_hwrev()) { |
| 336 | case 0: |
| 337 | /* |
| 338 | * Set the low to enable LDO_EN |
| 339 | * But when you use the test board for eMMC booting |
| 340 | * you should set it HIGH since it removes the inverter |
| 341 | */ |
| 342 | /* MASSMEMORY_EN: XMDMDATA_6: GPE3[6] */ |
Simon Glass | 7f19610 | 2014-10-20 19:48:39 -0600 | [diff] [blame] | 343 | gpio_request(EXYNOS4_GPIO_E36, "ldo_en"); |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 344 | gpio_direction_output(EXYNOS4_GPIO_E36, 0); |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 345 | break; |
| 346 | default: |
| 347 | /* |
| 348 | * Default reset state is High and there's no inverter |
| 349 | * But set it as HIGH to ensure |
| 350 | */ |
| 351 | /* MASSMEMORY_EN: XMDMADDR_3: GPE1[3] */ |
Simon Glass | 7f19610 | 2014-10-20 19:48:39 -0600 | [diff] [blame] | 352 | gpio_request(EXYNOS4_GPIO_E13, "massmemory_en"); |
Akshay Saraswat | f6ae1ca | 2014-05-13 10:30:14 +0530 | [diff] [blame] | 353 | gpio_direction_output(EXYNOS4_GPIO_E13, 1); |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 354 | break; |
| 355 | } |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 356 | |
Przemyslaw Marczak | 4381aad | 2014-10-24 17:45:03 +0200 | [diff] [blame] | 357 | /* Request soft I2C gpios */ |
| 358 | sprintf(buf, "soft_i2c_scl"); |
| 359 | gpio_request(CONFIG_SOFT_I2C_GPIO_SCL, buf); |
| 360 | |
| 361 | sprintf(buf, "soft_i2c_sda"); |
| 362 | gpio_request(CONFIG_SOFT_I2C_GPIO_SDA, buf); |
| 363 | |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 364 | check_hw_revision(); |
| 365 | printf("HW Revision:\t0x%x\n", board_rev); |
| 366 | |
| 367 | return 0; |
| 368 | } |
Przemyslaw Marczak | 679549d | 2014-01-22 11:24:12 +0100 | [diff] [blame] | 369 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 370 | void exynos_lcd_misc_init(vidinfo_t *vid) |
Przemyslaw Marczak | 679549d | 2014-01-22 11:24:12 +0100 | [diff] [blame] | 371 | { |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 372 | #ifdef CONFIG_TIZEN |
| 373 | get_tizen_logo_info(vid); |
Piotr Wilczek | 815a607 | 2014-01-22 15:54:34 +0100 | [diff] [blame] | 374 | #endif |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 375 | |
| 376 | /* for LD9040. */ |
| 377 | vid->pclk_name = 1; /* MPLL */ |
| 378 | vid->sclk_div = 1; |
| 379 | |
| 380 | setenv("lcdinfo", "lcd=ld9040"); |
Przemyslaw Marczak | 679549d | 2014-01-22 11:24:12 +0100 | [diff] [blame] | 381 | } |