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