The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/arm/mv/kirkwood/db88f6xxx.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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: releng/8.3/sys/arm/mv/kirkwood/db88f6xxx.c 197251 2009-09-16 12:07:58Z raj $");
   34 
   35 #include <sys/param.h>
   36 #include <sys/systm.h>
   37 #include <sys/bus.h>
   38 #include <sys/kernel.h>
   39 
   40 #include <vm/vm.h>
   41 #include <vm/pmap.h>
   42 
   43 #include <machine/bus.h>
   44 #include <machine/pte.h>
   45 #include <machine/pmap.h>
   46 #include <machine/vmparam.h>
   47 
   48 #include <arm/mv/mvreg.h>
   49 #include <arm/mv/mvvar.h>
   50 #include <arm/mv/mvwin.h>
   51 
   52 /*
   53  * Virtual address space layout:
   54  * -----------------------------
   55  * 0x0000_0000 - 0xbfff_ffff    : user process
   56  *
   57  * 0xc040_0000 - virtual_avail  : kernel reserved (text, data, page tables
   58  *                              : structures, ARM stacks etc.)
   59  * virtual_avail - 0xefff_ffff  : KVA (virtual_avail is typically < 0xc0a0_0000)
   60  * 0xf000_0000 - 0xf0ff_ffff    : no-cache allocation area (16MB)
   61  * 0xf100_0000 - 0xf10f_ffff    : SoC integrated devices registers range (1MB)
   62  * 0xf110_0000 - 0xf11f_ffff    : PCI-Express I/O space (1MB)
   63  * 0xf120_0000 - 0xf12f_ffff    : unused (1MB)
   64  * 0xf130_0000 - 0xf52f_ffff    : PCI-Express memory space (64MB)
   65  * 0xf930_0000 - 0xfffe_ffff    : unused (~172MB)
   66  * 0xffff_0000 - 0xffff_0fff    : 'high' vectors page (4KB)
   67  * 0xffff_1000 - 0xffff_1fff    : ARM_TP_ADDRESS/RAS page (4KB)
   68  * 0xffff_2000 - 0xffff_ffff    : unused (~55KB)
   69  */
   70 
   71 /* Static device mappings. */
   72 const struct pmap_devmap pmap_devmap[] = {
   73         /*
   74          * Map the on-board devices VA == PA so that we can access them
   75          * with the MMU on or off.
   76          */
   77         { /* SoC integrated peripherals registers range */
   78                 MV_BASE,
   79                 MV_PHYS_BASE,
   80                 MV_SIZE,
   81                 VM_PROT_READ | VM_PROT_WRITE,
   82                 PTE_NOCACHE,
   83         },
   84         { /* PCIE I/O */
   85                 MV_PCIE_IO_BASE,
   86                 MV_PCIE_IO_PHYS_BASE,
   87                 MV_PCIE_IO_SIZE,
   88                 VM_PROT_READ | VM_PROT_WRITE,
   89                 PTE_NOCACHE,
   90         },
   91         { /* PCIE Memory */
   92                 MV_PCIE_MEM_BASE,
   93                 MV_PCIE_MEM_PHYS_BASE,
   94                 MV_PCIE_MEM_SIZE,
   95                 VM_PROT_READ | VM_PROT_WRITE,
   96                 PTE_NOCACHE,
   97         },
   98         { 0, 0, 0, 0, 0, }
   99 };
  100 
  101 const struct gpio_config mv_gpio_config[] = {
  102         { -1, -1, -1 }
  103 };
  104 
  105 void
  106 platform_mpp_init(void)
  107 {
  108 
  109         /*
  110          * MPP configuration for DB-88F6281-BP and DB-88F6281-BP-A
  111          *
  112          * MPP[0]:  NF_IO[2]
  113          * MPP[1]:  NF_IO[3]
  114          * MPP[2]:  NF_IO[4]
  115          * MPP[3]:  NF_IO[5]
  116          * MPP[4]:  NF_IO[6]
  117          * MPP[5]:  NF_IO[7]
  118          * MPP[6]:  SYSRST_OUTn
  119          * MPP[7]:  SPI_SCn
  120          * MPP[8]:  TW_SDA
  121          * MPP[9]:  TW_SCK
  122          * MPP[10]: UA0_TXD
  123          * MPP[11]: UA0_RXD
  124          * MPP[12]: SD_CLK
  125          * MPP[13]: SD_CMD
  126          * MPP[14]: SD_D[0]
  127          * MPP[15]: SD_D[1]
  128          * MPP[16]: SD_D[2]
  129          * MPP[17]: SD_D[3]
  130          * MPP[18]: NF_IO[0]
  131          * MPP[19]: NF_IO[1]
  132          * MPP[20]: SATA1_AC
  133          * MPP[21]: SATA0_AC
  134          *
  135          * Others:  GPIO
  136          */
  137         bus_space_write_4(obio_tag, MV_MPP_BASE, MPP_CONTROL0, 0x21111111);
  138         bus_space_write_4(obio_tag, MV_MPP_BASE, MPP_CONTROL1, 0x11113311);
  139         bus_space_write_4(obio_tag, MV_MPP_BASE, MPP_CONTROL2, 0x00551111);
  140         bus_space_write_4(obio_tag, MV_MPP_BASE, MPP_CONTROL3, 0x00000000);
  141         bus_space_write_4(obio_tag, MV_MPP_BASE, MPP_CONTROL4, 0x00000000);
  142         bus_space_write_4(obio_tag, MV_MPP_BASE, MPP_CONTROL5, 0x00000000);
  143         bus_space_write_4(obio_tag, MV_MPP_BASE, MPP_CONTROL6, 0x00000000);
  144 }
  145 
  146 static void
  147 platform_identify(void *dummy)
  148 {
  149 
  150         soc_identify();
  151 
  152         /*
  153          * XXX Board identification e.g. read out from FPGA or similar should
  154          * go here
  155          */
  156 }
  157 SYSINIT(platform_identify, SI_SUB_CPU, SI_ORDER_SECOND, platform_identify, NULL);

Cache object: c6e595c7b563880541f336dcc4623d9d


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.