mv_machdep.c revision 250292
1/*-
2 * Copyright (c) 1994-1998 Mark Brinicombe.
3 * Copyright (c) 1994 Brini.
4 * All rights reserved.
5 *
6 * This code is derived from software written for Brini by Mark Brinicombe
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 *    must display the following acknowledgement:
18 *      This product includes software developed by Brini.
19 * 4. The name of the company nor the name of the author may be used to
20 *    endorse or promote products derived from this software without specific
21 *    prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
27 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
29 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * from: FreeBSD: //depot/projects/arm/src/sys/arm/at91/kb920x_machdep.c, rev 45
36 */
37
38#include "opt_ddb.h"
39#include "opt_platform.h"
40
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/sys/arm/mv/mv_machdep.c 250292 2013-05-06 13:52:49Z gber $");
43
44#define _ARM32_BUS_DMA_PRIVATE
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/bus.h>
48
49#include <vm/vm.h>
50#include <vm/pmap.h>
51
52#include <machine/bus.h>
53#include <machine/frame.h> /* For trapframe_t, used in <machine/machdep.h> */
54#include <machine/machdep.h>
55#include <machine/pmap.h>
56
57#include <arm/mv/mvreg.h>	/* XXX */
58#include <arm/mv/mvvar.h>	/* XXX eventually this should be eliminated */
59#include <arm/mv/mvwin.h>
60
61#include <dev/fdt/fdt_common.h>
62
63static int platform_mpp_init(void);
64#if defined(SOC_MV_ARMADAXP)
65void armadaxp_l2_init(void);
66#endif
67
68#define MPP_PIN_MAX		68
69#define MPP_PIN_CELLS		2
70#define MPP_PINS_PER_REG	8
71#define MPP_SEL(pin,func)	(((func) & 0xf) <<		\
72    (((pin) % MPP_PINS_PER_REG) * 4))
73
74static int
75platform_mpp_init(void)
76{
77	pcell_t pinmap[MPP_PIN_MAX * MPP_PIN_CELLS];
78	int mpp[MPP_PIN_MAX];
79	uint32_t ctrl_val, ctrl_offset;
80	pcell_t reg[4];
81	u_long start, size;
82	phandle_t node;
83	pcell_t pin_cells, *pinmap_ptr, pin_count;
84	ssize_t len;
85	int par_addr_cells, par_size_cells;
86	int tuple_size, tuples, rv, pins, i, j;
87	int mpp_pin, mpp_function;
88
89	/*
90	 * Try to access the MPP node directly i.e. through /aliases/mpp.
91	 */
92	if ((node = OF_finddevice("mpp")) != -1)
93		if (fdt_is_compatible(node, "mrvl,mpp"))
94			goto moveon;
95	/*
96	 * Find the node the long way.
97	 */
98	if ((node = OF_finddevice("/")) == -1)
99		return (ENXIO);
100
101	if ((node = fdt_find_compatible(node, "simple-bus", 0)) == 0)
102		return (ENXIO);
103
104	if ((node = fdt_find_compatible(node, "mrvl,mpp", 0)) == 0)
105		/*
106		 * No MPP node. Fall back to how MPP got set by the
107		 * first-stage loader and try to continue booting.
108		 */
109		return (0);
110moveon:
111	/*
112	 * Process 'reg' prop.
113	 */
114	if ((rv = fdt_addrsize_cells(OF_parent(node), &par_addr_cells,
115	    &par_size_cells)) != 0)
116		return(ENXIO);
117
118	tuple_size = sizeof(pcell_t) * (par_addr_cells + par_size_cells);
119	len = OF_getprop(node, "reg", reg, sizeof(reg));
120	tuples = len / tuple_size;
121	if (tuple_size <= 0)
122		return (EINVAL);
123
124	/*
125	 * Get address/size. XXX we assume only the first 'reg' tuple is used.
126	 */
127	rv = fdt_data_to_res(reg, par_addr_cells, par_size_cells,
128	    &start, &size);
129	if (rv != 0)
130		return (rv);
131	start += fdt_immr_va;
132
133	/*
134	 * Process 'pin-count' and 'pin-map' props.
135	 */
136	if (OF_getprop(node, "pin-count", &pin_count, sizeof(pin_count)) <= 0)
137		return (ENXIO);
138	pin_count = fdt32_to_cpu(pin_count);
139	if (pin_count > MPP_PIN_MAX)
140		return (ERANGE);
141
142	if (OF_getprop(node, "#pin-cells", &pin_cells, sizeof(pin_cells)) <= 0)
143		pin_cells = MPP_PIN_CELLS;
144	pin_cells = fdt32_to_cpu(pin_cells);
145	if (pin_cells > MPP_PIN_CELLS)
146		return (ERANGE);
147	tuple_size = sizeof(pcell_t) * pin_cells;
148
149	bzero(pinmap, sizeof(pinmap));
150	len = OF_getprop(node, "pin-map", pinmap, sizeof(pinmap));
151	if (len <= 0)
152		return (ERANGE);
153	if (len % tuple_size)
154		return (ERANGE);
155	pins = len / tuple_size;
156	if (pins > pin_count)
157		return (ERANGE);
158	/*
159	 * Fill out a "mpp[pin] => function" table. All pins unspecified in
160	 * the 'pin-map' property are defaulted to 0 function i.e. GPIO.
161	 */
162	bzero(mpp, sizeof(mpp));
163	pinmap_ptr = pinmap;
164	for (i = 0; i < pins; i++) {
165		mpp_pin = fdt32_to_cpu(*pinmap_ptr);
166		mpp_function = fdt32_to_cpu(*(pinmap_ptr + 1));
167		mpp[mpp_pin] = mpp_function;
168		pinmap_ptr += pin_cells;
169	}
170
171	/*
172	 * Prepare and program MPP control register values.
173	 */
174	ctrl_offset = 0;
175	for (i = 0; i < pin_count;) {
176		ctrl_val = 0;
177
178		for (j = 0; j < MPP_PINS_PER_REG; j++) {
179			if (i + j == pin_count - 1)
180				break;
181			ctrl_val |= MPP_SEL(i + j, mpp[i + j]);
182		}
183		i += MPP_PINS_PER_REG;
184		bus_space_write_4(fdtbus_bs_tag, start, ctrl_offset,
185		    ctrl_val);
186
187#if defined(SOC_MV_ORION)
188		/*
189		 * Third MPP reg on Orion SoC is placed
190		 * non-linearly (with different offset).
191		 */
192		if (i ==  (2 * MPP_PINS_PER_REG))
193			ctrl_offset = 0x50;
194		else
195#endif
196			ctrl_offset += 4;
197	}
198
199	return (0);
200}
201
202vm_offset_t
203initarm_lastaddr(void)
204{
205
206	if (fdt_immr_addr(MV_BASE) != 0)
207		while (1);
208
209	/* Platform-specific initialisation */
210	return (fdt_immr_va - ARM_NOCACHE_KVA_SIZE);
211}
212
213void
214initarm_gpio_init(void)
215{
216
217	/*
218	 * Re-initialise MPP. It is important to call this prior to using
219	 * console as the physical connection can be routed via MPP.
220	 */
221	if (platform_mpp_init() != 0)
222		while (1);
223}
224
225void
226initarm_late_init(void)
227{
228	/*
229	 * Re-initialise decode windows
230	 */
231#if !defined(SOC_MV_FREY)
232	if (soc_decode_win() != 0)
233		printf("WARNING: could not re-initialise decode windows! "
234		    "Running with existing settings...\n");
235#else
236	/* Disable watchdog and timers */
237	write_cpu_ctrl(CPU_TIMERS_BASE + CPU_TIMER_CONTROL, 0);
238#endif
239#if defined(SOC_MV_ARMADAXP)
240	armadaxp_l2_init();
241#endif
242}
243
244#define FDT_DEVMAP_MAX	(MV_WIN_CPU_MAX + 2)
245static struct pmap_devmap fdt_devmap[FDT_DEVMAP_MAX] = {
246	{ 0, 0, 0, 0, 0, }
247};
248
249static int
250platform_sram_devmap(struct pmap_devmap *map)
251{
252#if !defined(SOC_MV_ARMADAXP)
253	phandle_t child, root;
254	u_long base, size;
255	/*
256	 * SRAM range.
257	 */
258	if ((child = OF_finddevice("/sram")) != 0)
259		if (fdt_is_compatible(child, "mrvl,cesa-sram") ||
260		    fdt_is_compatible(child, "mrvl,scratchpad"))
261			goto moveon;
262
263	if ((root = OF_finddevice("/")) == 0)
264		return (ENXIO);
265
266	if ((child = fdt_find_compatible(root, "mrvl,cesa-sram", 0)) == 0 &&
267	    (child = fdt_find_compatible(root, "mrvl,scratchpad", 0)) == 0)
268			goto out;
269
270moveon:
271	if (fdt_regsize(child, &base, &size) != 0)
272		return (EINVAL);
273
274	map->pd_va = MV_CESA_SRAM_BASE; /* XXX */
275	map->pd_pa = base;
276	map->pd_size = size;
277	map->pd_prot = VM_PROT_READ | VM_PROT_WRITE;
278	map->pd_cache = PTE_NOCACHE;
279
280	return (0);
281out:
282#endif
283	return (ENOENT);
284
285}
286
287/*
288 * Supply a default do-nothing implementation of fdt_pci_devmap() via a weak
289 * alias.  Many Marvell platforms don't support a PCI interface, but to support
290 * those that do, we end up with a reference to this function below, in
291 * platform_devmap_init().  If "device pci" appears in the kernel config, the
292 * real implementation of this function in dev/fdt/fdt_pci.c overrides the weak
293 * alias defined here.
294 */
295int mv_default_fdt_pci_devmap(phandle_t node, struct pmap_devmap *devmap,
296    vm_offset_t io_va, vm_offset_t mem_va);
297int
298mv_default_fdt_pci_devmap(phandle_t node, struct pmap_devmap *devmap,
299    vm_offset_t io_va, vm_offset_t mem_va)
300{
301
302	return (0);
303}
304__weak_reference(mv_default_fdt_pci_devmap, fdt_pci_devmap);
305
306/*
307 * XXX: When device entry in devmap has pd_size smaller than section size,
308 * system will freeze during initialization
309 */
310
311/*
312 * Construct pmap_devmap[] with DT-derived config data.
313 */
314int
315platform_devmap_init(void)
316{
317	phandle_t root, child;
318	pcell_t bank_count;
319	int i, num_mapped;
320
321	i = 0;
322	pmap_devmap_bootstrap_table = &fdt_devmap[0];
323
324	/*
325	 * IMMR range.
326	 */
327	fdt_devmap[i].pd_va = fdt_immr_va;
328	fdt_devmap[i].pd_pa = fdt_immr_pa;
329	fdt_devmap[i].pd_size = fdt_immr_size;
330	fdt_devmap[i].pd_prot = VM_PROT_READ | VM_PROT_WRITE;
331	fdt_devmap[i].pd_cache = PTE_NOCACHE;
332	i++;
333
334	/*
335	 * SRAM range.
336	 */
337	if (i < FDT_DEVMAP_MAX)
338		if (platform_sram_devmap(&fdt_devmap[i]) == 0)
339			i++;
340
341	/*
342	 * PCI range(s).
343	 * PCI range(s) and localbus.
344	 */
345	if ((root = OF_finddevice("/")) == -1)
346		return (ENXIO);
347	for (child = OF_child(root); child != 0; child = OF_peer(child)) {
348		if (fdt_is_type(child, "pci") || fdt_is_type(child, "pciep")) {
349			/*
350			 * Check space: each PCI node will consume 2 devmap
351			 * entries.
352			 */
353			if (i + 1 >= FDT_DEVMAP_MAX)
354				return (ENOMEM);
355
356			/*
357			 * XXX this should account for PCI and multiple ranges
358			 * of a given kind.
359			 */
360			if (fdt_pci_devmap(child, &fdt_devmap[i], MV_PCI_VA_IO_BASE,
361				    MV_PCI_VA_MEM_BASE) != 0)
362				return (ENXIO);
363			i += 2;
364		}
365
366		if (fdt_is_compatible(child, "mrvl,lbc")) {
367			/* Check available space */
368			if (OF_getprop(child, "bank-count", (void *)&bank_count,
369			    sizeof(bank_count)) <= 0)
370				/* If no property, use default value */
371				bank_count = 1;
372			else
373				bank_count = fdt32_to_cpu(bank_count);
374
375			if ((i + bank_count) >= FDT_DEVMAP_MAX)
376				return (ENOMEM);
377
378			/* Add all localbus ranges to device map */
379			num_mapped = 0;
380
381			if (fdt_localbus_devmap(child, &fdt_devmap[i],
382			    (int)bank_count, &num_mapped) != 0)
383				return (ENXIO);
384
385			i += num_mapped;
386		}
387	}
388
389	return (0);
390}
391
392struct arm32_dma_range *
393bus_dma_get_range(void)
394{
395
396	return (NULL);
397}
398
399int
400bus_dma_get_range_nb(void)
401{
402
403	return (0);
404}
405
406#if defined(CPU_MV_PJ4B)
407#ifdef DDB
408#include <ddb/ddb.h>
409
410DB_SHOW_COMMAND(cp15, db_show_cp15)
411{
412	u_int reg;
413
414	__asm __volatile("mrc p15, 0, %0, c0, c0, 0" : "=r" (reg));
415	db_printf("Cpu ID: 0x%08x\n", reg);
416	__asm __volatile("mrc p15, 0, %0, c0, c0, 1" : "=r" (reg));
417	db_printf("Current Cache Lvl ID: 0x%08x\n",reg);
418
419	__asm __volatile("mrc p15, 0, %0, c1, c0, 0" : "=r" (reg));
420	db_printf("Ctrl: 0x%08x\n",reg);
421	__asm __volatile("mrc p15, 0, %0, c1, c0, 1" : "=r" (reg));
422	db_printf("Aux Ctrl: 0x%08x\n",reg);
423
424	__asm __volatile("mrc p15, 0, %0, c0, c1, 0" : "=r" (reg));
425	db_printf("Processor Feat 0: 0x%08x\n", reg);
426	__asm __volatile("mrc p15, 0, %0, c0, c1, 1" : "=r" (reg));
427	db_printf("Processor Feat 1: 0x%08x\n", reg);
428	__asm __volatile("mrc p15, 0, %0, c0, c1, 2" : "=r" (reg));
429	db_printf("Debug Feat 0: 0x%08x\n", reg);
430	__asm __volatile("mrc p15, 0, %0, c0, c1, 3" : "=r" (reg));
431	db_printf("Auxiliary Feat 0: 0x%08x\n", reg);
432	__asm __volatile("mrc p15, 0, %0, c0, c1, 4" : "=r" (reg));
433	db_printf("Memory Model Feat 0: 0x%08x\n", reg);
434	__asm __volatile("mrc p15, 0, %0, c0, c1, 5" : "=r" (reg));
435	db_printf("Memory Model Feat 1: 0x%08x\n", reg);
436	__asm __volatile("mrc p15, 0, %0, c0, c1, 6" : "=r" (reg));
437	db_printf("Memory Model Feat 2: 0x%08x\n", reg);
438	__asm __volatile("mrc p15, 0, %0, c0, c1, 7" : "=r" (reg));
439	db_printf("Memory Model Feat 3: 0x%08x\n", reg);
440
441	__asm __volatile("mrc p15, 1, %0, c15, c2, 0" : "=r" (reg));
442	db_printf("Aux Func Modes Ctrl 0: 0x%08x\n",reg);
443	__asm __volatile("mrc p15, 1, %0, c15, c2, 1" : "=r" (reg));
444	db_printf("Aux Func Modes Ctrl 1: 0x%08x\n",reg);
445
446	__asm __volatile("mrc p15, 1, %0, c15, c12, 0" : "=r" (reg));
447	db_printf("CPU ID code extension: 0x%08x\n",reg);
448}
449
450DB_SHOW_COMMAND(vtop, db_show_vtop)
451{
452	u_int reg;
453
454	if (have_addr) {
455		__asm __volatile("mcr p15, 0, %0, c7, c8, 0" : : "r" (addr));
456		__asm __volatile("mrc p15, 0, %0, c7, c4, 0" : "=r" (reg));
457		db_printf("Physical address reg: 0x%08x\n",reg);
458	} else
459		db_printf("show vtop <virt_addr>\n");
460}
461#endif /* DDB */
462#endif /* CPU_MV_PJ4B */
463
464