blob: 9b0b66aabd1b1afd449256e38f31b7ad31b26944 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/***************************************************************************/
2
3/*
4 * linux/arch/m68knommu/platform/527x/config.c
5 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006 * Sub-architcture dependent initialization code for the Freescale
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 5270/5271 CPUs.
8 *
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 Ungerer748dddb2012-04-17 14:21:51 +100023#include <asm/mcfgpio.h>
24
25/***************************************************************************/
26
27struct mcf_gpio_chip mcf_gpio_chips[] = {
28#if defined(CONFIG_M5271)
29 MCFGPS(PIRQ, 1, 7, MCFEPORT_EPDDR, MCFEPORT_EPDR, MCFEPORT_EPPDR),
30 MCFGPF(ADDR, 13, 3),
31 MCFGPF(DATAH, 16, 8),
32 MCFGPF(DATAL, 24, 8),
33 MCFGPF(BUSCTL, 32, 8),
34 MCFGPF(BS, 40, 4),
35 MCFGPF(CS, 49, 7),
36 MCFGPF(SDRAM, 56, 6),
37 MCFGPF(FECI2C, 64, 4),
38 MCFGPF(UARTH, 72, 2),
39 MCFGPF(UARTL, 80, 8),
40 MCFGPF(QSPI, 88, 5),
41 MCFGPF(TIMER, 96, 8),
42#elif defined(CONFIG_M5275)
43 MCFGPS(PIRQ, 1, 7, MCFEPORT_EPDDR, MCFEPORT_EPDR, MCFEPORT_EPPDR),
44 MCFGPF(BUSCTL, 8, 8),
45 MCFGPF(ADDR, 21, 3),
46 MCFGPF(CS, 25, 7),
47 MCFGPF(FEC0H, 32, 8),
48 MCFGPF(FEC0L, 40, 8),
49 MCFGPF(FECI2C, 48, 6),
50 MCFGPF(QSPI, 56, 7),
51 MCFGPF(SDRAM, 64, 8),
52 MCFGPF(TIMERH, 72, 4),
53 MCFGPF(TIMERL, 80, 4),
54 MCFGPF(UARTL, 88, 8),
55 MCFGPF(FEC1H, 96, 8),
56 MCFGPF(FEC1L, 104, 8),
57 MCFGPF(BS, 114, 2),
58 MCFGPF(IRQ, 121, 7),
59 MCFGPF(USBH, 128, 1),
60 MCFGPF(USBL, 136, 8),
61 MCFGPF(UARTH, 144, 4),
62#endif
63};
64
65unsigned int mcf_gpio_chips_size = ARRAY_SIZE(mcf_gpio_chips);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/***************************************************************************/
68
Steven King83ca6002012-05-06 12:22:53 -070069#if IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI)
Steven King91d60412010-01-22 12:43:03 -080070
71static void __init m527x_qspi_init(void)
72{
73#if defined(CONFIG_M5271)
74 u16 par;
75
76 /* setup QSPS pins for QSPI with gpio CS control */
77 writeb(0x1f, MCFGPIO_PAR_QSPI);
78 /* and CS2 & CS3 as gpio */
79 par = readw(MCFGPIO_PAR_TIMER);
80 par &= 0x3f3f;
81 writew(par, MCFGPIO_PAR_TIMER);
82#elif defined(CONFIG_M5275)
83 /* setup QSPS pins for QSPI with gpio CS control */
84 writew(0x003e, MCFGPIO_PAR_QSPI);
85#endif
86}
Steven King91d60412010-01-22 12:43:03 -080087
Steven King83ca6002012-05-06 12:22:53 -070088#endif /* IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI) */
Greg Ungerere206da02008-02-01 17:34:40 +100089
90/***************************************************************************/
91
Greg Ungerer1eb13912011-12-24 00:59:03 +100092static void __init m527x_uarts_init(void)
Greg Ungerere206da02008-02-01 17:34:40 +100093{
94 u16 sepmask;
Greg Ungerere206da02008-02-01 17:34:40 +100095
Greg Ungerere206da02008-02-01 17:34:40 +100096 /*
97 * External Pin Mask Setting & Enable External Pin for Interface
98 */
99 sepmask = readw(MCF_IPSBAR + MCF_GPIO_PAR_UART);
Greg Ungerer1eb13912011-12-24 00:59:03 +1000100 sepmask |= UART0_ENABLE_MASK | UART1_ENABLE_MASK | UART2_ENABLE_MASK;
Greg Ungerere206da02008-02-01 17:34:40 +1000101 writew(sepmask, MCF_IPSBAR + MCF_GPIO_PAR_UART);
102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/***************************************************************************/
105
Greg Ungererffba3f42009-02-26 22:40:38 -0800106static void __init m527x_fec_init(void)
107{
108 u16 par;
109 u8 v;
110
Greg Ungererffba3f42009-02-26 22:40:38 -0800111 /* Set multi-function pins to ethernet mode for fec0 */
Richard Retanubun592578a2009-04-08 11:51:27 +1000112#if defined(CONFIG_M5271)
113 v = readb(MCF_IPSBAR + 0x100047);
114 writeb(v | 0xf0, MCF_IPSBAR + 0x100047);
115#else
Greg Ungererffba3f42009-02-26 22:40:38 -0800116 par = readw(MCF_IPSBAR + 0x100082);
117 writew(par | 0xf00, MCF_IPSBAR + 0x100082);
118 v = readb(MCF_IPSBAR + 0x100078);
119 writeb(v | 0xc0, MCF_IPSBAR + 0x100078);
120
Greg Ungererffba3f42009-02-26 22:40:38 -0800121 /* Set multi-function pins to ethernet mode for fec1 */
122 par = readw(MCF_IPSBAR + 0x100082);
123 writew(par | 0xa0, MCF_IPSBAR + 0x100082);
124 v = readb(MCF_IPSBAR + 0x100079);
125 writeb(v | 0xc0, MCF_IPSBAR + 0x100079);
126#endif
127}
128
129/***************************************************************************/
130
Greg Ungerere206da02008-02-01 17:34:40 +1000131void __init config_BSP(char *commandp, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Greg Ungerer35aefb22012-01-23 15:34:58 +1000133 mach_sched_init = hw_timer_init;
Greg Ungererffba3f42009-02-26 22:40:38 -0800134 m527x_uarts_init();
135 m527x_fec_init();
Steven King83ca6002012-05-06 12:22:53 -0700136#if IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI)
Steven King91d60412010-01-22 12:43:03 -0800137 m527x_qspi_init();
138#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141/***************************************************************************/