Home | History | Annotate | Line # | Download | only in xscale
pxa2x0.c revision 1.13.10.1
      1  1.13.10.1      yamt /*	$NetBSD: pxa2x0.c,v 1.13.10.1 2006/12/18 11:42:04 yamt Exp $ */
      2        1.1       bsh 
      3        1.1       bsh /*
      4        1.7       bsh  * Copyright (c) 2002, 2005  Genetec Corporation.  All rights reserved.
      5        1.1       bsh  * Written by Hiroyuki Bessho for Genetec Corporation.
      6        1.1       bsh  *
      7        1.1       bsh  * Redistribution and use in source and binary forms, with or without
      8        1.1       bsh  * modification, are permitted provided that the following conditions
      9        1.1       bsh  * are met:
     10        1.1       bsh  * 1. Redistributions of source code must retain the above copyright
     11        1.1       bsh  *    notice, this list of conditions and the following disclaimer.
     12        1.1       bsh  * 2. Redistributions in binary form must reproduce the above copyright
     13        1.1       bsh  *    notice, this list of conditions and the following disclaimer in the
     14        1.1       bsh  *    documentation and/or other materials provided with the distribution.
     15        1.1       bsh  * 3. All advertising materials mentioning features or use of this software
     16        1.1       bsh  *    must display the following acknowledgement:
     17        1.1       bsh  *	This product includes software developed for the NetBSD Project by
     18        1.1       bsh  *	Genetec Corporation.
     19        1.1       bsh  * 4. The name of Genetec Corporation may not be used to endorse or
     20        1.1       bsh  *    promote products derived from this software without specific prior
     21        1.1       bsh  *    written permission.
     22        1.1       bsh  *
     23        1.1       bsh  * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND
     24        1.1       bsh  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25        1.1       bsh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26        1.1       bsh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORPORATION
     27        1.1       bsh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28        1.1       bsh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29        1.1       bsh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30        1.1       bsh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31        1.1       bsh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32        1.1       bsh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33        1.1       bsh  * POSSIBILITY OF SUCH DAMAGE.
     34        1.1       bsh  *
     35        1.1       bsh  *
     36        1.1       bsh  * Autoconfiguration support for the Intel PXA2[15]0 application
     37        1.1       bsh  * processor. This code is derived from arm/sa11x0/sa11x0.c
     38        1.1       bsh  */
     39        1.1       bsh 
     40        1.1       bsh /*-
     41        1.1       bsh  * Copyright (c) 2001, The NetBSD Foundation, Inc.  All rights reserved.
     42        1.1       bsh  *
     43        1.1       bsh  * This code is derived from software contributed to The NetBSD Foundation
     44        1.1       bsh  * by IWAMOTO Toshihiro and Ichiro FUKUHARA.
     45        1.1       bsh  *
     46        1.1       bsh  * Redistribution and use in source and binary forms, with or without
     47        1.1       bsh  * modification, are permitted provided that the following conditions
     48        1.1       bsh  * are met:
     49        1.1       bsh  * 1. Redistributions of source code must retain the above copyright
     50        1.1       bsh  *    notice, this list of conditions and the following disclaimer.
     51        1.1       bsh  * 2. Redistributions in binary form must reproduce the above copyright
     52        1.1       bsh  *    notice, this list of conditions and the following disclaimer in the
     53        1.1       bsh  *    documentation and/or other materials provided with the distribution.
     54        1.1       bsh  * 3. All advertising materials mentioning features or use of this software
     55        1.1       bsh  *    must display the following acknowledgement:
     56        1.1       bsh  *      This product includes software developed by the NetBSD
     57        1.1       bsh  *      Foundation, Inc. and its contributors.
     58        1.1       bsh  * 4. Neither the name of The NetBSD Foundation nor the names of its
     59        1.1       bsh  *    contributors may be used to endorse or promote products derived
     60        1.1       bsh  *    from this software without specific prior written permission.
     61        1.1       bsh  */
     62        1.1       bsh /*-
     63        1.1       bsh  * Copyright (c) 1999
     64        1.1       bsh  *         Shin Takemura and PocketBSD Project. All rights reserved.
     65        1.1       bsh  *
     66        1.1       bsh  * Redistribution and use in source and binary forms, with or without
     67        1.1       bsh  * modification, are permitted provided that the following conditions
     68        1.1       bsh  * are met:
     69        1.1       bsh  * 1. Redistributions of source code must retain the above copyright
     70        1.1       bsh  *    notice, this list of conditions and the following disclaimer.
     71        1.1       bsh  * 2. Redistributions in binary form must reproduce the above copyright
     72        1.1       bsh  *    notice, this list of conditions and the following disclaimer in the
     73        1.1       bsh  *    documentation and/or other materials provided with the distribution.
     74        1.1       bsh  * 3. All advertising materials mentioning features or use of this software
     75        1.1       bsh  *    must display the following acknowledgement:
     76        1.1       bsh  *	This product includes software developed by the PocketBSD project
     77        1.1       bsh  *	and its contributors.
     78        1.1       bsh  * 4. Neither the name of the project nor the names of its contributors
     79        1.1       bsh  *    may be used to endorse or promote products derived from this software
     80        1.1       bsh  *    without specific prior written permission.
     81        1.1       bsh  *
     82        1.1       bsh  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     83        1.1       bsh  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     84        1.1       bsh  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     85        1.1       bsh  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     86        1.1       bsh  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     87        1.1       bsh  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     88        1.1       bsh  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     89        1.1       bsh  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     90        1.1       bsh  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     91        1.1       bsh  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     92        1.1       bsh  * SUCH DAMAGE.
     93        1.1       bsh  *
     94        1.1       bsh  */
     95        1.4     lukem 
     96        1.4     lukem #include <sys/cdefs.h>
     97  1.13.10.1      yamt __KERNEL_RCSID(0, "$NetBSD: pxa2x0.c,v 1.13.10.1 2006/12/18 11:42:04 yamt Exp $");
     98        1.1       bsh 
     99        1.3       scw #include "pxaintc.h"
    100        1.3       scw #include "pxagpio.h"
    101        1.3       scw #if 0
    102        1.3       scw #include "pxadmac.h"	/* Not yet */
    103        1.3       scw #endif
    104        1.3       scw 
    105        1.3       scw #include "locators.h"
    106        1.3       scw 
    107        1.1       bsh #include <sys/param.h>
    108        1.1       bsh #include <sys/systm.h>
    109        1.1       bsh #include <sys/device.h>
    110        1.1       bsh #include <sys/kernel.h>
    111        1.1       bsh #include <sys/reboot.h>
    112        1.1       bsh 
    113        1.1       bsh #include <machine/cpu.h>
    114        1.1       bsh #include <machine/bus.h>
    115        1.1       bsh 
    116        1.1       bsh #include <arm/cpufunc.h>
    117        1.1       bsh #include <arm/mainbus/mainbus.h>
    118        1.8       bsh #include <arm/xscale/pxa2x0cpu.h>
    119        1.1       bsh #include <arm/xscale/pxa2x0reg.h>
    120        1.1       bsh #include <arm/xscale/pxa2x0var.h>
    121        1.7       bsh #include <arm/xscale/xscalereg.h>
    122        1.1       bsh 
    123        1.3       scw struct pxaip_softc {
    124        1.3       scw 	struct device sc_dev;
    125        1.3       scw 	bus_space_tag_t sc_bust;
    126        1.3       scw 	bus_dma_tag_t sc_dmat;
    127        1.3       scw 	bus_space_handle_t sc_bush_clk;
    128  1.13.10.1      yamt 	bus_space_handle_t sc_bush_mem;
    129        1.3       scw };
    130        1.1       bsh 
    131        1.1       bsh /* prototypes */
    132        1.3       scw static int	pxaip_match(struct device *, struct cfdata *, void *);
    133        1.3       scw static void	pxaip_attach(struct device *, struct device *, void *);
    134        1.6  drochner static int 	pxaip_search(struct device *, struct cfdata *,
    135        1.9  drochner 			     const int *, void *);
    136        1.3       scw static void	pxaip_attach_critical(struct pxaip_softc *);
    137        1.3       scw static int	pxaip_print(void *, const char *);
    138        1.3       scw 
    139        1.3       scw static int	pxaip_measure_cpuclock(struct pxaip_softc *);
    140        1.1       bsh 
    141        1.8       bsh #if defined(CPU_XSCALE_PXA250) && defined(CPU_XSCALE_PXA270)
    142        1.8       bsh # define SUPPORTED_CPU	"PXA250 and PXA270"
    143        1.8       bsh #elif defined(CPU_XSCALE_PXA250)
    144        1.8       bsh # define SUPPORTED_CPU	"PXA250"
    145        1.8       bsh #elif defined(CPU_XSCALE_PXA270)
    146        1.8       bsh # define SUPPORTED_CPU	"PXA270"
    147        1.8       bsh #else
    148        1.8       bsh # define SUPPORTED_CPU	"none of PXA2xx"
    149        1.8       bsh #endif
    150        1.8       bsh 
    151        1.1       bsh /* attach structures */
    152        1.3       scw CFATTACH_DECL(pxaip, sizeof(struct pxaip_softc),
    153        1.3       scw     pxaip_match, pxaip_attach, NULL, NULL);
    154        1.1       bsh 
    155        1.3       scw static struct pxaip_softc *pxaip_sc;
    156  1.13.10.1      yamt static vaddr_t pxamemctl_regs;
    157  1.13.10.1      yamt #define MEMCTL_BOOTSTRAP_REG(reg) \
    158  1.13.10.1      yamt 	(*((volatile uint32_t *)(pxamemctl_regs + (reg))))
    159  1.13.10.1      yamt static vaddr_t pxaclkman_regs;
    160  1.13.10.1      yamt #define CLKMAN_BOOTSTRAP_REG(reg) \
    161  1.13.10.1      yamt 	(*((volatile uint32_t *)(pxaclkman_regs + (reg))))
    162        1.1       bsh 
    163        1.1       bsh static int
    164        1.3       scw pxaip_match(struct device *parent, struct cfdata *match, void *aux)
    165        1.1       bsh {
    166        1.1       bsh 
    167        1.8       bsh #if	!defined(CPU_XSCALE_PXA270)
    168        1.8       bsh 	if (__CPU_IS_PXA270)
    169        1.8       bsh 		goto bad_config;
    170        1.8       bsh #endif
    171        1.8       bsh 
    172        1.8       bsh #if	!defined(CPU_XSCALE_PXA250)
    173        1.8       bsh 	if (__CPU_IS_PXA250)
    174        1.8       bsh 		goto bad_config;
    175        1.8       bsh #endif
    176        1.8       bsh 
    177        1.1       bsh 	return 1;
    178        1.8       bsh 
    179        1.8       bsh #if	defined(CPU_XSCALE_PXA250) + defined(CPU_XSCALE_PXA270) != 2
    180        1.8       bsh  bad_config:
    181        1.8       bsh 	aprint_error("Kernel is configured for %s, but CPU is %s\n",
    182        1.8       bsh 		     SUPPORTED_CPU, __CPU_IS_PXA270 ? "PXA270" : "PXA250");
    183        1.8       bsh 	return 0;
    184        1.8       bsh #endif
    185        1.1       bsh }
    186        1.1       bsh 
    187        1.3       scw static void
    188        1.3       scw pxaip_attach(struct device *parent, struct device *self, void *aux)
    189        1.1       bsh {
    190        1.3       scw 	struct pxaip_softc *sc = (struct pxaip_softc *)self;
    191        1.3       scw 	int cpuclock;
    192        1.1       bsh 
    193        1.3       scw 	pxaip_sc = sc;
    194        1.3       scw 	sc->sc_bust = &pxa2x0_bs_tag;
    195        1.3       scw 	sc->sc_dmat = &pxa2x0_bus_dma_tag;
    196        1.3       scw 
    197        1.3       scw 	aprint_normal(": PXA2x0 Onchip Peripheral Bus\n");
    198        1.3       scw 
    199        1.3       scw 	if (bus_space_map(sc->sc_bust, PXA2X0_CLKMAN_BASE, PXA2X0_CLKMAN_SIZE,
    200        1.3       scw 	    0, &sc->sc_bush_clk))
    201        1.3       scw 		panic("pxaip_attach: failed to map CLKMAN");
    202        1.1       bsh 
    203  1.13.10.1      yamt 	if (bus_space_map(sc->sc_bust, PXA2X0_MEMCTL_BASE, PXA2X0_MEMCTL_SIZE,
    204  1.13.10.1      yamt 	    0, &sc->sc_bush_mem))
    205  1.13.10.1      yamt 		panic("pxaip_attach: failed to map MEMCTL");
    206  1.13.10.1      yamt 
    207        1.3       scw 	/*
    208        1.3       scw 	 * Calculate clock speed
    209        1.3       scw 	 * This takes 2 secs at most.
    210        1.3       scw 	 */
    211        1.3       scw 	cpuclock = pxaip_measure_cpuclock(sc) / 1000;
    212        1.3       scw 	printf("%s: CPU clock = %d.%03d MHz\n", self->dv_xname,
    213        1.3       scw 	    cpuclock/1000, cpuclock%1000 );
    214        1.1       bsh 
    215        1.8       bsh 	aprint_normal("%s: kernel is configured for " SUPPORTED_CPU
    216        1.8       bsh 		      ", cpu type is %s\n",
    217        1.8       bsh 		      self->dv_xname,
    218        1.8       bsh 		      __CPU_IS_PXA270 ? "PXA270" : "PXA250");
    219        1.8       bsh 
    220        1.1       bsh 	/*
    221        1.3       scw 	 * Attach critical devices
    222        1.1       bsh 	 */
    223        1.3       scw 	pxaip_attach_critical(sc);
    224        1.1       bsh 
    225        1.3       scw 	/*
    226        1.3       scw 	 * Attach all other devices
    227        1.3       scw 	 */
    228        1.6  drochner 	config_search_ia(pxaip_search, self, "pxaip", sc);
    229        1.1       bsh }
    230        1.1       bsh 
    231        1.3       scw static int
    232        1.6  drochner pxaip_search(struct device *parent, struct cfdata *cf,
    233        1.9  drochner 	     const int *ldesc, void *aux)
    234        1.1       bsh {
    235        1.3       scw 	struct pxaip_softc *sc = aux;
    236        1.3       scw 	struct pxaip_attach_args aa;
    237        1.1       bsh 
    238       1.12    simonb 	aa.pxa_iot = sc->sc_bust;
    239       1.12    simonb 	aa.pxa_dmat = sc->sc_dmat;
    240       1.12    simonb 	aa.pxa_addr = cf->cf_loc[PXAIPCF_ADDR];
    241       1.12    simonb 	aa.pxa_size = cf->cf_loc[PXAIPCF_SIZE];
    242        1.1       bsh 	aa.pxa_index = cf->cf_loc[PXAIPCF_INDEX];
    243       1.12    simonb 	aa.pxa_intr = cf->cf_loc[PXAIPCF_INTR];
    244        1.1       bsh 
    245       1.12    simonb 	if (config_match(parent, cf, &aa))
    246       1.12    simonb 		config_attach(parent, cf, &aa, pxaip_print);
    247        1.1       bsh 
    248       1.12    simonb 	return 0;
    249        1.1       bsh }
    250        1.1       bsh 
    251        1.3       scw static void
    252        1.3       scw pxaip_attach_critical(struct pxaip_softc *sc)
    253        1.3       scw {
    254        1.3       scw 	struct pxaip_attach_args aa;
    255        1.3       scw 
    256       1.12    simonb 	aa.pxa_iot = sc->sc_bust;
    257       1.12    simonb 	aa.pxa_dmat = sc->sc_dmat;
    258       1.12    simonb 	aa.pxa_addr = PXA2X0_INTCTL_BASE;
    259       1.12    simonb 	aa.pxa_size = PXA2X0_INTCTL_SIZE;
    260       1.12    simonb 	aa.pxa_intr = PXAIPCF_INTR_DEFAULT;
    261        1.3       scw 	if (config_found(&sc->sc_dev, &aa, pxaip_print) == NULL)
    262        1.3       scw 		panic("pxaip_attach_critical: failed to attach INTC!");
    263        1.3       scw 
    264        1.3       scw #if NPXAGPIO > 0
    265       1.12    simonb 	aa.pxa_iot = sc->sc_bust;
    266       1.12    simonb 	aa.pxa_dmat = sc->sc_dmat;
    267       1.12    simonb 	aa.pxa_addr = PXA2X0_GPIO_BASE;
    268       1.12    simonb 	aa.pxa_size = PXA2X0_GPIO_SIZE;
    269       1.12    simonb 	aa.pxa_intr = PXAIPCF_INTR_DEFAULT;
    270        1.3       scw 	if (config_found(&sc->sc_dev, &aa, pxaip_print) == NULL)
    271        1.3       scw 		panic("pxaip_attach_critical: failed to attach GPIO!");
    272        1.3       scw #endif
    273        1.3       scw 
    274        1.3       scw #if NPXADMAC > 0
    275       1.12    simonb 	aa.pxa_iot = sc->sc_bust;
    276       1.12    simonb 	aa.pxa_dmat = sc->sc_dmat;
    277       1.12    simonb 	aa.pxa_addr = PXA2X0_DMAC_BASE;
    278       1.12    simonb 	aa.pxa_size = PXA2X0_DMAC_SIZE;
    279       1.12    simonb 	aa.pxa_intr = PXA2X0_INT_DMA;
    280        1.3       scw 	if (config_found(&sc->sc_dev, &aa, pxaip_print) == NULL)
    281        1.3       scw 		panic("pxaip_attach_critical: failed to attach DMAC!");
    282        1.3       scw #endif
    283        1.3       scw }
    284        1.3       scw 
    285        1.3       scw static int
    286        1.3       scw pxaip_print(void *aux, const char *name)
    287        1.3       scw {
    288        1.3       scw 	struct pxaip_attach_args *sa = (struct pxaip_attach_args*)aux;
    289        1.3       scw 
    290        1.3       scw 	if (sa->pxa_addr != PXAIPCF_ADDR_DEFAULT) {
    291       1.12    simonb 		aprint_normal(" addr 0x%lx", sa->pxa_addr);
    292       1.12    simonb 		if (sa->pxa_size > PXAIPCF_SIZE_DEFAULT)
    293       1.12    simonb 			aprint_normal("-0x%lx", sa->pxa_addr + sa->pxa_size-1);
    294        1.3       scw 	}
    295       1.12    simonb 	if (sa->pxa_intr != PXAIPCF_INTR_DEFAULT)
    296       1.12    simonb 		aprint_normal(" intr %d", sa->pxa_intr);
    297        1.3       scw 
    298       1.12    simonb 	return (UNCONF);
    299        1.3       scw }
    300        1.3       scw 
    301        1.1       bsh static inline uint32_t
    302        1.8       bsh read_clock_counter_xsc1(void)
    303        1.1       bsh {
    304       1.12    simonb 	uint32_t x;
    305       1.12    simonb 	__asm volatile("mrc	p14, 0, %0, c1, c0, 0" : "=r" (x) );
    306        1.1       bsh 
    307       1.12    simonb 	return x;
    308        1.1       bsh }
    309        1.1       bsh 
    310        1.8       bsh static inline uint32_t
    311        1.8       bsh read_clock_counter_xsc2(void)
    312        1.8       bsh {
    313       1.12    simonb 	uint32_t x;
    314       1.12    simonb 	__asm volatile("mrc	p14, 0, %0, c1, c1, 0" : "=r" (x) );
    315        1.8       bsh 
    316       1.12    simonb 	return x;
    317        1.8       bsh }
    318        1.8       bsh 
    319        1.3       scw static int
    320        1.3       scw pxaip_measure_cpuclock(struct pxaip_softc *sc)
    321        1.1       bsh {
    322        1.1       bsh 	uint32_t rtc0, rtc1, start, end;
    323        1.1       bsh 	uint32_t pmcr_save;
    324        1.3       scw 	bus_space_handle_t ioh;
    325        1.3       scw 	int irq;
    326        1.8       bsh 	int is_xsc2 = CPU_IS_PXA270;
    327        1.8       bsh #define	read_clock_counter()	(is_xsc2 ? read_clock_counter_xsc2() : \
    328        1.8       bsh 					read_clock_counter_xsc1())
    329        1.3       scw 
    330        1.3       scw 	if (bus_space_map(sc->sc_bust, PXA2X0_RTC_BASE, PXA2X0_RTC_SIZE, 0,
    331        1.3       scw 	    &ioh))
    332        1.3       scw 		panic("pxaip_measure_cpuclock: can't map RTC");
    333        1.3       scw 
    334        1.3       scw 	irq = disable_interrupts(I32_bit|F32_bit);
    335        1.1       bsh 
    336        1.8       bsh 	if (is_xsc2) {
    337       1.11     perry 		__asm volatile(
    338        1.8       bsh 			"mrc p14, 0, %0, c0, c1, 0" : "=r" (pmcr_save));
    339        1.8       bsh 		/* Enable clock counter */
    340       1.11     perry 		__asm volatile(
    341        1.8       bsh 			"mcr p14, 0, %0, c0, c1, 0" : : "r" (PMNC_E|PMNC_C));
    342        1.8       bsh 	}
    343        1.8       bsh 	else {
    344       1.11     perry 		__asm volatile(
    345        1.8       bsh 			"mrc p14, 0, %0, c0, c0, 0" : "=r" (pmcr_save));
    346        1.8       bsh 		/* Enable clock counter */
    347       1.11     perry 		__asm volatile(
    348        1.8       bsh 			"mcr p14, 0, %0, c0, c0, 0" : : "r" (PMNC_E|PMNC_C));
    349        1.8       bsh 	}
    350        1.1       bsh 
    351        1.3       scw 	rtc0 = bus_space_read_4(sc->sc_bust, ioh, RTC_RCNR);
    352        1.1       bsh 	/* Wait for next second starts */
    353        1.3       scw 	while ((rtc1 = bus_space_read_4(sc->sc_bust, ioh, RTC_RCNR)) == rtc0)
    354        1.1       bsh 		;
    355        1.1       bsh 	start = read_clock_counter();
    356        1.3       scw 	while(rtc1 == bus_space_read_4(sc->sc_bust, ioh, RTC_RCNR))
    357        1.1       bsh 		;		/* Wait for 1sec */
    358        1.1       bsh 	end = read_clock_counter();
    359        1.1       bsh 
    360        1.8       bsh 	if (is_xsc2)
    361       1.11     perry 		__asm volatile(
    362        1.8       bsh 			"mcr p14, 0, %0, c0, c1, 0" : : "r" (pmcr_save));
    363        1.8       bsh 	else
    364       1.11     perry 		__asm volatile(
    365        1.8       bsh 			"mcr p14, 0, %0, c0, c0, 0" : : "r" (pmcr_save));
    366        1.1       bsh 	restore_interrupts(irq);
    367        1.1       bsh 
    368        1.3       scw 	bus_space_unmap(sc->sc_bust, ioh, PXA2X0_RTC_SIZE);
    369        1.3       scw 
    370        1.1       bsh 	return end - start;
    371        1.1       bsh }
    372        1.1       bsh 
    373        1.1       bsh void
    374        1.7       bsh pxa2x0_turbo_mode(int f)
    375        1.1       bsh {
    376       1.12    simonb 	__asm volatile("mcr p14, 0, %0, c6, c0, 0" : : "r" (f));
    377        1.3       scw }
    378        1.3       scw 
    379        1.3       scw void
    380        1.3       scw pxa2x0_probe_sdram(vaddr_t memctl_va, paddr_t *start, paddr_t *size)
    381        1.3       scw {
    382        1.3       scw 	u_int32_t mdcnfg, dwid, dcac, drac, dnb;
    383        1.3       scw 	int i;
    384        1.3       scw 
    385        1.3       scw 	mdcnfg = *((volatile u_int32_t *)(memctl_va + MEMCTL_MDCNFG));
    386        1.3       scw 
    387        1.3       scw 	/*
    388        1.3       scw 	 * Scan all 4 SDRAM banks
    389        1.3       scw 	 */
    390        1.3       scw 	for (i = 0; i < PXA2X0_SDRAM_BANKS; i++) {
    391        1.3       scw 		start[i] = 0;
    392        1.3       scw 		size[i] = 0;
    393        1.3       scw 
    394        1.3       scw 		switch (i) {
    395        1.3       scw 		case 0:
    396        1.3       scw 		case 1:
    397        1.3       scw 			if ((i == 0 && (mdcnfg & MDCNFG_DE0) == 0) ||
    398        1.3       scw 			    (i == 1 && (mdcnfg & MDCNFG_DE1) == 0))
    399        1.3       scw 				continue;
    400        1.3       scw 			dwid = mdcnfg >> MDCNFD_DWID01_SHIFT;
    401        1.3       scw 			dcac = mdcnfg >> MDCNFD_DCAC01_SHIFT;
    402        1.3       scw 			drac = mdcnfg >> MDCNFD_DRAC01_SHIFT;
    403        1.3       scw 			dnb = mdcnfg >> MDCNFD_DNB01_SHIFT;
    404        1.3       scw 			break;
    405        1.3       scw 
    406        1.3       scw 		case 2:
    407        1.3       scw 		case 3:
    408        1.3       scw 			if ((i == 2 && (mdcnfg & MDCNFG_DE2) == 0) ||
    409        1.3       scw 			    (i == 3 && (mdcnfg & MDCNFG_DE3) == 0))
    410        1.3       scw 				continue;
    411        1.3       scw 			dwid = mdcnfg >> MDCNFD_DWID23_SHIFT;
    412        1.3       scw 			dcac = mdcnfg >> MDCNFD_DCAC23_SHIFT;
    413        1.3       scw 			drac = mdcnfg >> MDCNFD_DRAC23_SHIFT;
    414        1.3       scw 			dnb = mdcnfg >> MDCNFD_DNB23_SHIFT;
    415        1.3       scw 			break;
    416        1.5   thorpej 		default:
    417        1.5   thorpej 			panic("pxa2x0_probe_sdram: impossible");
    418        1.3       scw 		}
    419        1.3       scw 
    420        1.3       scw 		dwid = 2 << (1 - (dwid & MDCNFD_DWID_MASK));  /* 16/32 width */
    421        1.3       scw 		dcac = 1 << ((dcac & MDCNFD_DCAC_MASK) + 8);  /* 8-11 columns */
    422        1.3       scw 		drac = 1 << ((drac & MDCNFD_DRAC_MASK) + 11); /* 11-13 rows */
    423        1.3       scw 		dnb = 2 << (dnb & MDCNFD_DNB_MASK);	      /* # of banks */
    424        1.3       scw 
    425        1.3       scw 		size[i] = (paddr_t)(dwid * dcac * drac * dnb);
    426        1.3       scw 		start[i] = PXA2X0_SDRAM0_START + (i * PXA2X0_SDRAM_BANK_SIZE);
    427        1.3       scw 	}
    428        1.3       scw }
    429        1.3       scw 
    430        1.3       scw void
    431  1.13.10.1      yamt pxa2x0_memctl_bootstrap(vaddr_t va)
    432  1.13.10.1      yamt {
    433  1.13.10.1      yamt 
    434  1.13.10.1      yamt 	pxamemctl_regs = va;
    435  1.13.10.1      yamt }
    436  1.13.10.1      yamt 
    437  1.13.10.1      yamt uint32_t
    438  1.13.10.1      yamt pxa2x0_memctl_read(int reg)
    439        1.3       scw {
    440        1.3       scw 	struct pxaip_softc *sc;
    441  1.13.10.1      yamt 	bus_space_tag_t iot;
    442  1.13.10.1      yamt 	bus_space_handle_t ioh;
    443        1.3       scw 
    444  1.13.10.1      yamt 	if (__predict_true(pxaip_sc != NULL)) {
    445  1.13.10.1      yamt 		sc = pxaip_sc;
    446  1.13.10.1      yamt 		iot = sc->sc_bust;
    447  1.13.10.1      yamt 		ioh = sc->sc_bush_mem;
    448  1.13.10.1      yamt 		return (bus_space_read_4(iot, ioh, reg));
    449  1.13.10.1      yamt 	} else if (__predict_true(pxamemctl_regs != 0)) {
    450  1.13.10.1      yamt 		return (MEMCTL_BOOTSTRAP_REG(reg));
    451  1.13.10.1      yamt 	}
    452  1.13.10.1      yamt 	panic("pxa2x0_memctl_read: not bootstrapped");
    453  1.13.10.1      yamt 	/*NOTREACHED*/
    454  1.13.10.1      yamt }
    455        1.3       scw 
    456  1.13.10.1      yamt void
    457  1.13.10.1      yamt pxa2x0_memctl_write(int reg, uint32_t val)
    458  1.13.10.1      yamt {
    459  1.13.10.1      yamt 	struct pxaip_softc *sc;
    460  1.13.10.1      yamt 	bus_space_tag_t iot;
    461  1.13.10.1      yamt 	bus_space_handle_t ioh;
    462        1.3       scw 
    463  1.13.10.1      yamt 	if (__predict_true(pxaip_sc != NULL)) {
    464  1.13.10.1      yamt 		sc = pxaip_sc;
    465  1.13.10.1      yamt 		iot = sc->sc_bust;
    466  1.13.10.1      yamt 		ioh = sc->sc_bush_mem;
    467  1.13.10.1      yamt 		bus_space_write_4(iot, ioh, reg, val);
    468  1.13.10.1      yamt 	} else if (__predict_true(pxamemctl_regs != 0)) {
    469  1.13.10.1      yamt 		MEMCTL_BOOTSTRAP_REG(reg) = val;
    470  1.13.10.1      yamt 	} else {
    471  1.13.10.1      yamt 		panic("pxa2x0_memctl_write: not bootstrapped");
    472  1.13.10.1      yamt 	}
    473  1.13.10.1      yamt 	return;
    474  1.13.10.1      yamt }
    475  1.13.10.1      yamt 
    476  1.13.10.1      yamt void
    477  1.13.10.1      yamt pxa2x0_clkman_bootstrap(vaddr_t va)
    478  1.13.10.1      yamt {
    479        1.3       scw 
    480  1.13.10.1      yamt 	pxaclkman_regs = va;
    481  1.13.10.1      yamt }
    482  1.13.10.1      yamt 
    483  1.13.10.1      yamt void
    484  1.13.10.1      yamt pxa2x0_clkman_config(u_int clk, boolean_t enable)
    485  1.13.10.1      yamt {
    486  1.13.10.1      yamt 	struct pxaip_softc *sc;
    487  1.13.10.1      yamt 	bus_space_tag_t iot;
    488  1.13.10.1      yamt 	bus_space_handle_t ioh;
    489  1.13.10.1      yamt 	uint32_t rv;
    490  1.13.10.1      yamt 
    491  1.13.10.1      yamt 	if (__predict_true(pxaip_sc != NULL)) {
    492  1.13.10.1      yamt 		sc = pxaip_sc;
    493  1.13.10.1      yamt 		iot = sc->sc_bust;
    494  1.13.10.1      yamt 		ioh = sc->sc_bush_clk;
    495  1.13.10.1      yamt 
    496  1.13.10.1      yamt 		rv = bus_space_read_4(iot, ioh, CLKMAN_CKEN);
    497  1.13.10.1      yamt 		rv &= ~clk;
    498  1.13.10.1      yamt 		if (enable)
    499  1.13.10.1      yamt 			rv |= clk;
    500  1.13.10.1      yamt 		bus_space_write_4(iot, ioh, CLKMAN_CKEN, rv);
    501  1.13.10.1      yamt 		return;
    502  1.13.10.1      yamt 	} else if (__predict_true(pxaclkman_regs != 0)) {
    503  1.13.10.1      yamt 		rv = CLKMAN_BOOTSTRAP_REG(CLKMAN_CKEN);
    504  1.13.10.1      yamt 		rv &= ~clk;
    505  1.13.10.1      yamt 		if (enable)
    506  1.13.10.1      yamt 			rv |= clk;
    507  1.13.10.1      yamt 		CLKMAN_BOOTSTRAP_REG(CLKMAN_CKEN) = rv;
    508  1.13.10.1      yamt 		return;
    509  1.13.10.1      yamt 	}
    510  1.13.10.1      yamt 	panic("pxa2x0_clkman_config: not bootstrapped");
    511        1.1       bsh }
    512