1 /* 2 * Copyright (C) 2010 Samsung Electronics 3 * Minkyu Kang <mk7.kang@samsung.com> 4 * Kyungmin Park <kyungmin.park@samsung.com> 5 * 6 * See file CREDITS for list of people who contributed to this 7 * project. 8 * 9 * This program is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU General Public License as 11 * published by the Free Software Foundation; either version 2 of 12 * the License, or (at your option) any later version. 13 * 14 * This program is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * GNU General Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License 20 * along with this program; if not, write to the Free Software 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 22 * MA 02111-1307 USA 23 */ 24 25 #include <common.h> 26 #include <asm/io.h> 27 #include <asm/arch/adc.h> 28 #include <asm/arch/gpio.h> 29 #include <asm/arch/mmc.h> 30 #include <power/pmic.h> 31 #include <usb/s3c_udc.h> 32 #include <asm/arch/cpu.h> 33 #include <power/max8998_pmic.h> 34 35 DECLARE_GLOBAL_DATA_PTR; 36 37 struct exynos4_gpio_part1 *gpio1; 38 struct exynos4_gpio_part2 *gpio2; 39 unsigned int board_rev; 40 41 u32 get_board_rev(void) 42 { 43 return board_rev; 44 } 45 46 static int get_hwrev(void) 47 { 48 return board_rev & 0xFF; 49 } 50 51 static void check_hw_revision(void); 52 53 int board_init(void) 54 { 55 gpio1 = (struct exynos4_gpio_part1 *) EXYNOS4_GPIO_PART1_BASE; 56 gpio2 = (struct exynos4_gpio_part2 *) EXYNOS4_GPIO_PART2_BASE; 57 58 gd->bd->bi_arch_number = MACH_TYPE_UNIVERSAL_C210; 59 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; 60 61 #if defined(CONFIG_POWER) 62 pmic_init(I2C_5); 63 #endif 64 65 check_hw_revision(); 66 printf("HW Revision:\t0x%x\n", board_rev); 67 68 return 0; 69 } 70 71 int dram_init(void) 72 { 73 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE) + 74 get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE); 75 76 return 0; 77 } 78 79 void dram_init_banksize(void) 80 { 81 gd->bd->bi_dram[0].start = PHYS_SDRAM_1; 82 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; 83 gd->bd->bi_dram[1].start = PHYS_SDRAM_2; 84 gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE; 85 } 86 87 static unsigned short get_adc_value(int channel) 88 { 89 struct s5p_adc *adc = (struct s5p_adc *)samsung_get_base_adc(); 90 unsigned short ret = 0; 91 unsigned int reg; 92 unsigned int loop = 0; 93 94 writel(channel & 0xF, &adc->adcmux); 95 writel((1 << 14) | (49 << 6), &adc->adccon); 96 writel(1000 & 0xffff, &adc->adcdly); 97 writel(readl(&adc->adccon) | (1 << 16), &adc->adccon); /* 12 bit */ 98 udelay(10); 99 writel(readl(&adc->adccon) | (1 << 0), &adc->adccon); /* Enable */ 100 udelay(10); 101 102 do { 103 udelay(1); 104 reg = readl(&adc->adccon); 105 } while (!(reg & (1 << 15)) && (loop++ < 1000)); 106 107 ret = readl(&adc->adcdat0) & 0xFFF; 108 109 return ret; 110 } 111 112 static int adc_power_control(int on) 113 { 114 int ret; 115 struct pmic *p = pmic_get("MAX8998_PMIC"); 116 if (!p) 117 return -ENODEV; 118 119 if (pmic_probe(p)) 120 return -1; 121 122 ret = pmic_set_output(p, 123 MAX8998_REG_ONOFF1, 124 MAX8998_LDO4, !!on); 125 126 return ret; 127 } 128 129 static unsigned int get_hw_revision(void) 130 { 131 int hwrev, mode0, mode1; 132 133 adc_power_control(1); 134 135 mode0 = get_adc_value(1); /* HWREV_MODE0 */ 136 mode1 = get_adc_value(2); /* HWREV_MODE1 */ 137 138 /* 139 * XXX Always set the default hwrev as the latest board 140 * ADC = (voltage) / 3.3 * 4096 141 */ 142 hwrev = 3; 143 144 #define IS_RANGE(x, min, max) ((x) > (min) && (x) < (max)) 145 if (IS_RANGE(mode0, 80, 200) && IS_RANGE(mode1, 80, 200)) 146 hwrev = 0x0; /* 0.01V 0.01V */ 147 if (IS_RANGE(mode0, 750, 1000) && IS_RANGE(mode1, 80, 200)) 148 hwrev = 0x1; /* 610mV 0.01V */ 149 if (IS_RANGE(mode0, 1300, 1700) && IS_RANGE(mode1, 80, 200)) 150 hwrev = 0x2; /* 1.16V 0.01V */ 151 if (IS_RANGE(mode0, 2000, 2400) && IS_RANGE(mode1, 80, 200)) 152 hwrev = 0x3; /* 1.79V 0.01V */ 153 #undef IS_RANGE 154 155 debug("mode0: %d, mode1: %d, hwrev 0x%x\n", mode0, mode1, hwrev); 156 157 adc_power_control(0); 158 159 return hwrev; 160 } 161 162 static void check_hw_revision(void) 163 { 164 int hwrev; 165 166 hwrev = get_hw_revision(); 167 168 board_rev |= hwrev; 169 } 170 171 #ifdef CONFIG_DISPLAY_BOARDINFO 172 int checkboard(void) 173 { 174 puts("Board:\tUniversal C210\n"); 175 return 0; 176 } 177 #endif 178 179 #ifdef CONFIG_GENERIC_MMC 180 int board_mmc_init(bd_t *bis) 181 { 182 int i, err; 183 184 switch (get_hwrev()) { 185 case 0: 186 /* 187 * Set the low to enable LDO_EN 188 * But when you use the test board for eMMC booting 189 * you should set it HIGH since it removes the inverter 190 */ 191 /* MASSMEMORY_EN: XMDMDATA_6: GPE3[6] */ 192 s5p_gpio_direction_output(&gpio1->e3, 6, 0); 193 break; 194 default: 195 /* 196 * Default reset state is High and there's no inverter 197 * But set it as HIGH to ensure 198 */ 199 /* MASSMEMORY_EN: XMDMADDR_3: GPE1[3] */ 200 s5p_gpio_direction_output(&gpio1->e1, 3, 1); 201 break; 202 } 203 204 /* 205 * eMMC GPIO: 206 * SDR 8-bit@48MHz at MMC0 207 * GPK0[0] SD_0_CLK(2) 208 * GPK0[1] SD_0_CMD(2) 209 * GPK0[2] SD_0_CDn -> Not used 210 * GPK0[3:6] SD_0_DATA[0:3](2) 211 * GPK1[3:6] SD_0_DATA[0:3](3) 212 * 213 * DDR 4-bit@26MHz at MMC4 214 * GPK0[0] SD_4_CLK(3) 215 * GPK0[1] SD_4_CMD(3) 216 * GPK0[2] SD_4_CDn -> Not used 217 * GPK0[3:6] SD_4_DATA[0:3](3) 218 * GPK1[3:6] SD_4_DATA[4:7](4) 219 */ 220 for (i = 0; i < 7; i++) { 221 if (i == 2) 222 continue; 223 /* GPK0[0:6] special function 2 */ 224 s5p_gpio_cfg_pin(&gpio2->k0, i, 0x2); 225 /* GPK0[0:6] pull disable */ 226 s5p_gpio_set_pull(&gpio2->k0, i, GPIO_PULL_NONE); 227 /* GPK0[0:6] drv 4x */ 228 s5p_gpio_set_drv(&gpio2->k0, i, GPIO_DRV_4X); 229 } 230 231 for (i = 3; i < 7; i++) { 232 /* GPK1[3:6] special function 3 */ 233 s5p_gpio_cfg_pin(&gpio2->k1, i, 0x3); 234 /* GPK1[3:6] pull disable */ 235 s5p_gpio_set_pull(&gpio2->k1, i, GPIO_PULL_NONE); 236 /* GPK1[3:6] drv 4x */ 237 s5p_gpio_set_drv(&gpio2->k1, i, GPIO_DRV_4X); 238 } 239 240 /* T-flash detect */ 241 s5p_gpio_cfg_pin(&gpio2->x3, 4, 0xf); 242 s5p_gpio_set_pull(&gpio2->x3, 4, GPIO_PULL_UP); 243 244 /* 245 * MMC device init 246 * mmc0 : eMMC (8-bit buswidth) 247 * mmc2 : SD card (4-bit buswidth) 248 */ 249 err = s5p_mmc_init(0, 8); 250 251 /* 252 * Check the T-flash detect pin 253 * GPX3[4] T-flash detect pin 254 */ 255 if (!s5p_gpio_get_value(&gpio2->x3, 4)) { 256 /* 257 * SD card GPIO: 258 * GPK2[0] SD_2_CLK(2) 259 * GPK2[1] SD_2_CMD(2) 260 * GPK2[2] SD_2_CDn -> Not used 261 * GPK2[3:6] SD_2_DATA[0:3](2) 262 */ 263 for (i = 0; i < 7; i++) { 264 if (i == 2) 265 continue; 266 /* GPK2[0:6] special function 2 */ 267 s5p_gpio_cfg_pin(&gpio2->k2, i, 0x2); 268 /* GPK2[0:6] pull disable */ 269 s5p_gpio_set_pull(&gpio2->k2, i, GPIO_PULL_NONE); 270 /* GPK2[0:6] drv 4x */ 271 s5p_gpio_set_drv(&gpio2->k2, i, GPIO_DRV_4X); 272 } 273 err = s5p_mmc_init(2, 4); 274 } 275 276 return err; 277 278 } 279 #endif 280 281 #ifdef CONFIG_USB_GADGET 282 static int s5pc210_phy_control(int on) 283 { 284 int ret = 0; 285 struct pmic *p = pmic_get("MAX8998_PMIC"); 286 if (!p) 287 return -ENODEV; 288 289 if (pmic_probe(p)) 290 return -1; 291 292 if (on) { 293 ret |= pmic_set_output(p, 294 MAX8998_REG_BUCK_ACTIVE_DISCHARGE3, 295 MAX8998_SAFEOUT1, LDO_ON); 296 ret |= pmic_set_output(p, MAX8998_REG_ONOFF1, 297 MAX8998_LDO3, LDO_ON); 298 ret |= pmic_set_output(p, MAX8998_REG_ONOFF2, 299 MAX8998_LDO8, LDO_ON); 300 301 } else { 302 ret |= pmic_set_output(p, MAX8998_REG_ONOFF2, 303 MAX8998_LDO8, LDO_OFF); 304 ret |= pmic_set_output(p, MAX8998_REG_ONOFF1, 305 MAX8998_LDO3, LDO_OFF); 306 ret |= pmic_set_output(p, 307 MAX8998_REG_BUCK_ACTIVE_DISCHARGE3, 308 MAX8998_SAFEOUT1, LDO_OFF); 309 } 310 311 if (ret) { 312 puts("MAX8998 LDO setting error!\n"); 313 return -1; 314 } 315 316 return 0; 317 } 318 319 struct s3c_plat_otg_data s5pc210_otg_data = { 320 .phy_control = s5pc210_phy_control, 321 .regs_phy = EXYNOS4_USBPHY_BASE, 322 .regs_otg = EXYNOS4_USBOTG_BASE, 323 .usb_phy_ctrl = EXYNOS4_USBPHY_CONTROL, 324 .usb_flags = PHY0_SLEEP, 325 }; 326 #endif 327