xref: /openbmc/linux/arch/powerpc/platforms/52xx/lite5200.c (revision 1ac731c529cd4d6adbce134754b51ff7d822b145)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
26b642531SGrant Likely /*
36b642531SGrant Likely  * Freescale Lite5200 board support
46b642531SGrant Likely  *
56b642531SGrant Likely  * Written by: Grant Likely <grant.likely@secretlab.ca>
66b642531SGrant Likely  *
76b642531SGrant Likely  * Copyright (C) Secret Lab Technologies Ltd. 2006. All rights reserved.
88a56e1eeSYang Li  * Copyright 2006 Freescale Semiconductor, Inc. All rights reserved.
96b642531SGrant Likely  *
106b642531SGrant Likely  * Description:
116b642531SGrant Likely  */
126b642531SGrant Likely 
136b642531SGrant Likely #undef DEBUG
146b642531SGrant Likely 
156b642531SGrant Likely #include <linux/init.h>
166b642531SGrant Likely #include <linux/pci.h>
179fe2e796SGrant Likely #include <linux/of.h>
1822ae782fSGrant Likely #include <linux/of_address.h>
19c1f807efSAl Viro #include <linux/root_dev.h>
20c1f807efSAl Viro #include <linux/initrd.h>
216b642531SGrant Likely #include <asm/time.h>
226b642531SGrant Likely #include <asm/io.h>
236b642531SGrant Likely #include <asm/machdep.h>
246b642531SGrant Likely #include <asm/mpc52xx.h>
256b642531SGrant Likely 
266b642531SGrant Likely /* ************************************************************************
276b642531SGrant Likely  *
286b642531SGrant Likely  * Setup the architecture
296b642531SGrant Likely  *
306b642531SGrant Likely  */
316b642531SGrant Likely 
3266ffbe49SGrant Likely /* mpc5200 device tree match tables */
33ce6d73c9SUwe Kleine-König static const struct of_device_id mpc5200_cdm_ids[] __initconst = {
3466ffbe49SGrant Likely 	{ .compatible = "fsl,mpc5200-cdm", },
3566ffbe49SGrant Likely 	{ .compatible = "mpc5200-cdm", },
3666ffbe49SGrant Likely 	{}
3766ffbe49SGrant Likely };
3866ffbe49SGrant Likely 
39ce6d73c9SUwe Kleine-König static const struct of_device_id mpc5200_gpio_ids[] __initconst = {
4066ffbe49SGrant Likely 	{ .compatible = "fsl,mpc5200-gpio", },
4166ffbe49SGrant Likely 	{ .compatible = "mpc5200-gpio", },
4266ffbe49SGrant Likely 	{}
4366ffbe49SGrant Likely };
4466ffbe49SGrant Likely 
454de3b992SGrant Likely /*
464de3b992SGrant Likely  * Fix clock configuration.
474de3b992SGrant Likely  *
484de3b992SGrant Likely  * Firmware is supposed to be responsible for this.  If you are creating a
494de3b992SGrant Likely  * new board port, do *NOT* duplicate this code.  Fix your boot firmware
504de3b992SGrant Likely  * to set it correctly in the first place
514de3b992SGrant Likely  */
526b642531SGrant Likely static void __init
lite5200_fix_clock_config(void)534de3b992SGrant Likely lite5200_fix_clock_config(void)
544de3b992SGrant Likely {
5575ca399eSGrant Likely 	struct device_node *np;
564de3b992SGrant Likely 	struct mpc52xx_cdm  __iomem *cdm;
574de3b992SGrant Likely 	/* Map zones */
5866ffbe49SGrant Likely 	np = of_find_matching_node(NULL, mpc5200_cdm_ids);
5975ca399eSGrant Likely 	cdm = of_iomap(np, 0);
6075ca399eSGrant Likely 	of_node_put(np);
614de3b992SGrant Likely 	if (!cdm) {
624de3b992SGrant Likely 		printk(KERN_ERR "%s() failed; expect abnormal behaviour\n",
63e48b1b45SHarvey Harrison 		       __func__);
644de3b992SGrant Likely 		return;
654de3b992SGrant Likely 	}
664de3b992SGrant Likely 
674de3b992SGrant Likely 	/* Use internal 48 Mhz */
684de3b992SGrant Likely 	out_8(&cdm->ext_48mhz_en, 0x00);
694de3b992SGrant Likely 	out_8(&cdm->fd_enable, 0x01);
704de3b992SGrant Likely 	if (in_be32(&cdm->rstcfg) & 0x40)	/* Assumes 33Mhz clock */
714de3b992SGrant Likely 		out_be16(&cdm->fd_counters, 0x0001);
724de3b992SGrant Likely 	else
734de3b992SGrant Likely 		out_be16(&cdm->fd_counters, 0x5555);
744de3b992SGrant Likely 
754de3b992SGrant Likely 	/* Unmap the regs */
764de3b992SGrant Likely 	iounmap(cdm);
774de3b992SGrant Likely }
784de3b992SGrant Likely 
794de3b992SGrant Likely /*
804de3b992SGrant Likely  * Fix setting of port_config register.
814de3b992SGrant Likely  *
824de3b992SGrant Likely  * Firmware is supposed to be responsible for this.  If you are creating a
834de3b992SGrant Likely  * new board port, do *NOT* duplicate this code.  Fix your boot firmware
844de3b992SGrant Likely  * to set it correctly in the first place
854de3b992SGrant Likely  */
864de3b992SGrant Likely static void __init
lite5200_fix_port_config(void)874de3b992SGrant Likely lite5200_fix_port_config(void)
886b642531SGrant Likely {
8975ca399eSGrant Likely 	struct device_node *np;
906b642531SGrant Likely 	struct mpc52xx_gpio __iomem *gpio;
916b642531SGrant Likely 	u32 port_config;
926b642531SGrant Likely 
9366ffbe49SGrant Likely 	np = of_find_matching_node(NULL, mpc5200_gpio_ids);
9475ca399eSGrant Likely 	gpio = of_iomap(np, 0);
9575ca399eSGrant Likely 	of_node_put(np);
966b642531SGrant Likely 	if (!gpio) {
974de3b992SGrant Likely 		printk(KERN_ERR "%s() failed. expect abnormal behavior\n",
98e48b1b45SHarvey Harrison 		       __func__);
994de3b992SGrant Likely 		return;
1006b642531SGrant Likely 	}
1016b642531SGrant Likely 
1026b642531SGrant Likely 	/* Set port config */
1036b642531SGrant Likely 	port_config = in_be32(&gpio->port_config);
1046b642531SGrant Likely 
1056b642531SGrant Likely 	port_config &= ~0x00800000;	/* 48Mhz internal, pin is GPIO	*/
1066b642531SGrant Likely 
1076b642531SGrant Likely 	port_config &= ~0x00007000;	/* USB port : Differential mode	*/
1086b642531SGrant Likely 	port_config |=  0x00001000;	/*            USB 1 only	*/
1096b642531SGrant Likely 
1106b642531SGrant Likely 	port_config &= ~0x03000000;	/* ATA CS is on csb_4/5		*/
1116b642531SGrant Likely 	port_config |=  0x01000000;
1126b642531SGrant Likely 
1136b642531SGrant Likely 	pr_debug("port_config: old:%x new:%x\n",
1146b642531SGrant Likely 	         in_be32(&gpio->port_config), port_config);
1156b642531SGrant Likely 	out_be32(&gpio->port_config, port_config);
1166b642531SGrant Likely 
1176b642531SGrant Likely 	/* Unmap zone */
1186b642531SGrant Likely 	iounmap(gpio);
1196b642531SGrant Likely }
1206b642531SGrant Likely 
1212e1ee1f7SDomen Puncer #ifdef CONFIG_PM
lite5200_suspend_prepare(void __iomem * mbar)1222e1ee1f7SDomen Puncer static void lite5200_suspend_prepare(void __iomem *mbar)
1232e1ee1f7SDomen Puncer {
1242e1ee1f7SDomen Puncer 	u8 pin = 1;	/* GPIO_WKUP_1 (GPIO_PSC2_4) */
1252e1ee1f7SDomen Puncer 	u8 level = 0;	/* wakeup on low level */
1262e1ee1f7SDomen Puncer 	mpc52xx_set_wakeup_gpio(pin, level);
1272e1ee1f7SDomen Puncer 
1282e1ee1f7SDomen Puncer 	/*
1292e1ee1f7SDomen Puncer 	 * power down usb port
1302e1ee1f7SDomen Puncer 	 * this needs to be called before of-ohci suspend code
1312e1ee1f7SDomen Puncer 	 */
132ee983079SDomen Puncer 
133ee983079SDomen Puncer 	/* set ports to "power switched" and "powered at the same time"
134ee983079SDomen Puncer 	 * USB Rh descriptor A: NPS = 0, PSM = 0 */
135ee983079SDomen Puncer 	out_be32(mbar + 0x1048, in_be32(mbar + 0x1048) & ~0x300);
136ee983079SDomen Puncer 	/* USB Rh status: LPS = 1 - turn off power */
137ee983079SDomen Puncer 	out_be32(mbar + 0x1050, 0x00000001);
1382e1ee1f7SDomen Puncer }
1392e1ee1f7SDomen Puncer 
lite5200_resume_finish(void __iomem * mbar)1402e1ee1f7SDomen Puncer static void lite5200_resume_finish(void __iomem *mbar)
1412e1ee1f7SDomen Puncer {
142ee983079SDomen Puncer 	/* USB Rh status: LPSC = 1 - turn on power */
143ee983079SDomen Puncer 	out_be32(mbar + 0x1050, 0x00010000);
1442e1ee1f7SDomen Puncer }
1452e1ee1f7SDomen Puncer #endif
1462e1ee1f7SDomen Puncer 
lite5200_setup_arch(void)147e3aba81dSGrant Likely static void __init lite5200_setup_arch(void)
1486b642531SGrant Likely {
1496b642531SGrant Likely 	if (ppc_md.progress)
150e3aba81dSGrant Likely 		ppc_md.progress("lite5200_setup_arch()", 0);
1516b642531SGrant Likely 
152c8004a28SGrant Likely 	/* Map important registers from the internal memory map */
153c8004a28SGrant Likely 	mpc52xx_map_common_devices();
1544de3b992SGrant Likely 
1554de3b992SGrant Likely 	/* Some mpc5200 & mpc5200b related configuration */
1564de3b992SGrant Likely 	mpc5200_setup_xlb_arbiter();
1576b642531SGrant Likely 
158c8004a28SGrant Likely 	/* Fix things that firmware should have done. */
159c8004a28SGrant Likely 	lite5200_fix_clock_config();
160c8004a28SGrant Likely 	lite5200_fix_port_config();
1619dda78b7SMarian Balakowicz 
1622e1ee1f7SDomen Puncer #ifdef CONFIG_PM
1632e1ee1f7SDomen Puncer 	mpc52xx_suspend.board_suspend_prepare = lite5200_suspend_prepare;
1642e1ee1f7SDomen Puncer 	mpc52xx_suspend.board_resume_finish = lite5200_resume_finish;
165ee983079SDomen Puncer 	lite5200_pm_init();
1662e1ee1f7SDomen Puncer #endif
1676b642531SGrant Likely }
1686b642531SGrant Likely 
1699597abe0SAndi Kleen static const char * const board[] __initconst = {
170a4f740cfSGrant Likely 	"fsl,lite5200",
171a4f740cfSGrant Likely 	"fsl,lite5200b",
172a4f740cfSGrant Likely 	NULL,
173a4f740cfSGrant Likely };
174a4f740cfSGrant Likely 
1756b642531SGrant Likely /*
1766b642531SGrant Likely  * Called very early, MMU is off, device-tree isn't unflattened
1776b642531SGrant Likely  */
lite5200_probe(void)178e3aba81dSGrant Likely static int __init lite5200_probe(void)
1796b642531SGrant Likely {
18056571384SBenjamin Herrenschmidt 	return of_device_compatible_match(of_root, board);
1816b642531SGrant Likely }
1826b642531SGrant Likely 
define_machine(lite5200)183e3aba81dSGrant Likely define_machine(lite5200) {
184e3aba81dSGrant Likely 	.name 		= "lite5200",
185e3aba81dSGrant Likely 	.probe 		= lite5200_probe,
186e3aba81dSGrant Likely 	.setup_arch 	= lite5200_setup_arch,
187*e0bf9de2SOliver O'Halloran 	.discover_phbs	= mpc52xx_setup_pci,
1885c334eedSSylvain Munaut 	.init		= mpc52xx_declare_of_platform_devices,
1896b642531SGrant Likely 	.init_IRQ 	= mpc52xx_init_irq,
1906b642531SGrant Likely 	.get_irq 	= mpc52xx_get_irq,
1919dda78b7SMarian Balakowicz 	.restart	= mpc52xx_restart,
1926b642531SGrant Likely };
193