Home | History | Annotate | Line # | Download | only in footbridge
      1  1.11   andvar /*	$NetBSD: footbridge_machdep.c,v 1.11 2021/08/17 22:00:27 andvar Exp $	*/
      2   1.1    chris 
      3   1.1    chris /*
      4   1.1    chris  * Copyright (c) 1997 Mark Brinicombe.
      5   1.1    chris  * Copyright (c) 1997 Causality Limited
      6   1.1    chris  * All rights reserved.
      7   1.1    chris  *
      8   1.1    chris  * Redistribution and use in source and binary forms, with or without
      9   1.1    chris  * modification, are permitted provided that the following conditions
     10   1.1    chris  * are met:
     11   1.1    chris  * 1. Redistributions of source code must retain the above copyright
     12   1.1    chris  *    notice, this list of conditions and the following disclaimer.
     13   1.1    chris  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1    chris  *    notice, this list of conditions and the following disclaimer in the
     15   1.1    chris  *    documentation and/or other materials provided with the distribution.
     16   1.1    chris  * 3. All advertising materials mentioning features or use of this software
     17   1.1    chris  *    must display the following acknowledgement:
     18   1.1    chris  *	This product includes software developed by Mark Brinicombe
     19   1.1    chris  *	for the NetBSD Project.
     20   1.1    chris  * 4. The name of the company nor the name of the author may be used to
     21   1.1    chris  *    endorse or promote products derived from this software without specific
     22   1.1    chris  *    prior written permission.
     23   1.1    chris  *
     24   1.1    chris  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     25   1.1    chris  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     26   1.1    chris  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     27   1.1    chris  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     28   1.1    chris  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     29   1.1    chris  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     30   1.1    chris  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31   1.1    chris  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32   1.1    chris  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33   1.1    chris  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34   1.1    chris  * SUCH DAMAGE.
     35   1.1    chris  */
     36   1.9    chris 
     37   1.9    chris #include <sys/cdefs.h>
     38  1.11   andvar __KERNEL_RCSID(0, "$NetBSD: footbridge_machdep.c,v 1.11 2021/08/17 22:00:27 andvar Exp $");
     39   1.1    chris 
     40   1.1    chris #include <sys/param.h>
     41   1.1    chris #include <sys/systm.h>
     42   1.1    chris #include <uvm/uvm_extern.h>
     43   1.1    chris #include <machine/pmap.h>
     44   1.5    chris #include <arm/footbridge/footbridge.h>
     45   1.1    chris #include <arm/footbridge/dc21285mem.h>
     46   1.1    chris 
     47   1.1    chris /*
     48   1.1    chris  * For optimal cache cleaning we need two 16K banks of
     49   1.1    chris  * virtual address space that NOTHING else will access
     50   1.1    chris  * and then we alternate the cache cleaning between the
     51   1.1    chris  * two banks.
     52  1.11   andvar  * The cache cleaning code requires 2 banks aligned
     53  1.11   andvar  * on total size boundary so the banks can be alternated by
     54  1.11   andvar  * xorring the size bit (assumes the bank size is a power of 2)
     55   1.1    chris  *
     56   1.1    chris  * On the DC21285 we have a special cache clean area so we will
     57   1.1    chris  * use it.
     58   1.1    chris  */
     59   1.1    chris 
     60   1.8      rjs extern unsigned int sa1_cache_clean_addr;
     61   1.8      rjs extern unsigned int sa1_cache_clean_size;
     62   1.1    chris 
     63   1.1    chris void
     64   1.1    chris footbridge_sa110_cc_setup(void)
     65   1.1    chris {
     66   1.8      rjs 	sa1_cache_clean_addr = DC21285_CACHE_FLUSH_VBASE;
     67  1.10  thorpej 	sa1_cache_clean_size = (PAGE_SIZE * 4);
     68   1.1    chris }
     69