xref: /rk3399_rockchip-uboot/board/ti/beagle/beagle.c (revision 3ecfa9525c2d78a9a8d257a7fd664f61dd10fe21)
1 /*
2  * (C) Copyright 2004-2008
3  * Texas Instruments, <www.ti.com>
4  *
5  * Author :
6  *	Sunil Kumar <sunilsaini05@gmail.com>
7  *	Shashi Ranjan <shashiranjanmca05@gmail.com>
8  *
9  * Derived from Beagle Board and 3430 SDP code by
10  *	Richard Woodruff <r-woodruff2@ti.com>
11  *	Syed Mohammed Khasim <khasim@ti.com>
12  *
13  *
14  * See file CREDITS for list of people who contributed to this
15  * project.
16  *
17  * This program is free software; you can redistribute it and/or
18  * modify it under the terms of the GNU General Public License as
19  * published by the Free Software Foundation; either version 2 of
20  * the License, or (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30  * MA 02111-1307 USA
31  */
32 #include <common.h>
33 #ifdef CONFIG_STATUS_LED
34 #include <status_led.h>
35 #endif
36 #include <twl4030.h>
37 #include <asm/io.h>
38 #include <asm/arch/mmc_host_def.h>
39 #include <asm/arch/mux.h>
40 #include <asm/arch/sys_proto.h>
41 #include <asm/arch/gpio.h>
42 #include <asm/mach-types.h>
43 #ifdef CONFIG_USB_EHCI
44 #include <usb.h>
45 #include <asm/arch/clocks.h>
46 #include <asm/arch/clocks_omap3.h>
47 #include <asm/arch/ehci_omap3.h>
48 /* from drivers/usb/host/ehci-core.h */
49 extern struct ehci_hccr *hccr;
50 extern volatile struct ehci_hcor *hcor;
51 #endif
52 #include "beagle.h"
53 #include <command.h>
54 
55 #define pr_debug(fmt, args...) debug(fmt, ##args)
56 
57 #define TWL4030_I2C_BUS			0
58 #define EXPANSION_EEPROM_I2C_BUS	1
59 #define EXPANSION_EEPROM_I2C_ADDRESS	0x50
60 
61 #define TINCANTOOLS_ZIPPY		0x01000100
62 #define TINCANTOOLS_ZIPPY2		0x02000100
63 #define TINCANTOOLS_TRAINER		0x04000100
64 #define TINCANTOOLS_SHOWDOG		0x03000100
65 #define KBADC_BEAGLEFPGA		0x01000600
66 #define LW_BEAGLETOUCH			0x01000700
67 #define BRAINMUX_LCDOG			0x01000800
68 #define BRAINMUX_LCDOGTOUCH		0x02000800
69 #define BBTOYS_WIFI			0x01000B00
70 #define BBTOYS_VGA			0x02000B00
71 #define BBTOYS_LCD			0x03000B00
72 #define BEAGLE_NO_EEPROM		0xffffffff
73 
74 DECLARE_GLOBAL_DATA_PTR;
75 
76 static struct {
77 	unsigned int device_vendor;
78 	unsigned char revision;
79 	unsigned char content;
80 	char fab_revision[8];
81 	char env_var[16];
82 	char env_setting[64];
83 } expansion_config;
84 
85 /*
86  * Routine: board_init
87  * Description: Early hardware init.
88  */
89 int board_init(void)
90 {
91 	gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
92 	/* board id for Linux */
93 	gd->bd->bi_arch_number = MACH_TYPE_OMAP3_BEAGLE;
94 	/* boot param addr */
95 	gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
96 
97 #if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
98 	status_led_set (STATUS_LED_BOOT, STATUS_LED_ON);
99 #endif
100 
101 	return 0;
102 }
103 
104 /*
105  * Routine: get_board_revision
106  * Description: Detect if we are running on a Beagle revision Ax/Bx,
107  *		C1/2/3, C4 or xM. This can be done by reading
108  *		the level of GPIO173, GPIO172 and GPIO171. This should
109  *		result in
110  *		GPIO173, GPIO172, GPIO171: 1 1 1 => Ax/Bx
111  *		GPIO173, GPIO172, GPIO171: 1 1 0 => C1/2/3
112  *		GPIO173, GPIO172, GPIO171: 1 0 1 => C4
113  *		GPIO173, GPIO172, GPIO171: 0 0 0 => xM
114  */
115 int get_board_revision(void)
116 {
117 	int revision;
118 
119 	if (!omap_request_gpio(171) &&
120 	    !omap_request_gpio(172) &&
121 	    !omap_request_gpio(173)) {
122 
123 		omap_set_gpio_direction(171, 1);
124 		omap_set_gpio_direction(172, 1);
125 		omap_set_gpio_direction(173, 1);
126 
127 		revision = omap_get_gpio_datain(173) << 2 |
128 			   omap_get_gpio_datain(172) << 1 |
129 			   omap_get_gpio_datain(171);
130 
131 		omap_free_gpio(171);
132 		omap_free_gpio(172);
133 		omap_free_gpio(173);
134 	} else {
135 		printf("Error: unable to acquire board revision GPIOs\n");
136 		revision = -1;
137 	}
138 
139 	return revision;
140 }
141 
142 /*
143  * Routine: get_expansion_id
144  * Description: This function checks for expansion board by checking I2C
145  *		bus 1 for the availability of an AT24C01B serial EEPROM.
146  *		returns the device_vendor field from the EEPROM
147  */
148 unsigned int get_expansion_id(void)
149 {
150 	i2c_set_bus_num(EXPANSION_EEPROM_I2C_BUS);
151 
152 	/* return BEAGLE_NO_EEPROM if eeprom doesn't respond */
153 	if (i2c_probe(EXPANSION_EEPROM_I2C_ADDRESS) == 1) {
154 		i2c_set_bus_num(TWL4030_I2C_BUS);
155 		return BEAGLE_NO_EEPROM;
156 	}
157 
158 	/* read configuration data */
159 	i2c_read(EXPANSION_EEPROM_I2C_ADDRESS, 0, 1, (u8 *)&expansion_config,
160 		 sizeof(expansion_config));
161 
162 	i2c_set_bus_num(TWL4030_I2C_BUS);
163 
164 	return expansion_config.device_vendor;
165 }
166 
167 /*
168  * Configure DSS to display background color on DVID
169  * Configure VENC to display color bar on S-Video
170  */
171 void beagle_display_init(void)
172 {
173 	omap3_dss_venc_config(&venc_config_std_tv, VENC_HEIGHT, VENC_WIDTH);
174 	switch (get_board_revision()) {
175 	case REVISION_AXBX:
176 	case REVISION_CX:
177 	case REVISION_C4:
178 		omap3_dss_panel_config(&dvid_cfg);
179 		break;
180 	case REVISION_XM_A:
181 	case REVISION_XM_B:
182 	case REVISION_XM_C:
183 	default:
184 		omap3_dss_panel_config(&dvid_cfg_xm);
185 		break;
186 	}
187 }
188 
189 /*
190  * Routine: misc_init_r
191  * Description: Configure board specific parts
192  */
193 int misc_init_r(void)
194 {
195 	struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE;
196 	struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE;
197 	struct control_prog_io *prog_io_base = (struct control_prog_io *)OMAP34XX_CTRL_BASE;
198 
199 	/* Enable i2c2 pullup resisters */
200 	writel(~(PRG_I2C2_PULLUPRESX), &prog_io_base->io1);
201 
202 	switch (get_board_revision()) {
203 	case REVISION_AXBX:
204 		printf("Beagle Rev Ax/Bx\n");
205 		setenv("beaglerev", "AxBx");
206 		break;
207 	case REVISION_CX:
208 		printf("Beagle Rev C1/C2/C3\n");
209 		setenv("beaglerev", "Cx");
210 		MUX_BEAGLE_C();
211 		break;
212 	case REVISION_C4:
213 		printf("Beagle Rev C4\n");
214 		setenv("beaglerev", "C4");
215 		MUX_BEAGLE_C();
216 		/* Set VAUX2 to 1.8V for EHCI PHY */
217 		twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
218 					TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
219 					TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
220 					TWL4030_PM_RECEIVER_DEV_GRP_P1);
221 		break;
222 	case REVISION_XM_A:
223 		printf("Beagle xM Rev A\n");
224 		setenv("beaglerev", "xMA");
225 		MUX_BEAGLE_XM();
226 		/* Set VAUX2 to 1.8V for EHCI PHY */
227 		twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
228 					TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
229 					TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
230 					TWL4030_PM_RECEIVER_DEV_GRP_P1);
231 		break;
232 	case REVISION_XM_B:
233 		printf("Beagle xM Rev B\n");
234 		setenv("beaglerev", "xMB");
235 		MUX_BEAGLE_XM();
236 		/* Set VAUX2 to 1.8V for EHCI PHY */
237 		twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
238 					TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
239 					TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
240 					TWL4030_PM_RECEIVER_DEV_GRP_P1);
241 		break;
242 	case REVISION_XM_C:
243 		printf("Beagle xM Rev C\n");
244 		setenv("beaglerev", "xMC");
245 		MUX_BEAGLE_XM();
246 		/* Set VAUX2 to 1.8V for EHCI PHY */
247 		twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
248 					TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
249 					TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
250 					TWL4030_PM_RECEIVER_DEV_GRP_P1);
251 		break;
252 	default:
253 		printf("Beagle unknown 0x%02x\n", get_board_revision());
254 		MUX_BEAGLE_XM();
255 		/* Set VAUX2 to 1.8V for EHCI PHY */
256 		twl4030_pmrecv_vsel_cfg(TWL4030_PM_RECEIVER_VAUX2_DEDICATED,
257 					TWL4030_PM_RECEIVER_VAUX2_VSEL_18,
258 					TWL4030_PM_RECEIVER_VAUX2_DEV_GRP,
259 					TWL4030_PM_RECEIVER_DEV_GRP_P1);
260 	}
261 
262 	switch (get_expansion_id()) {
263 	case TINCANTOOLS_ZIPPY:
264 		printf("Recognized Tincantools Zippy board (rev %d %s)\n",
265 			expansion_config.revision,
266 			expansion_config.fab_revision);
267 		MUX_TINCANTOOLS_ZIPPY();
268 		setenv("buddy", "zippy");
269 		break;
270 	case TINCANTOOLS_ZIPPY2:
271 		printf("Recognized Tincantools Zippy2 board (rev %d %s)\n",
272 			expansion_config.revision,
273 			expansion_config.fab_revision);
274 		MUX_TINCANTOOLS_ZIPPY();
275 		setenv("buddy", "zippy2");
276 		break;
277 	case TINCANTOOLS_TRAINER:
278 		printf("Recognized Tincantools Trainer board (rev %d %s)\n",
279 			expansion_config.revision,
280 			expansion_config.fab_revision);
281 		MUX_TINCANTOOLS_ZIPPY();
282 		MUX_TINCANTOOLS_TRAINER();
283 		setenv("buddy", "trainer");
284 		break;
285 	case TINCANTOOLS_SHOWDOG:
286 		printf("Recognized Tincantools Showdow board (rev %d %s)\n",
287 			expansion_config.revision,
288 			expansion_config.fab_revision);
289 		/* Place holder for DSS2 definition for showdog lcd */
290 		setenv("defaultdisplay", "showdoglcd");
291 		setenv("buddy", "showdog");
292 		break;
293 	case KBADC_BEAGLEFPGA:
294 		printf("Recognized KBADC Beagle FPGA board\n");
295 		MUX_KBADC_BEAGLEFPGA();
296 		setenv("buddy", "beaglefpga");
297 		break;
298 	case LW_BEAGLETOUCH:
299 		printf("Recognized Liquidware BeagleTouch board\n");
300 		setenv("buddy", "beagletouch");
301 		break;
302 	case BRAINMUX_LCDOG:
303 		printf("Recognized Brainmux LCDog board\n");
304 		setenv("buddy", "lcdog");
305 		break;
306 	case BRAINMUX_LCDOGTOUCH:
307 		printf("Recognized Brainmux LCDog Touch board\n");
308 		setenv("buddy", "lcdogtouch");
309 		break;
310 	case BBTOYS_WIFI:
311 		printf("Recognized BeagleBoardToys WiFi board\n");
312 		MUX_BBTOYS_WIFI()
313 		setenv("buddy", "bbtoys-wifi");
314 		break;;
315 	case BBTOYS_VGA:
316 		printf("Recognized BeagleBoardToys VGA board\n");
317 		break;;
318 	case BBTOYS_LCD:
319 		printf("Recognized BeagleBoardToys LCD board\n");
320 		break;;
321 	case BEAGLE_NO_EEPROM:
322 		printf("No EEPROM on expansion board\n");
323 		setenv("buddy", "none");
324 		break;
325 	default:
326 		printf("Unrecognized expansion board: %x\n",
327 			expansion_config.device_vendor);
328 		setenv("buddy", "unknown");
329 	}
330 
331 	if (expansion_config.content == 1)
332 		setenv(expansion_config.env_var, expansion_config.env_setting);
333 
334 	twl4030_power_init();
335 	twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
336 
337 	/* Set GPIO states before they are made outputs */
338 	writel(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1,
339 		&gpio6_base->setdataout);
340 	writel(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
341 		GPIO15 | GPIO14 | GPIO13 | GPIO12, &gpio5_base->setdataout);
342 
343 	/* Configure GPIOs to output */
344 	writel(~(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1), &gpio6_base->oe);
345 	writel(~(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
346 		GPIO15 | GPIO14 | GPIO13 | GPIO12), &gpio5_base->oe);
347 
348 	dieid_num_r();
349 	beagle_display_init();
350 	omap3_dss_enable();
351 
352 	return 0;
353 }
354 
355 /*
356  * Routine: set_muxconf_regs
357  * Description: Setting up the configuration Mux registers specific to the
358  *		hardware. Many pins need to be moved from protect to primary
359  *		mode.
360  */
361 void set_muxconf_regs(void)
362 {
363 	MUX_BEAGLE();
364 }
365 
366 #ifdef CONFIG_GENERIC_MMC
367 int board_mmc_init(bd_t *bis)
368 {
369 	omap_mmc_init(0);
370 	return 0;
371 }
372 #endif
373 
374 #ifdef CONFIG_USB_EHCI
375 
376 #define GPIO_PHY_RESET 147
377 
378 /* Reset is needed otherwise the kernel-driver will throw an error. */
379 int ehci_hcd_stop(void)
380 {
381 	pr_debug("Resetting OMAP3 EHCI\n");
382 	omap_set_gpio_dataout(GPIO_PHY_RESET, 0);
383 	writel(OMAP_UHH_SYSCONFIG_SOFTRESET, OMAP3_UHH_BASE + OMAP_UHH_SYSCONFIG);
384 	/* disable USB clocks */
385 	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
386 	sr32(&prcm_base->iclken_usbhost, 0, 1, 0);
387 	sr32(&prcm_base->fclken_usbhost, 0, 2, 0);
388 	sr32(&prcm_base->iclken3_core, 2, 1, 0);
389 	sr32(&prcm_base->fclken3_core, 2, 1, 0);
390 	return 0;
391 }
392 
393 /* Call usb_stop() before starting the kernel */
394 void show_boot_progress(int val)
395 {
396 	if(val == 15)
397 		usb_stop();
398 }
399 
400 /*
401  * Initialize the OMAP3 EHCI controller and PHY on the BeagleBoard.
402  * Based on "drivers/usb/host/ehci-omap.c" from Linux 2.6.37.
403  * See there for additional Copyrights.
404  */
405 int ehci_hcd_init(void)
406 {
407 	pr_debug("Initializing OMAP3 ECHI\n");
408 
409 	/* Put the PHY in RESET */
410 	omap_request_gpio(GPIO_PHY_RESET);
411 	omap_set_gpio_direction(GPIO_PHY_RESET, 0);
412 	omap_set_gpio_dataout(GPIO_PHY_RESET, 0);
413 
414 	/* Hold the PHY in RESET for enough time till DIR is high */
415 	/* Refer: ISSUE1 */
416 	udelay(10);
417 
418 	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
419 	/* Enable USBHOST_L3_ICLK (USBHOST_MICLK) */
420 	sr32(&prcm_base->iclken_usbhost, 0, 1, 1);
421 	/*
422 	 * Enable USBHOST_48M_FCLK (USBHOST_FCLK1)
423 	 * and USBHOST_120M_FCLK (USBHOST_FCLK2)
424 	 */
425 	sr32(&prcm_base->fclken_usbhost, 0, 2, 3);
426 	/* Enable USBTTL_ICLK */
427 	sr32(&prcm_base->iclken3_core, 2, 1, 1);
428 	/* Enable USBTTL_FCLK */
429 	sr32(&prcm_base->fclken3_core, 2, 1, 1);
430 	pr_debug("USB clocks enabled\n");
431 
432 	/* perform TLL soft reset, and wait until reset is complete */
433 	writel(OMAP_USBTLL_SYSCONFIG_SOFTRESET,
434 		OMAP3_USBTLL_BASE + OMAP_USBTLL_SYSCONFIG);
435 	/* Wait for TLL reset to complete */
436 	while (!(readl(OMAP3_USBTLL_BASE + OMAP_USBTLL_SYSSTATUS)
437 			& OMAP_USBTLL_SYSSTATUS_RESETDONE));
438 	pr_debug("TLL reset done\n");
439 
440 	writel(OMAP_USBTLL_SYSCONFIG_ENAWAKEUP |
441 		OMAP_USBTLL_SYSCONFIG_SIDLEMODE |
442 		OMAP_USBTLL_SYSCONFIG_CACTIVITY,
443 		OMAP3_USBTLL_BASE + OMAP_USBTLL_SYSCONFIG);
444 
445 	/* Put UHH in NoIdle/NoStandby mode */
446 	writel(OMAP_UHH_SYSCONFIG_ENAWAKEUP
447 		| OMAP_UHH_SYSCONFIG_SIDLEMODE
448 		| OMAP_UHH_SYSCONFIG_CACTIVITY
449 		| OMAP_UHH_SYSCONFIG_MIDLEMODE,
450 		OMAP3_UHH_BASE + OMAP_UHH_SYSCONFIG);
451 
452 	/* setup burst configurations */
453 	writel(OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
454 		| OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
455 		| OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN,
456 		OMAP3_UHH_BASE + OMAP_UHH_HOSTCONFIG);
457 
458 	/*
459 	 * Refer ISSUE1:
460 	 * Hold the PHY in RESET for enough time till
461 	 * PHY is settled and ready
462 	 */
463 	udelay(10);
464 	omap_set_gpio_dataout(GPIO_PHY_RESET, 1);
465 
466 	hccr = (struct ehci_hccr *)(OMAP3_EHCI_BASE);
467 	hcor = (struct ehci_hcor *)(OMAP3_EHCI_BASE + 0x10);
468 
469 	pr_debug("OMAP3 EHCI init done\n");
470 	return 0;
471 }
472 
473 #endif /* CONFIG_USB_EHCI */
474 
475 /*
476  * This command returns the status of the user button on beagle xM
477  * Input - none
478  * Returns - 	1 if button is held down
479  *		0 if button is not held down
480  */
481 int do_userbutton (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
482 {
483 	int     button = 0;
484 	int	gpio;
485 
486 	/*
487 	 * pass address parameter as argv[0] (aka command name),
488 	 * and all remaining args
489 	 */
490 	switch (get_board_revision()) {
491 	case REVISION_AXBX:
492 	case REVISION_CX:
493 	case REVISION_C4:
494 		gpio = 7;
495 		break;
496 	case REVISION_XM_A:
497 	case REVISION_XM_B:
498 	case REVISION_XM_C:
499 	default:
500 		gpio = 4;
501 		break;
502 	}
503 	omap_request_gpio(gpio);
504 	omap_set_gpio_direction(gpio, 1);
505 	printf("The user button is currently ");
506 	if(omap_get_gpio_datain(gpio))
507 	{
508 		button = 1;
509 		printf("PRESSED.\n");
510 	}
511 	else
512 	{
513 		button = 0;
514 		printf("NOT pressed.\n");
515 	}
516 
517 	omap_free_gpio(gpio);
518 
519 	return !button;
520 }
521 
522 /* -------------------------------------------------------------------- */
523 
524 U_BOOT_CMD(
525 	userbutton, CONFIG_SYS_MAXARGS, 1,	do_userbutton,
526 	"Return the status of the BeagleBoard USER button",
527 	""
528 );
529