discovery.c revision 186909
1/*-
2 * Copyright (C) 2008 MARVELL INTERNATIONAL LTD.
3 * All rights reserved.
4 *
5 * Developed by Semihalf.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of MARVELL nor the names of contributors
16 *    may be used to endorse or promote products derived from this software
17 *    without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/arm/mv/discovery/discovery.c 186909 2009-01-08 18:31:43Z raj $");
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/bus.h>
38
39#include <machine/bus.h>
40
41#include <arm/mv/mvreg.h>
42#include <arm/mv/mvvar.h>
43
44#define _MV_PCIE_MAX_PORT	8
45
46#define _MV_PCIE_IO_SIZE	(MV_PCIE_IO_SIZE / _MV_PCIE_MAX_PORT)
47#define _MV_PCIE_MEM_SIZE	(MV_PCIE_MEM_SIZE / _MV_PCIE_MAX_PORT)
48
49#define	_MV_PCIE_IO(n)	(MV_PCIE_IO_BASE + ((n) * _MV_PCIE_IO_SIZE))
50#define	_MV_PCIE_MEM(n)	(MV_PCIE_MEM_BASE + ((n) * _MV_PCIE_MEM_SIZE))
51
52#define	_MV_PCIE_IO_PHYS(n)	(MV_PCIE_IO_PHYS_BASE + ((n) * _MV_PCIE_IO_SIZE))
53#define	_MV_PCIE_MEM_PHYS(n)	(MV_PCIE_MEM_PHYS_BASE + ((n) * _MV_PCIE_MEM_SIZE))
54
55/*
56 * Note the 'pcib' devices are not declared in the obio_devices[]: due to the
57 * much more complex configuration schemes allowed, specifically of the
58 * PCI-Express (multiple lanes width per port configured dynamically etc.) it
59 * is better and flexible to instantiate the number of PCI bridge devices
60 * (known in run-time) in the pcib_mbus_identify() method.
61 */
62struct obio_device obio_devices[] = {
63	{ "ic", MV_IC_BASE, MV_IC_SIZE,
64		{ -1 },
65		{ -1 },
66		CPU_PM_CTRL_NONE
67	},
68	{ "timer", MV_TIMERS_BASE, MV_TIMERS_SIZE,
69		{ MV_INT_TIMER0, -1 },
70		{ -1 },
71		CPU_PM_CTRL_NONE
72	},
73	{ "gpio", MV_GPIO_BASE, MV_GPIO_SIZE,
74		{ MV_INT_GPIO7_0, MV_INT_GPIO15_8,
75		  MV_INT_GPIO23_16, MV_INT_GPIO31_24, -1 },
76		{ -1 },
77		CPU_PM_CTRL_NONE
78	},
79	{ "uart", MV_UART0_BASE, MV_UART_SIZE,
80		{ MV_INT_UART0, -1 },
81		{ -1 },
82		CPU_PM_CTRL_NONE
83	},
84	{ "uart", MV_UART1_BASE, MV_UART_SIZE,
85		{ MV_INT_UART1, -1 },
86		{ -1 },
87		CPU_PM_CTRL_NONE
88	},
89	{ "idma", MV_IDMA_BASE, MV_IDMA_SIZE,
90		{ MV_INT_IDMA_ERR, MV_INT_IDMA0, MV_INT_IDMA1,
91		  MV_INT_IDMA2, MV_INT_IDMA3, -1 },
92		{ -1 },
93		CPU_PM_CTRL_IDMA
94	},
95	{ "xor", MV_XOR_BASE, MV_XOR_SIZE,
96		{ MV_INT_XOR0, MV_INT_XOR1,
97		  MV_INT_XOR_ERR, -1 },
98		{ -1 },
99		CPU_PM_CTRL_XOR
100	},
101	{ "ehci", MV_USB0_BASE, MV_USB_SIZE,
102		{ MV_INT_USB_ERR, MV_INT_USB0, -1 },
103		{ -1 },
104		CPU_PM_CTRL_USB0 | CPU_PM_CTRL_USB1 | CPU_PM_CTRL_USB2
105	},
106	{ "ehci", MV_USB1_BASE, MV_USB_SIZE,
107		{ MV_INT_USB_ERR, MV_INT_USB1, -1 },
108		{ -1 },
109		CPU_PM_CTRL_USB0 | CPU_PM_CTRL_USB1 | CPU_PM_CTRL_USB2
110	},
111	{ "ehci", MV_USB2_BASE, MV_USB_SIZE,
112		{ MV_INT_USB_ERR, MV_INT_USB2, -1 },
113		{ -1 },
114		CPU_PM_CTRL_USB0 | CPU_PM_CTRL_USB1 | CPU_PM_CTRL_USB2
115	},
116	{ "mge", MV_ETH0_BASE, MV_ETH_SIZE,
117		{ MV_INT_GBERX, MV_INT_GBETX, MV_INT_GBEMISC,
118		  MV_INT_GBESUM, MV_INT_GBE_ERR, -1 },
119		{ -1 },
120		CPU_PM_CTRL_GE0
121	},
122	{ "mge", MV_ETH1_BASE, MV_ETH_SIZE,
123		{ MV_INT_GBE1RX, MV_INT_GBE1TX, MV_INT_GBE1MISC,
124		  MV_INT_GBE1SUM, MV_INT_GBE_ERR, -1 },
125		{ -1 },
126		CPU_PM_CTRL_GE1
127	},
128	{ "twsi", MV_TWSI_BASE, MV_TWSI_SIZE,
129		{ -1 }, { -1 },
130		CPU_PM_CTRL_NONE
131	},
132	{ NULL, 0, 0, { 0 }, { 0 }, 0 }
133};
134
135const struct obio_pci mv_pci_info[] = {
136	{ MV_TYPE_PCIE,
137		MV_PCIE00_BASE, MV_PCIE_SIZE,
138		_MV_PCIE_IO(0), _MV_PCIE_IO_SIZE, 4, 0xE0,
139		_MV_PCIE_MEM(0), _MV_PCIE_MEM_SIZE, 4, 0xE8,
140		NULL, MV_INT_PEX00 },
141
142	{ MV_TYPE_PCIE_AGGR_LANE,
143		MV_PCIE01_BASE, MV_PCIE_SIZE,
144		_MV_PCIE_IO(1), _MV_PCIE_IO_SIZE, 4, 0xD0,
145		_MV_PCIE_MEM(1), _MV_PCIE_MEM_SIZE, 4, 0xD8,
146		NULL, MV_INT_PEX01 },
147#if 0
148	/*
149	 * XXX Access to devices on this interface (PCIE 0.2) crashes the
150	 * system.  Could be a silicon defect as Marvell U-Boot has a 'Do not
151	 * touch' precaution comment...
152	 */
153	{ MV_TYPE_PCIE_AGGR_LANE,
154		MV_PCIE02_BASE, MV_PCIE_SIZE,
155		_MV_PCIE_IO(2), _MV_PCIE_IO_SIZE(2), 4, 0xB0,
156		_MV_PCIE_MEM(2), _MV_PCIE_MEM_SIZE(2), 4, 0xB8,
157		NULL, MV_INT_PEX02 },
158#endif
159	{ MV_TYPE_PCIE_AGGR_LANE,
160		MV_PCIE03_BASE, MV_PCIE_SIZE,
161		_MV_PCIE_IO(3), _MV_PCIE_IO_SIZE, 4, 0x70,
162		_MV_PCIE_MEM(3), _MV_PCIE_MEM_SIZE, 4, 0x78,
163		NULL, MV_INT_PEX03 },
164
165	{ MV_TYPE_PCIE,
166		MV_PCIE10_BASE, MV_PCIE_SIZE,
167		_MV_PCIE_IO(4), _MV_PCIE_IO_SIZE, 8, 0xE0,
168		_MV_PCIE_MEM(4), _MV_PCIE_MEM_SIZE, 8, 0xE8,
169		NULL, MV_INT_PEX10 },
170
171	{ MV_TYPE_PCIE_AGGR_LANE,
172		MV_PCIE11_BASE, MV_PCIE_SIZE,
173		_MV_PCIE_IO(5), _MV_PCIE_IO_SIZE, 8, 0xD0,
174		_MV_PCIE_MEM(5), _MV_PCIE_MEM_SIZE, 8, 0xD8,
175		NULL, MV_INT_PEX11 },
176	{ MV_TYPE_PCIE_AGGR_LANE,
177		MV_PCIE12_BASE, MV_PCIE_SIZE,
178		_MV_PCIE_IO(6), _MV_PCIE_IO_SIZE, 8, 0xB0,
179		_MV_PCIE_MEM(6), _MV_PCIE_MEM_SIZE, 8, 0xB8,
180		NULL, MV_INT_PEX12 },
181	{ MV_TYPE_PCIE_AGGR_LANE,
182		MV_PCIE13_BASE, MV_PCIE_SIZE,
183		_MV_PCIE_IO(7), _MV_PCIE_IO_SIZE, 8, 0x70,
184		_MV_PCIE_MEM(7), _MV_PCIE_MEM_SIZE, 8, 0x78,
185		NULL, MV_INT_PEX13 },
186
187	{ 0, 0, 0 }
188};
189
190struct resource_spec mv_gpio_res[] = {
191	{ SYS_RES_MEMORY,	0,	RF_ACTIVE },
192	{ SYS_RES_IRQ,		0,	RF_ACTIVE },
193	{ SYS_RES_IRQ,		1,	RF_ACTIVE },
194	{ SYS_RES_IRQ,		2,	RF_ACTIVE },
195	{ SYS_RES_IRQ,		3,	RF_ACTIVE },
196	{ -1, 0 }
197};
198
199struct resource_spec mv_xor_res[] = {
200	{ SYS_RES_MEMORY,	0,	RF_ACTIVE },
201	{ SYS_RES_IRQ,		0,	RF_ACTIVE },
202	{ SYS_RES_IRQ,		1,	RF_ACTIVE },
203	{ SYS_RES_IRQ,		2,	RF_ACTIVE },
204	{ -1, 0 }
205};
206
207const struct decode_win cpu_win_tbl[] = {
208	/* Device bus BOOT */
209	{ 1, 0x2f, MV_DEV_BOOT_PHYS_BASE, MV_DEV_BOOT_SIZE, -1 },
210
211	/* Device bus CS0 */
212	{ 1, 0x3e, MV_DEV_CS0_PHYS_BASE, MV_DEV_CS0_SIZE, -1 },
213
214	/* Device bus CS1 */
215	{ 1, 0x3d, MV_DEV_CS1_PHYS_BASE, MV_DEV_CS1_SIZE, -1 },
216
217	/* Device bus CS2 */
218	{ 1, 0x3b, MV_DEV_CS2_PHYS_BASE, MV_DEV_CS2_SIZE, -1 },
219
220	/* CESA */
221	{ 9, 0x01, MV_CESA_SRAM_PHYS_BASE, MV_CESA_SRAM_SIZE, -1 },
222};
223const struct decode_win *cpu_wins = cpu_win_tbl;
224int cpu_wins_no = sizeof(cpu_win_tbl) / sizeof(struct decode_win);
225
226/*
227 * Note: the decode windows table for IDMA does not explicitly have DRAM
228 * entries, which are not statically defined: active DDR banks (== windows)
229 * are established in run time from actual DDR windows settings. All active
230 * DDR banks are mapped into IDMA decode windows, so at least one IDMA decode
231 * window is occupied by the DDR bank; in case when all (MV_WIN_DDR_MAX)
232 * DDR banks are active, the remaining available IDMA decode windows for other
233 * targets is only MV_WIN_IDMA_MAX - MV_WIN_DDR_MAX.
234 */
235const struct decode_win idma_win_tbl[] = {
236	/* PCIE MEM */
237	{ 4, 0xE8, _MV_PCIE_MEM_PHYS(0), _MV_PCIE_MEM_SIZE, -1 },
238	{ 4, 0xD8, _MV_PCIE_MEM_PHYS(1), _MV_PCIE_MEM_SIZE, -1 },
239};
240const struct decode_win *idma_wins = idma_win_tbl;
241int idma_wins_no = sizeof(idma_win_tbl) / sizeof(struct decode_win);
242
243const struct decode_win xor_win_tbl[] = {
244	/* PCIE MEM */
245	{ 4, 0xE8, _MV_PCIE_MEM_PHYS(0), _MV_PCIE_MEM_SIZE, -1},
246	{ 4, 0xD8, _MV_PCIE_MEM_PHYS(1), _MV_PCIE_MEM_SIZE, -1},
247};
248const struct decode_win *xor_wins = xor_win_tbl;
249int xor_wins_no = sizeof(xor_win_tbl) / sizeof(struct decode_win);
250
251uint32_t
252get_tclk(void)
253{
254	uint32_t sar;
255
256	/*
257	 * On Discovery TCLK is can be configured to 166 MHz or 200 MHz.
258	 * Current setting is read from Sample At Reset register.
259	 */
260	sar = bus_space_read_4(obio_tag, MV_MPP_BASE, SAMPLE_AT_RESET_HI);
261	sar = (sar & TCLK_MASK) >> TCLK_SHIFT;
262
263	switch (sar) {
264	case 0:
265		return (TCLK_166MHZ);
266	case 1:
267		return (TCLK_200MHZ);
268	default:
269		panic("Unknown TCLK settings!");
270	}
271}
272