blob: b10b436b5a31919df7bdc50ff0bc18e18707faa9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/***************************************************************************/
2
3/*
Greg Ungererece9ae62014-08-19 11:55:24 +10004 * m527x.c -- platform support for ColdFire 527x based boards
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006 * Sub-architcture dependent initialization code for the Freescale
Greg Ungererece9ae62014-08-19 11:55:24 +10007 * 5270/5271 and 5274/5275 CPUs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Copyright (C) 1999-2004, Greg Ungerer (gerg@snapgear.com)
10 * Copyright (C) 2001-2004, SnapGear Inc. (www.snapgear.com)
11 */
12
13/***************************************************************************/
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/param.h>
17#include <linux/init.h>
Greg Ungerere206da02008-02-01 17:34:40 +100018#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/machdep.h>
20#include <asm/coldfire.h>
21#include <asm/mcfsim.h>
Greg Ungerere206da02008-02-01 17:34:40 +100022#include <asm/mcfuart.h>
Greg Ungerera3d8eb02012-07-13 16:03:52 +100023#include <asm/mcfclk.h>
24
25/***************************************************************************/
26
27DEFINE_CLK(pll, "pll.0", MCF_CLK);
28DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
29DEFINE_CLK(mcfpit0, "mcfpit.0", MCF_CLK);
30DEFINE_CLK(mcfpit1, "mcfpit.1", MCF_CLK);
31DEFINE_CLK(mcfpit2, "mcfpit.2", MCF_CLK);
32DEFINE_CLK(mcfpit3, "mcfpit.3", MCF_CLK);
33DEFINE_CLK(mcfuart0, "mcfuart.0", MCF_BUSCLK);
34DEFINE_CLK(mcfuart1, "mcfuart.1", MCF_BUSCLK);
35DEFINE_CLK(mcfuart2, "mcfuart.2", MCF_BUSCLK);
Steven King74859522014-05-14 10:06:29 -070036DEFINE_CLK(mcfqspi0, "mcfqspi.0", MCF_BUSCLK);
Greg Ungerera3d8eb02012-07-13 16:03:52 +100037DEFINE_CLK(fec0, "fec.0", MCF_BUSCLK);
38DEFINE_CLK(fec1, "fec.1", MCF_BUSCLK);
Steven King2d24b532014-06-30 09:53:19 -070039DEFINE_CLK(mcfi2c0, "imx1-i2c.0", MCF_BUSCLK);
Greg Ungerera3d8eb02012-07-13 16:03:52 +100040
41struct clk *mcf_clks[] = {
42 &clk_pll,
43 &clk_sys,
44 &clk_mcfpit0,
45 &clk_mcfpit1,
46 &clk_mcfpit2,
47 &clk_mcfpit3,
48 &clk_mcfuart0,
49 &clk_mcfuart1,
50 &clk_mcfuart2,
Steven King74859522014-05-14 10:06:29 -070051 &clk_mcfqspi0,
Greg Ungerera3d8eb02012-07-13 16:03:52 +100052 &clk_fec0,
53 &clk_fec1,
Steven King2d24b532014-06-30 09:53:19 -070054 &clk_mcfi2c0,
Greg Ungerera3d8eb02012-07-13 16:03:52 +100055 NULL
56};
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/***************************************************************************/
59
Steven King91d60412010-01-22 12:43:03 -080060static void __init m527x_qspi_init(void)
61{
Steven King151d14f2014-05-14 10:07:55 -070062#if IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI)
Steven King91d60412010-01-22 12:43:03 -080063#if defined(CONFIG_M5271)
64 u16 par;
65
66 /* setup QSPS pins for QSPI with gpio CS control */
67 writeb(0x1f, MCFGPIO_PAR_QSPI);
68 /* and CS2 & CS3 as gpio */
69 par = readw(MCFGPIO_PAR_TIMER);
70 par &= 0x3f3f;
71 writew(par, MCFGPIO_PAR_TIMER);
72#elif defined(CONFIG_M5275)
73 /* setup QSPS pins for QSPI with gpio CS control */
74 writew(0x003e, MCFGPIO_PAR_QSPI);
75#endif
Steven King83ca6002012-05-06 12:22:53 -070076#endif /* IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI) */
Steven King151d14f2014-05-14 10:07:55 -070077}
Greg Ungerere206da02008-02-01 17:34:40 +100078
79/***************************************************************************/
80
Steven King2d24b532014-06-30 09:53:19 -070081static void __init m527x_i2c_init(void)
82{
83#if IS_ENABLED(CONFIG_I2C_IMX)
84#if defined(CONFIG_M5271)
85 u8 par;
86
87 /* setup Port FECI2C Pin Assignment Register for I2C */
88 /* set PAR_SCL to SCL and PAR_SDA to SDA */
89 par = readb(MCFGPIO_PAR_FECI2C);
90 par |= 0x0f;
91 writeb(par, MCFGPIO_PAR_FECI2C);
92#elif defined(CONFIG_M5275)
93 u16 par;
94
95 /* setup Port FECI2C Pin Assignment Register for I2C */
96 /* set PAR_SCL to SCL and PAR_SDA to SDA */
97 par = readw(MCFGPIO_PAR_FECI2C);
98 par |= 0x0f;
99 writew(par, MCFGPIO_PAR_FECI2C);
100#endif
101#endif /* IS_ENABLED(CONFIG_I2C_IMX) */
102}
103
104/***************************************************************************/
105
Greg Ungerer1eb13912011-12-24 00:59:03 +1000106static void __init m527x_uarts_init(void)
Greg Ungerere206da02008-02-01 17:34:40 +1000107{
108 u16 sepmask;
Greg Ungerere206da02008-02-01 17:34:40 +1000109
Greg Ungerere206da02008-02-01 17:34:40 +1000110 /*
111 * External Pin Mask Setting & Enable External Pin for Interface
112 */
Greg Ungererf821e342012-09-17 12:07:21 +1000113 sepmask = readw(MCFGPIO_PAR_UART);
Greg Ungerer1eb13912011-12-24 00:59:03 +1000114 sepmask |= UART0_ENABLE_MASK | UART1_ENABLE_MASK | UART2_ENABLE_MASK;
Greg Ungererf821e342012-09-17 12:07:21 +1000115 writew(sepmask, MCFGPIO_PAR_UART);
Greg Ungerere206da02008-02-01 17:34:40 +1000116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/***************************************************************************/
119
Greg Ungererffba3f42009-02-26 22:40:38 -0800120static void __init m527x_fec_init(void)
121{
Greg Ungererffba3f42009-02-26 22:40:38 -0800122 u8 v;
123
Greg Ungererffba3f42009-02-26 22:40:38 -0800124 /* Set multi-function pins to ethernet mode for fec0 */
Richard Retanubun592578a2009-04-08 11:51:27 +1000125#if defined(CONFIG_M5271)
Greg Ungererf821e342012-09-17 12:07:21 +1000126 v = readb(MCFGPIO_PAR_FECI2C);
127 writeb(v | 0xf0, MCFGPIO_PAR_FECI2C);
Richard Retanubun592578a2009-04-08 11:51:27 +1000128#else
Greg Ungerer6e420612015-03-24 11:08:22 +1000129 u16 par;
130
Greg Ungererf821e342012-09-17 12:07:21 +1000131 par = readw(MCFGPIO_PAR_FECI2C);
132 writew(par | 0xf00, MCFGPIO_PAR_FECI2C);
133 v = readb(MCFGPIO_PAR_FEC0HL);
134 writeb(v | 0xc0, MCFGPIO_PAR_FEC0HL);
Greg Ungererffba3f42009-02-26 22:40:38 -0800135
Greg Ungererffba3f42009-02-26 22:40:38 -0800136 /* Set multi-function pins to ethernet mode for fec1 */
Greg Ungererf821e342012-09-17 12:07:21 +1000137 par = readw(MCFGPIO_PAR_FECI2C);
138 writew(par | 0xa0, MCFGPIO_PAR_FECI2C);
139 v = readb(MCFGPIO_PAR_FEC1HL);
140 writeb(v | 0xc0, MCFGPIO_PAR_FEC1HL);
Greg Ungererffba3f42009-02-26 22:40:38 -0800141#endif
142}
143
144/***************************************************************************/
145
Greg Ungerere206da02008-02-01 17:34:40 +1000146void __init config_BSP(char *commandp, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Greg Ungerer35aefb22012-01-23 15:34:58 +1000148 mach_sched_init = hw_timer_init;
Greg Ungererffba3f42009-02-26 22:40:38 -0800149 m527x_uarts_init();
150 m527x_fec_init();
Steven King91d60412010-01-22 12:43:03 -0800151 m527x_qspi_init();
Steven King2d24b532014-06-30 09:53:19 -0700152 m527x_i2c_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155/***************************************************************************/