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/dev/bhnd/cores/chipc/chipcreg.h

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  * SPDX-License-Identifier: ISC
    3  *
    4  * Copyright (c) 2015-2016 Landon Fuller <landon@landonf.org>
    5  * Copyright (c) 2010-2015 Broadcom Corporation
    6  * All rights reserved.
    7  *
    8  * This file is derived from the sbchipc.h header contributed by Broadcom 
    9  * to to the Linux staging repository, as well as later revisions of sbchipc.h
   10  * distributed with the Asus RT-N16 firmware source code release.
   11  * 
   12  * Permission to use, copy, modify, and/or distribute this software for any
   13  * purpose with or without fee is hereby granted, provided that the above
   14  * copyright notice and this permission notice appear in all copies.
   15  *
   16  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   17  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   18  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
   19  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   20  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
   21  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
   22  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   23  *
   24  * $FreeBSD$
   25  */
   26 
   27 #ifndef _BHND_CORES_CHIPC_CHIPCREG_H_
   28 #define _BHND_CORES_CHIPC_CHIPCREG_H_
   29 
   30 /** Evaluates to true if the given ChipCommon core revision supports
   31  *  the CHIPC_CORECTRL register */
   32 #define CHIPC_HWREV_HAS_CORECTRL(hwrev) ((hwrev) >= 1)
   33 
   34 /** Evaluates to true if the given ChipCommon core revision provides
   35  *  the core count via the chip identification register. */
   36 #define CHIPC_NCORES_MIN_HWREV(hwrev)   ((hwrev) == 4 || (hwrev) >= 6)
   37 
   38 /** Evaluates to true if the given ChipCommon core revision supports
   39  *  the CHIPC_CAPABILITIES_EXT register */
   40 #define CHIPC_HWREV_HAS_CAP_EXT(hwrev)  ((hwrev) >= 35)
   41 
   42 /** Evaluates to true if the chipcommon core (determined from the provided
   43  * @p _chipid (CHIPC_ID) register value) provides a pointer to the enumeration
   44  * table via CHIPC_EROMPTR */
   45 #define CHIPC_HAS_EROMPTR(_chipid)      \
   46         (CHIPC_GET_BITS((_chipid), CHIPC_ID_BUS) != BHND_CHIPTYPE_SIBA)
   47 
   48 #define CHIPC_GET_FLAG(_value, _flag)   (((_value) & _flag) != 0)
   49 #define CHIPC_GET_BITS(_value, _field)  \
   50         ((_value & _field ## _MASK) >> _field ## _SHIFT)
   51 
   52 #define CHIPC_ID                        0x00
   53 #define CHIPC_CAPABILITIES              0x04
   54 #define CHIPC_CORECTRL                  0x08    /* rev >= 1 */
   55 #define CHIPC_BIST                      0x0C
   56 
   57 #define CHIPC_OTPST                     0x10    /**< otp status */
   58 #define CHIPC_OTPCTRL                   0x14    /**< otp control */
   59 #define CHIPC_OTPPROG                   0x18
   60 #define CHIPC_OTPLAYOUT                 0x1C    /**< otp layout (IPX OTP) */
   61 
   62 #define CHIPC_INTST                     0x20    /**< interrupt status */
   63 #define CHIPC_INTM                      0x24    /**< interrupt mask */
   64 
   65 #define CHIPC_CHIPCTRL                  0x28    /**< chip control (rev >= 11) */
   66 #define CHIPC_CHIPST                    0x2C    /**< chip status (rev >= 11) */
   67 
   68 #define CHIPC_JTAGCMD                   0x30
   69 #define CHIPC_JTAGIR                    0x34
   70 #define CHIPC_JTAGDR                    0x38
   71 #define CHIPC_JTAGCTRL                  0x3c
   72 
   73 #define CHIPC_SFLASH_BASE               0x40
   74 #define CHIPC_SFLASH_SIZE               12
   75 #define CHIPC_SFLASHCTRL                0x40
   76 #define CHIPC_SFLASHADDR                0x44
   77 #define CHIPC_SFLASHDATA                0x48
   78 
   79 /* siba backplane configuration broadcast (siba-only) */
   80 #define CHIPC_SBBCAST_ADDR              0x50
   81 #define CHIPC_SBBCAST_DATA              0x54
   82 
   83 #define CHIPC_GPIOPU                    0x58    /**< pull-up mask (rev >= 20) */
   84 #define CHIPC_GPIOPD                    0x5C    /**< pull down mask (rev >= 20) */
   85 #define CHIPC_GPIOIN                    0x60
   86 #define CHIPC_GPIOOUT                   0x64
   87 #define CHIPC_GPIOOUTEN                 0x68
   88 #define CHIPC_GPIOCTRL                  0x6C
   89 #define CHIPC_GPIOPOL                   0x70
   90 #define CHIPC_GPIOINTM                  0x74    /**< gpio interrupt mask */
   91 
   92 #define CHIPC_GPIOEVENT                 0x78    /**< gpio event (rev >= 11) */
   93 #define CHIPC_GPIOEVENT_INTM            0x7C    /**< gpio event interrupt mask (rev >= 11) */
   94 
   95 #define CHIPC_WATCHDOG                  0x80    /**< watchdog timer */
   96 
   97 #define CHIPC_GPIOEVENT_INTPOLARITY     0x84    /**< gpio even interrupt polarity (rev >= 11) */
   98 
   99 #define CHIPC_GPIOTIMERVAL              0x88    /**< gpio-based LED duty cycle (rev >= 16) */
  100 #define CHIPC_GPIOTIMEROUTMASK          0x8C
  101 
  102 /* clock control registers (non-PMU devices) */
  103 #define CHIPC_CLKC_N                    0x90
  104 #define CHIPC_CLKC_SB                   0x94    /* m0 (backplane) */
  105 #define CHIPC_CLKC_PCI                  0x98    /* m1 */
  106 #define CHIPC_CLKC_M2                   0x9C    /* mii/uart/mipsref */
  107 #define CHIPC_CLKC_M3                   0xA0    /* cpu */
  108 #define CHIPC_CLKDIV                    0xA4    /* rev >= 3 */
  109 
  110 #define CHIPC_GPIODEBUGSEL              0xA8    /* rev >= 28 */
  111 #define CHIPC_CAPABILITIES_EXT          0xAC
  112 
  113 /* pll/slowclk clock control registers (rev >= 4) */
  114 #define CHIPC_PLL_ON_DELAY              0xB0    /* rev >= 4 */
  115 #define CHIPC_PLL_FREFSEL_DELAY         0xB4    /* rev >= 4 */
  116 #define CHIPC_PLL_SLOWCLK_CTL           0xB8    /* "slowclock" (rev 6-9) */
  117 
  118  /* "instaclock" clock control registers */
  119 #define CHIPC_SYS_CLK_CTL               0xC0    /* "instaclock" (rev >= 10) */
  120 #define CHIPC_SYS_CLK_ST_STRETCH        0xC4    /* state strech (?) rev >= 10 */
  121 
  122 /* indirect backplane access (rev >= 10) */
  123 #define CHIPC_BP_ADDRLOW                0xD0
  124 #define CHIPC_BP_ADDRHIGH               0xD4
  125 #define CHIPC_BP_DATA                   0xD8
  126 #define CHIPC_BP_INDACCESS              0xE0
  127 
  128 /* SPI/I2C (rev >= 37) */
  129 #define CHIPC_GSIO_CTRL                 0xE4
  130 #define CHIPC_GSIO_ADDR                 0xE8
  131 #define CHIPC_GSIO_DATA                 0xEC
  132 
  133 /* More clock dividers (corerev >= 32) */
  134 #define CHIPC_CLKDIV2                   0xF0
  135 
  136 #define CHIPC_EROMPTR                   0xFC    /**< 32-bit EROM base address
  137                                                   *  on BCMA devices */
  138                                                   
  139 /* ExtBus control registers (rev >= 3) */
  140 #define CHIPC_PCMCIA_CFG                0x100
  141 #define CHIPC_PCMCIA_MEMWAIT            0x104
  142 #define CHIPC_PCMCIA_ATTRWAIT           0x108
  143 #define CHIPC_PCMCIA_IOWAIT             0x10C
  144 #define CHIPC_IDE_CFG                   0x110
  145 #define CHIPC_IDE_MEMWAIT               0x114
  146 #define CHIPC_IDE_ATTRWAIT              0x118
  147 #define CHIPC_IDE_IOWAIT                0x11C
  148 #define CHIPC_PROG_CFG                  0x120
  149 #define CHIPC_PROG_WAITCOUNT            0x124
  150 #define CHIPC_FLASH_CFG                 0x128
  151 #define CHIPC_FLASH_WAITCOUNT           0x12C
  152 #define CHIPC_SECI_CFG                  0x130
  153 #define CHIPC_SECI_ST                   0x134
  154 #define CHIPC_SECI_STM                  0x138
  155 #define CHIPC_SECI_RXNBC                0x13C
  156 
  157 /* Enhanced Coexistence Interface (ECI) registers (rev 21-34) */
  158 #define CHIPC_ECI_OUTPUT                0x140
  159 #define CHIPC_ECI_CTRL                  0x144
  160 #define CHIPC_ECI_INPUTLO               0x148
  161 #define CHIPC_ECI_INPUTMI               0x14C
  162 #define CHIPC_ECI_INPUTHI               0x150
  163 #define CHIPC_ECI_INPUTINTPOLARITYLO    0x154
  164 #define CHIPC_ECI_INPUTINTPOLARITYMI    0x158
  165 #define CHIPC_ECI_INPUTINTPOLARITYHI    0x15C
  166 #define CHIPC_ECI_INTMASKLO             0x160
  167 #define CHIPC_ECI_INTMASKMI             0x164
  168 #define CHIPC_ECI_INTMASKHI             0x168
  169 #define CHIPC_ECI_EVENTLO               0x16C
  170 #define CHIPC_ECI_EVENTMI               0x170
  171 #define CHIPC_ECI_EVENTHI               0x174
  172 #define CHIPC_ECI_EVENTMASKLO           0x178
  173 #define CHIPC_ECI_EVENTMASKMI           0x17C
  174 #define CHIPC_ECI_EVENTMASKHI           0x180
  175 
  176 #define CHIPC_FLASHSTRCFG               0x18C   /**< BCM4706 NAND flash config */
  177 
  178 #define CHIPC_SPROM_CTRL                0x190   /**< SPROM interface (rev >= 32) */
  179 #define CHIPC_SPROM_ADDR                0x194
  180 #define CHIPC_SPROM_DATA                0x198
  181 
  182 /* Clock control and hardware workarounds (corerev >= 20) */
  183 #define CHIPC_CLK_CTL_ST                0x1E0
  184 #define CHIPC_SPROM_HWWAR               0x19
  185 
  186 #define CHIPC_UART_BASE                 0x300
  187 #define CHIPC_UART_SIZE                 0x100
  188 #define CHIPC_UART_MAX                  3       /**< max UART blocks */
  189 #define CHIPC_UART(_n)                  (CHIPC_UART_BASE + (CHIPC_UART_SIZE*_n))
  190 
  191 /* PMU register block (rev >= 20) */
  192 #define CHIPC_PMU_BASE                  0x600
  193 #define CHIPC_PMU_SIZE                  0x70
  194 
  195 #define CHIPC_SPROM_OTP                 0x800   /* SPROM/OTP address space */
  196 #define CHIPC_SPROM_OTP_SIZE            0x400
  197 
  198 /** chipid */
  199 #define CHIPC_ID_CHIP_MASK      0x0000FFFF      /**< chip id */
  200 #define CHIPC_ID_CHIP_SHIFT     0
  201 #define CHIPC_ID_REV_MASK       0x000F0000      /**< chip revision */
  202 #define CHIPC_ID_REV_SHIFT      16
  203 #define CHIPC_ID_PKG_MASK       0x00F00000      /**< physical package ID */
  204 #define CHIPC_ID_PKG_SHIFT      20
  205 #define CHIPC_ID_NUMCORE_MASK   0x0F000000      /**< number of cores on chip (rev >= 4) */
  206 #define CHIPC_ID_NUMCORE_SHIFT  24
  207 #define CHIPC_ID_BUS_MASK       0xF0000000      /**< chip/interconnect type (BHND_CHIPTYPE_*) */
  208 #define CHIPC_ID_BUS_SHIFT      28
  209 
  210 /* capabilities */
  211 #define CHIPC_CAP_NUM_UART_MASK         0x00000003      /* Number of UARTs (1-3) */
  212 #define CHIPC_CAP_NUM_UART_SHIFT        0
  213 #define CHIPC_CAP_MIPSEB                0x00000004      /* MIPS is in big-endian mode */
  214 #define CHIPC_CAP_UCLKSEL_MASK          0x00000018      /* UARTs clock select */
  215 #define CHIPC_CAP_UCLKSEL_SHIFT         3
  216 #define   CHIPC_CAP_UCLKSEL_UINTCLK     0x1             /* UARTs are driven by internal divided clock */
  217 #define CHIPC_CAP_UARTGPIO              0x00000020      /* UARTs own GPIOs 15:12 */
  218 #define CHIPC_CAP_EXTBUS_MASK           0x000000c0      /* External bus mask */
  219 #define CHIPC_CAP_EXTBUS_SHIFT          6
  220 #define   CHIPC_CAP_EXTBUS_NONE         0x0             /* No ExtBus present */
  221 #define   CHIPC_CAP_EXTBUS_FULL         0x1             /* ExtBus: PCMCIA, IDE & Prog */
  222 #define   CHIPC_CAP_EXTBUS_PROG         0x2             /* ExtBus: ProgIf only */
  223 #define CHIPC_CAP_FLASH_MASK            0x00000700      /* Type of flash */
  224 #define CHIPC_CAP_FLASH_SHIFT           8
  225 #define   CHIPC_CAP_FLASH_NONE          0x0             /* No flash */
  226 #define   CHIPC_CAP_SFLASH_ST           0x1             /* ST serial flash */
  227 #define   CHIPC_CAP_SFLASH_AT           0x2             /* Atmel serial flash */
  228 #define   CHIPC_CAP_NFLASH              0x3             /* NAND flash */
  229 #define   CHIPC_CAP_PFLASH              0x7             /* Parallel flash */
  230 #define CHIPC_CAP_PLL_MASK              0x00038000      /* Type of PLL */
  231 #define CHIPC_CAP_PLL_SHIFT             15
  232 #define CHIPC_CAP_PWR_CTL               0x00040000      /* Power/clock control */
  233 #define CHIPC_CAP_OTP_SIZE_MASK         0x00380000      /* OTP Size (0 = none) */
  234 #define CHIPC_CAP_OTP_SIZE_SHIFT        19              /* OTP Size shift */
  235 #define CHIPC_CAP_OTP_SIZE_BASE         5               /* OTP Size base */
  236 #define CHIPC_CAP_JTAGP                 0x00400000      /* JTAG Master Present */
  237 #define CHIPC_CAP_ROM                   0x00800000      /* Internal boot rom active */
  238 #define CHIPC_CAP_BKPLN64               0x08000000      /* 64-bit backplane */
  239 #define CHIPC_CAP_PMU                   0x10000000      /* PMU Present, rev >= 20 */
  240 #define CHIPC_CAP_ECI                   0x20000000      /* Enhanced Coexistence Interface */
  241 #define CHIPC_CAP_SPROM                 0x40000000      /* SPROM Present, rev >= 32 */
  242 #define CHIPC_CAP_4706_NFLASH           0x80000000      /* NAND flash present, BCM4706 or chipc rev38 (BCM5357)? */
  243 
  244 #define CHIPC_CAP2_SECI                 0x00000001      /* SECI Present, rev >= 36 */
  245 #define CHIPC_CAP2_GSIO                 0x00000002      /* GSIO (spi/i2c) present, rev >= 37 */
  246 #define CHIPC_CAP2_GCI                  0x00000004      /* GCI present (rev >= ??) */
  247 #define CHIPC_CAP2_AOB                  0x00000040      /* Always on Bus present (rev >= 49)
  248                                                          *
  249                                                          * If set, PMU and GCI registers
  250                                                          * are found in dedicated cores.
  251                                                          *
  252                                                          * This appears to be a lower power
  253                                                          * APB bus, bridged via ARM APB IP. */
  254 
  255 /*
  256  * ChipStatus (Common)
  257  */
  258 
  259 /** ChipStatus CIS/OTP/SPROM values used to advertise OTP/SPROM availability in
  260  *  chipcommon revs 11-31. */
  261 enum {
  262         CHIPC_CST_DEFCIS_SEL    = 0,    /**< OTP is powered up, use default CIS, no SPROM */
  263         CHIPC_CST_SPROM_SEL     = 1,    /**< OTP is powered up, SPROM is present */
  264         CHIPC_CST_OTP_SEL       = 2,    /**< OTP is powered up, no SPROM */
  265         CHIPC_CST_OTP_PWRDN     = 3     /**< OTP is powered down, SPROM is present (rev <= 22 only) */
  266 };
  267 
  268 #define CHIPC_CST_SPROM_OTP_SEL_R22_MASK        0x00000003      /**< chipstatus OTP/SPROM SEL value (rev 22) */
  269 #define CHIPC_CST_SPROM_OTP_SEL_R22_SHIFT       0
  270 #define CHIPC_CST_SPROM_OTP_SEL_R23_MASK        0x000000c0      /**< chipstatus OTP/SPROM SEL value (revs 23-31)
  271                                                                   *  
  272                                                                   *  it is unknown whether this is supported on
  273                                                                   *  any CC revs >= 32 that also vend CHIPC_CAP_*
  274                                                                   *  constants for OTP/SPROM/NVRAM availability.
  275                                                                   */
  276 #define CHIPC_CST_SPROM_OTP_SEL_R23_SHIFT       6
  277 
  278 /* PLL type */
  279 #define CHIPC_PLL_NONE          0x0
  280 #define CHIPC_PLL_TYPE1         0x2     /* 48MHz base, 3 dividers */
  281 #define CHIPC_PLL_TYPE2         0x4     /* 48MHz, 4 dividers */
  282 #define CHIPC_PLL_TYPE3         0x6     /* 25MHz, 2 dividers */
  283 #define CHIPC_PLL_TYPE4         0x1     /* 48MHz, 4 dividers */
  284 #define CHIPC_PLL_TYPE5         0x3     /* 25MHz, 4 dividers */
  285 #define CHIPC_PLL_TYPE6         0x5     /* 100/200 or 120/240 only */
  286 #define CHIPC_PLL_TYPE7         0x7     /* 25MHz, 4 dividers */
  287 
  288 /* dynamic clock control defines */
  289 #define CHIPC_LPOMINFREQ        25000           /* low power oscillator min */
  290 #define CHIPC_LPOMAXFREQ        43000           /* low power oscillator max */
  291 #define CHIPC_XTALMINFREQ       19800000        /* 20 MHz - 1% */
  292 #define CHIPC_XTALMAXFREQ       20200000        /* 20 MHz + 1% */
  293 #define CHIPC_PCIMINFREQ        25000000        /* 25 MHz */
  294 #define CHIPC_PCIMAXFREQ        34000000        /* 33 MHz + fudge */
  295 
  296 #define CHIPC_ILP_DIV_5MHZ      0               /* ILP = 5 MHz */
  297 #define CHIPC_ILP_DIV_1MHZ      4               /* ILP = 1 MHz */
  298 
  299 /* Power Control Defines */
  300 #define CHIPC_PLL_DELAY         150     /* us pll on delay */
  301 #define CHIPC_FREF_DELAY        200     /* us fref change delay */
  302 #define CHIPC_MIN_SLOW_CLK      32      /* us Slow clock period */
  303 #define CHIPC_XTAL_ON_DELAY     1000    /* us crystal power-on delay */
  304 
  305 /* corecontrol */
  306 #define CHIPC_UARTCLKO          0x00000001      /* Drive UART with internal clock */
  307 #define CHIPC_SE                0x00000002      /* sync clk out enable (corerev >= 3) */
  308 #define CHIPC_UARTCLKEN         0x00000008      /* enable UART Clock (corerev > = 21 */
  309 
  310 /* chipcontrol */
  311 #define CHIPCTRL_4321A0_DEFAULT 0x3a4
  312 #define CHIPCTRL_4321A1_DEFAULT 0x0a4
  313 #define CHIPCTRL_4321_PLL_DOWN  0x800000        /* serdes PLL down override */
  314 
  315 /* Fields in the otpstatus register in rev >= 21 */
  316 #define CHIPC_OTPS_OL_MASK              0x000000ff
  317 #define CHIPC_OTPS_OL_MFG               0x00000001      /* manuf row is locked */
  318 #define CHIPC_OTPS_OL_OR1               0x00000002      /* otp redundancy row 1 is locked */
  319 #define CHIPC_OTPS_OL_OR2               0x00000004      /* otp redundancy row 2 is locked */
  320 #define CHIPC_OTPS_OL_GU                0x00000008      /* general use region is locked */
  321 #define CHIPC_OTPS_GUP_MASK             0x00000f00
  322 #define CHIPC_OTPS_GUP_SHIFT            8
  323 #define CHIPC_OTPS_GUP_HW               0x00000100      /* h/w subregion is programmed */
  324 #define CHIPC_OTPS_GUP_SW               0x00000200      /* s/w subregion is programmed */
  325 #define CHIPC_OTPS_GUP_CI               0x00000400      /* chipid/pkgopt subregion is programmed */
  326 #define CHIPC_OTPS_GUP_FUSE             0x00000800      /* fuse subregion is programmed */
  327 #define CHIPC_OTPS_READY                0x00001000
  328 #define CHIPC_OTPS_RV(x)                (1 << (16 + (x)))       /* redundancy entry valid */
  329 #define CHIPC_OTPS_RV_MASK              0x0fff0000
  330 
  331 /* IPX OTP fields in the otpcontrol register */
  332 #define CHIPC_OTPC_PROGSEL              0x00000001
  333 #define CHIPC_OTPC_PCOUNT_MASK          0x0000000e
  334 #define CHIPC_OTPC_PCOUNT_SHIFT 1
  335 #define CHIPC_OTPC_VSEL_MASK            0x000000f0
  336 #define CHIPC_OTPC_VSEL_SHIFT           4
  337 #define CHIPC_OTPC_TMM_MASK             0x00000700
  338 #define CHIPC_OTPC_TMM_SHIFT            8
  339 #define CHIPC_OTPC_ODM                  0x00000800
  340 #define CHIPC_OTPC_PROGEN               0x80000000
  341 
  342 /* Fields in otpprog in IPX OTP and HND OTP */
  343 #define CHIPC_OTPP_COL_MASK             0x000000ff
  344 #define CHIPC_OTPP_COL_SHIFT            0
  345 #define CHIPC_OTPP_ROW_MASK             0x0000ff00
  346 #define CHIPC_OTPP_ROW_SHIFT            8
  347 #define CHIPC_OTPP_OC_MASK              0x0f000000
  348 #define CHIPC_OTPP_OC_SHIFT             24
  349 #define CHIPC_OTPP_READERR              0x10000000
  350 #define CHIPC_OTPP_VALUE_MASK           0x20000000
  351 #define CHIPC_OTPP_VALUE_SHIFT  29
  352 #define CHIPC_OTPP_START_BUSY           0x80000000
  353 #define CHIPC_OTPP_READ                 0x40000000      /* HND OTP */
  354 
  355 /* otplayout */
  356 #define CHIPC_OTPL_SIZE_MASK            0x0000f000      /* rev >= 49 */
  357 #define CHIPC_OTPL_SIZE_SHIFT           12
  358 #define CHIPC_OTPL_GUP_MASK             0x00000FFF      /* bit offset to general use region */
  359 #define CHIPC_OTPL_GUP_SHIFT            0
  360 #define CHIPC_OTPL_CISFORMAT_NEW        0x80000000      /* rev >= 36 */
  361 
  362 /* Opcodes for OTPP_OC field */
  363 #define CHIPC_OTPPOC_READ               0
  364 #define CHIPC_OTPPOC_BIT_PROG           1
  365 #define CHIPC_OTPPOC_VERIFY             3
  366 #define CHIPC_OTPPOC_INIT               4
  367 #define CHIPC_OTPPOC_SET                5
  368 #define CHIPC_OTPPOC_RESET              6
  369 #define CHIPC_OTPPOC_OCST               7
  370 #define CHIPC_OTPPOC_ROW_LOCK           8
  371 #define CHIPC_OTPPOC_PRESCN_TEST        9
  372 
  373 /* Jtagm characteristics that appeared at a given corerev */
  374 #define CHIPC_JTAGM_CREV_OLD            10      /* Old command set, 16bit max IR */
  375 #define CHIPC_JTAGM_CREV_IRP            22      /* Able to do pause-ir */
  376 #define CHIPC_JTAGM_CREV_RTI            28      /* Able to do return-to-idle */
  377 
  378 /* jtagcmd */
  379 #define CHIPC_JCMD_START                0x80000000
  380 #define CHIPC_JCMD_BUSY                 0x80000000
  381 #define CHIPC_JCMD_STATE_MASK           0x60000000
  382 #define CHIPC_JCMD_STATE_TLR            0x00000000      /* Test-logic-reset */
  383 #define CHIPC_JCMD_STATE_PIR            0x20000000      /* Pause IR */
  384 #define CHIPC_JCMD_STATE_PDR            0x40000000      /* Pause DR */
  385 #define CHIPC_JCMD_STATE_RTI            0x60000000      /* Run-test-idle */
  386 #define CHIPC_JCMD0_ACC_MASK            0x0000f000
  387 #define CHIPC_JCMD0_ACC_IRDR            0x00000000
  388 #define CHIPC_JCMD0_ACC_DR              0x00001000
  389 #define CHIPC_JCMD0_ACC_IR              0x00002000
  390 #define CHIPC_JCMD0_ACC_RESET           0x00003000
  391 #define CHIPC_JCMD0_ACC_IRPDR           0x00004000
  392 #define CHIPC_JCMD0_ACC_PDR             0x00005000
  393 #define CHIPC_JCMD0_IRW_MASK            0x00000f00
  394 #define CHIPC_JCMD_ACC_MASK             0x000f0000      /* Changes for corerev 11 */
  395 #define CHIPC_JCMD_ACC_IRDR             0x00000000
  396 #define CHIPC_JCMD_ACC_DR               0x00010000
  397 #define CHIPC_JCMD_ACC_IR               0x00020000
  398 #define CHIPC_JCMD_ACC_RESET            0x00030000
  399 #define CHIPC_JCMD_ACC_IRPDR            0x00040000
  400 #define CHIPC_JCMD_ACC_PDR              0x00050000
  401 #define CHIPC_JCMD_ACC_PIR              0x00060000
  402 #define CHIPC_JCMD_ACC_IRDR_I           0x00070000      /* rev 28: return to run-test-idle */
  403 #define CHIPC_JCMD_ACC_DR_I             0x00080000      /* rev 28: return to run-test-idle */
  404 #define CHIPC_JCMD_IRW_MASK             0x00001f00
  405 #define CHIPC_JCMD_IRW_SHIFT            8
  406 #define CHIPC_JCMD_DRW_MASK             0x0000003f
  407 
  408 /* jtagctrl */
  409 #define CHIPC_JCTRL_FORCE_CLK           4       /* Force clock */
  410 #define CHIPC_JCTRL_EXT_EN              2       /* Enable external targets */
  411 #define CHIPC_JCTRL_EN          1       /* Enable Jtag master */
  412 
  413 /* Fields in clkdiv */
  414 #define CHIPC_CLKD_SFLASH               0x0f000000
  415 #define CHIPC_CLKD_SFLASH_SHIFT         24
  416 #define CHIPC_CLKD_OTP                  0x000f0000
  417 #define CHIPC_CLKD_OTP_SHIFT            16
  418 #define CHIPC_CLKD_JTAG                 0x00000f00
  419 #define CHIPC_CLKD_JTAG_SHIFT           8
  420 #define CHIPC_CLKD_UART                 0x000000ff
  421 
  422 #define CHIPC_CLKD2_SPROM               0x00000003
  423 
  424 /* intstatus/intmask */
  425 #define CHIPC_CI_GPIO                   0x00000001      /* gpio intr */
  426 #define CHIPC_CI_EI                     0x00000002      /* extif intr (corerev >= 3) */
  427 #define CHIPC_CI_TEMP                   0x00000004      /* temp. ctrl intr (corerev >= 15) */
  428 #define CHIPC_CI_SIRQ                   0x00000008      /* serial IRQ intr (corerev >= 15) */
  429 #define CHIPC_CI_PMU                    0x00000020      /* pmu intr (corerev >= 21) */
  430 #define CHIPC_CI_UART                   0x00000040      /* uart intr (corerev >= 21) */
  431 #define CHIPC_CI_WDRESET                0x80000000      /* watchdog reset occurred */
  432 
  433 /* slow_clk_ctl */
  434 #define CHIPC_SCC_SS_MASK               0x00000007      /* slow clock source mask */
  435 #define CHIPC_SCC_SS_LPO                0x00000000      /* source of slow clock is LPO */
  436 #define CHIPC_SCC_SS_XTAL               0x00000001      /* source of slow clock is crystal */
  437 #define CHIPC_SCC_SS_PCI                0x00000002      /* source of slow clock is PCI */
  438 #define CHIPC_SCC_LF                    0x00000200      /* LPOFreqSel, 1: 160Khz, 0: 32KHz */
  439 #define CHIPC_SCC_LP                    0x00000400      /* LPOPowerDown, 1: LPO is disabled,
  440                                                  * 0: LPO is enabled
  441                                                  */
  442 #define CHIPC_SCC_FS                    0x00000800      /* ForceSlowClk, 1: sb/cores running on slow clock,
  443                                                  * 0: power logic control
  444                                                  */
  445 #define CHIPC_SCC_IP                    0x00001000      /* IgnorePllOffReq, 1/0: power logic ignores/honors
  446                                                  * PLL clock disable requests from core
  447                                                  */
  448 #define CHIPC_SCC_XC                    0x00002000      /* XtalControlEn, 1/0: power logic does/doesn't
  449                                                  * disable crystal when appropriate
  450                                                  */
  451 #define CHIPC_SCC_XP                    0x00004000      /* XtalPU (RO), 1/0: crystal running/disabled */
  452 #define CHIPC_SCC_CD_MASK               0xffff0000      /* ClockDivider (SlowClk = 1/(4+divisor)) */
  453 #define CHIPC_SCC_CD_SHIFT              16
  454 
  455 /* system_clk_ctl */
  456 #define CHIPC_SYCC_IE                   0x00000001      /* ILPen: Enable Idle Low Power */
  457 #define CHIPC_SYCC_AE                   0x00000002      /* ALPen: Enable Active Low Power */
  458 #define CHIPC_SYCC_FP                   0x00000004      /* ForcePLLOn */
  459 #define CHIPC_SYCC_AR                   0x00000008      /* Force ALP (or HT if ALPen is not set */
  460 #define CHIPC_SYCC_HR                   0x00000010      /* Force HT */
  461 #define CHIPC_SYCC_CD_MASK              0xffff0000      /* ClkDiv  (ILP = 1/(4 * (divisor + 1)) */
  462 #define CHIPC_SYCC_CD_SHIFT             16
  463 
  464 /* Indirect backplane access */
  465 #define CHIPC_BPIA_BYTEEN               0x0000000f
  466 #define CHIPC_BPIA_SZ1                  0x00000001
  467 #define CHIPC_BPIA_SZ2                  0x00000003
  468 #define CHIPC_BPIA_SZ4                  0x00000007
  469 #define CHIPC_BPIA_SZ8                  0x0000000f
  470 #define CHIPC_BPIA_WRITE                0x00000100
  471 #define CHIPC_BPIA_START                0x00000200
  472 #define CHIPC_BPIA_BUSY                 0x00000200
  473 #define CHIPC_BPIA_ERROR                0x00000400
  474 
  475 /* pcmcia/prog/flash_config */
  476 #define CHIPC_CF_EN                     0x00000001      /* enable */
  477 #define CHIPC_CF_EM_MASK                0x0000000e      /* mode */
  478 #define CHIPC_CF_EM_SHIFT               1
  479 #define CHIPC_CF_EM_FLASH               0       /* flash/asynchronous mode */
  480 #define CHIPC_CF_EM_SYNC                2       /* synchronous mode */
  481 #define CHIPC_CF_EM_PCMCIA              4       /* pcmcia mode */
  482 #define CHIPC_CF_DS                     0x00000010      /* destsize:  0=8bit, 1=16bit */
  483 #define CHIPC_CF_BS                     0x00000020      /* byteswap */
  484 #define CHIPC_CF_CD_MASK                0x000000c0      /* clock divider */
  485 #define CHIPC_CF_CD_SHIFT               6
  486 #define CHIPC_CF_CD_DIV2                0x00000000      /* backplane/2 */
  487 #define CHIPC_CF_CD_DIV3                0x00000040      /* backplane/3 */
  488 #define CHIPC_CF_CD_DIV4                0x00000080      /* backplane/4 */
  489 #define CHIPC_CF_CE                     0x00000100      /* clock enable */
  490 #define CHIPC_CF_SB                     0x00000200      /* size/bytestrobe (synch only) */
  491 
  492 /* pcmcia_memwait */
  493 #define CHIPC_PM_W0_MASK                0x0000003f      /* waitcount0 */
  494 #define CHIPC_PM_W1_MASK                0x00001f00      /* waitcount1 */
  495 #define CHIPC_PM_W1_SHIFT               8
  496 #define CHIPC_PM_W2_MASK                0x001f0000      /* waitcount2 */
  497 #define CHIPC_PM_W2_SHIFT               16
  498 #define CHIPC_PM_W3_MASK                0x1f000000      /* waitcount3 */
  499 #define CHIPC_PM_W3_SHIFT               24
  500 
  501 /* pcmcia_attrwait */
  502 #define CHIPC_PA_W0_MASK                0x0000003f      /* waitcount0 */
  503 #define CHIPC_PA_W1_MASK                0x00001f00      /* waitcount1 */
  504 #define CHIPC_PA_W1_SHIFT               8
  505 #define CHIPC_PA_W2_MASK                0x001f0000      /* waitcount2 */
  506 #define CHIPC_PA_W2_SHIFT               16
  507 #define CHIPC_PA_W3_MASK                0x1f000000      /* waitcount3 */
  508 #define CHIPC_PA_W3_SHIFT               24
  509 
  510 /* pcmcia_iowait */
  511 #define CHIPC_PI_W0_MASK                0x0000003f      /* waitcount0 */
  512 #define CHIPC_PI_W1_MASK                0x00001f00      /* waitcount1 */
  513 #define CHIPC_PI_W1_SHIFT               8
  514 #define CHIPC_PI_W2_MASK                0x001f0000      /* waitcount2 */
  515 #define CHIPC_PI_W2_SHIFT               16
  516 #define CHIPC_PI_W3_MASK                0x1f000000      /* waitcount3 */
  517 #define CHIPC_PI_W3_SHIFT               24
  518 
  519 /* prog_waitcount */
  520 #define CHIPC_PW_W0_MASK                0x0000001f      /* waitcount0 */
  521 #define CHIPC_PW_W1_MASK                0x00001f00      /* waitcount1 */
  522 #define CHIPC_PW_W1_SHIFT               8
  523 #define CHIPC_PW_W2_MASK                0x001f0000      /* waitcount2 */
  524 #define CHIPC_PW_W2_SHIFT               16
  525 #define CHIPC_PW_W3_MASK                0x1f000000      /* waitcount3 */
  526 #define CHIPC_PW_W3_SHIFT               24
  527 
  528 #define CHIPC_PW_W0                     0x0000000c
  529 #define CHIPC_PW_W1                     0x00000a00
  530 #define CHIPC_PW_W2                     0x00020000
  531 #define CHIPC_PW_W3                     0x01000000
  532 
  533 /* flash_waitcount */
  534 #define CHIPC_FW_W0_MASK                0x0000003f      /* waitcount0 */
  535 #define CHIPC_FW_W1_MASK                0x00001f00      /* waitcount1 */
  536 #define CHIPC_FW_W1_SHIFT               8
  537 #define CHIPC_FW_W2_MASK                0x001f0000      /* waitcount2 */
  538 #define CHIPC_FW_W2_SHIFT               16
  539 #define CHIPC_FW_W3_MASK                0x1f000000      /* waitcount3 */
  540 #define CHIPC_FW_W3_SHIFT               24
  541 
  542 /* When SPROM support present, fields in spromcontrol */
  543 #define CHIPC_SRC_START                 0x80000000
  544 #define CHIPC_SRC_BUSY                  0x80000000
  545 #define CHIPC_SRC_OPCODE                0x60000000
  546 #define CHIPC_SRC_OP_READ               0x00000000
  547 #define CHIPC_SRC_OP_WRITE              0x20000000
  548 #define CHIPC_SRC_OP_WRDIS              0x40000000
  549 #define CHIPC_SRC_OP_WREN               0x60000000
  550 #define CHIPC_SRC_OTPSEL                0x00000010
  551 #define CHIPC_SRC_LOCK                  0x00000008
  552 #define CHIPC_SRC_SIZE_MASK             0x00000006
  553 #define CHIPC_SRC_SIZE_1K               0x00000000
  554 #define CHIPC_SRC_SIZE_4K               0x00000002
  555 #define CHIPC_SRC_SIZE_16K              0x00000004
  556 #define CHIPC_SRC_SIZE_SHIFT            1
  557 #define CHIPC_SRC_PRESENT               0x00000001
  558 
  559 /* gpiotimerval */
  560 #define CHIPC_GPIO_ONTIME_SHIFT         16
  561 #define CHIPC_GPIOTIMERVAL_DEFAULT_ON   10      /**< default 10% on duty cycle */
  562 #define CHIPC_GPIOTIMERVAL_DEFAULT_OFF  90      /**< default 90% off duty cycle */
  563 #define CHIPC_GPIOTIMERVAL_DEFAULT                                      \
  564     ((CHIPC_GPIOTIMERVAL_DEFAULT_ON << CHIPC_GPIO_ONTIME_SHIFT) |       \
  565      (CHIPC_GPIOTIMERVAL_DEFAULT_OFF))
  566 
  567 /* clockcontrol_n */
  568 #define CHIPC_CN_N1_MASK                0x3f    /* n1 control */
  569 #define CHIPC_CN_N1_SHIFT               0
  570 #define CHIPC_CN_N2_MASK                0x3f00  /* n2 control */
  571 #define CHIPC_CN_N2_SHIFT               8
  572 #define CHIPC_CN_PLLC_MASK              0xf0000 /* pll control */
  573 #define CHIPC_CN_PLLC_SHIFT             16
  574 
  575 /* clockcontrol_sb/pci/uart */
  576 #define CHIPC_M1_MASK           0x3f    /* m1 control */
  577 #define CHIPC_M1_SHIFT          0
  578 #define CHIPC_M2_MASK           0x3f00  /* m2 control */
  579 #define CHIPC_M2_SHIFT          8
  580 #define CHIPC_M3_MASK           0x3f0000        /* m3 control */
  581 #define CHIPC_M3_SHIFT          16
  582 #define CHIPC_MC_MASK           0x1f000000      /* mux control */
  583 #define CHIPC_MC_SHIFT          24
  584 
  585 /* N3M Clock control magic field values */
  586 #define CHIPC_F6_2              0x02    /* A factor of 2 in */
  587 #define CHIPC_F6_3              0x03    /* 6-bit fields like */
  588 #define CHIPC_F6_4              0x05    /* N1, M1 or M3 */
  589 #define CHIPC_F6_5              0x09
  590 #define CHIPC_F6_6              0x11
  591 #define CHIPC_F6_7              0x21
  592 
  593 #define CHIPC_F5_BIAS           5       /* 5-bit fields get this added */
  594 
  595 #define CHIPC_MC_BYPASS         0x08
  596 #define CHIPC_MC_M1             0x04
  597 #define CHIPC_MC_M1M2           0x02
  598 #define CHIPC_MC_M1M2M3         0x01
  599 #define CHIPC_MC_M1M3           0x11
  600 
  601 /* Type 2 Clock control magic field values */
  602 #define CHIPC_T2_BIAS           2       /* n1, n2, m1 & m3 bias */
  603 #define CHIPC_T2M2_BIAS         3       /* m2 bias */
  604 
  605 #define CHIPC_T2MC_M1BYP        1
  606 #define CHIPC_T2MC_M2BYP        2
  607 #define CHIPC_T2MC_M3BYP        4
  608 
  609 /* Type 6 Clock control magic field values */
  610 #define CHIPC_T6_MMASK          1       /* bits of interest in m */
  611 #define CHIPC_T6_M0             120000000       /* sb clock for m = 0 */
  612 #define CHIPC_T6_M1             100000000       /* sb clock for m = 1 */
  613 #define CHIPC_SB2MIPS_T6(sb)    (2 * (sb))
  614 
  615 /* Common clock base */
  616 #define CHIPC_CLOCK_BASE1       24000000        /* Half the clock freq */
  617 #define CHIPC_CLOCK_BASE2       12500000        /* Alternate crystal on some PLLs */
  618 
  619 /* Clock control values for 200MHz in 5350 */
  620 #define CHIPC_CLKC_5350_N       0x0311
  621 #define CHIPC_CLKC_5350_M       0x04020009
  622 
  623 /* Bits in the ExtBus config registers */
  624 #define CHIPC_CFG_EN            0x0001  /* Enable */
  625 #define CHIPC_CFG_EM_MASK       0x000e  /* Extif Mode */
  626 #define CHIPC_CFG_EM_ASYNC      0x0000  /*   Async/Parallel flash */
  627 #define CHIPC_CFG_EM_SYNC       0x0002  /*   Synchronous */
  628 #define CHIPC_CFG_EM_PCMCIA     0x0004  /*   PCMCIA */
  629 #define CHIPC_CFG_EM_IDE        0x0006  /*   IDE */
  630 #define CHIPC_FLASH_CFG_DS      0x0010  /* Data size, 0=8bit, 1=16bit */
  631 #define CHIPC_FLASH_CFG_CD_MASK 0x00e0  /* Sync: Clock divisor, rev >= 20 */
  632 #define CHIPC_FLASH_CFG_CE      0x0100  /* Sync: Clock enable, rev >= 20 */
  633 #define CHIPC_FLASH_CFG_SB      0x0200  /* Sync: Size/Bytestrobe, rev >= 20 */
  634 #define CHIPC_FLASH_CFG_IS      0x0400  /* Extif Sync Clk Select, rev >= 20 */
  635 
  636 /* ExtBus address space */
  637 #define CHIPC_EB_BASE           0x1a000000      /* Chipc ExtBus base address */
  638 #define CHIPC_EB_PCMCIA_MEM     0x1a000000      /* PCMCIA 0 memory base address */
  639 #define CHIPC_EB_PCMCIA_IO      0x1a200000      /* PCMCIA 0 I/O base address */
  640 #define CHIPC_EB_PCMCIA_CFG     0x1a400000      /* PCMCIA 0 config base address */
  641 #define CHIPC_EB_IDE            0x1a800000      /* IDE memory base */
  642 #define CHIPC_EB_PCMCIA1_MEM    0x1a800000      /* PCMCIA 1 memory base address */
  643 #define CHIPC_EB_PCMCIA1_IO     0x1aa00000      /* PCMCIA 1 I/O base address */
  644 #define CHIPC_EB_PCMCIA1_CFG    0x1ac00000      /* PCMCIA 1 config base address */
  645 #define CHIPC_EB_PROGIF         0x1b000000      /* ProgIF Async/Sync base address */
  646 
  647 /* Start/busy bit in flashcontrol */
  648 #define CHIPC_SFLASH_OPCODE     0x000000ff
  649 #define CHIPC_SFLASH_ACTION     0x00000700
  650 #define CHIPC_SFLASH_CS_ACTIVE  0x00001000      /* Chip Select Active, rev >= 20 */
  651 #define CHIPC_SFLASH_START      0x80000000
  652 #define CHIPC_SFLASH_BUSY       SFLASH_START
  653 
  654 /* flashcontrol action codes */
  655 #define CHIPC_SFLASH_ACT_OPONLY         0x0000  /* Issue opcode only */
  656 #define CHIPC_SFLASH_ACT_OP1D           0x0100  /* opcode + 1 data byte */
  657 #define CHIPC_SFLASH_ACT_OP3A           0x0200  /* opcode + 3 addr bytes */
  658 #define CHIPC_SFLASH_ACT_OP3A1D         0x0300  /* opcode + 3 addr & 1 data bytes */
  659 #define CHIPC_SFLASH_ACT_OP3A4D         0x0400  /* opcode + 3 addr & 4 data bytes */
  660 #define CHIPC_SFLASH_ACT_OP3A4X4D       0x0500  /* opcode + 3 addr, 4 don't care & 4 data bytes */
  661 #define CHIPC_SFLASH_ACT_OP3A1X4D       0x0700  /* opcode + 3 addr, 1 don't care & 4 data bytes */
  662 
  663 /* flashcontrol action+opcodes for ST flashes */
  664 #define CHIPC_SFLASH_ST_WREN            0x0006  /* Write Enable */
  665 #define CHIPC_SFLASH_ST_WRDIS           0x0004  /* Write Disable */
  666 #define CHIPC_SFLASH_ST_RDSR            0x0105  /* Read Status Register */
  667 #define CHIPC_SFLASH_ST_WRSR            0x0101  /* Write Status Register */
  668 #define CHIPC_SFLASH_ST_READ            0x0303  /* Read Data Bytes */
  669 #define CHIPC_SFLASH_ST_PP              0x0302  /* Page Program */
  670 #define CHIPC_SFLASH_ST_SE              0x02d8  /* Sector Erase */
  671 #define CHIPC_SFLASH_ST_BE              0x00c7  /* Bulk Erase */
  672 #define CHIPC_SFLASH_ST_DP              0x00b9  /* Deep Power-down */
  673 #define CHIPC_SFLASH_ST_RES             0x03ab  /* Read Electronic Signature */
  674 #define CHIPC_SFLASH_ST_CSA             0x1000  /* Keep chip select asserted */
  675 #define CHIPC_SFLASH_ST_SSE             0x0220  /* Sub-sector Erase */
  676 
  677 /* Status register bits for ST flashes */
  678 #define CHIPC_SFLASH_ST_WIP             0x01    /* Write In Progress */
  679 #define CHIPC_SFLASH_ST_WEL             0x02    /* Write Enable Latch */
  680 #define CHIPC_SFLASH_ST_BP_MASK         0x1c    /* Block Protect */
  681 #define CHIPC_SFLASH_ST_BP_SHIFT        2
  682 #define CHIPC_SFLASH_ST_SRWD            0x80    /* Status Register Write Disable */
  683 
  684 /* flashcontrol action+opcodes for Atmel flashes */
  685 #define CHIPC_SFLASH_AT_READ                            0x07e8
  686 #define CHIPC_SFLASH_AT_PAGE_READ                       0x07d2
  687 #define CHIPC_SFLASH_AT_BUF1_READ
  688 #define CHIPC_SFLASH_AT_BUF2_READ
  689 #define CHIPC_SFLASH_AT_STATUS                          0x01d7
  690 #define CHIPC_SFLASH_AT_BUF1_WRITE                      0x0384
  691 #define CHIPC_SFLASH_AT_BUF2_WRITE                      0x0387
  692 #define CHIPC_SFLASH_AT_BUF1_ERASE_PROGRAM              0x0283
  693 #define CHIPC_SFLASH_AT_BUF2_ERASE_PROGRAM              0x0286
  694 #define CHIPC_SFLASH_AT_BUF1_PROGRAM                    0x0288
  695 #define CHIPC_SFLASH_AT_BUF2_PROGRAM                    0x0289
  696 #define CHIPC_SFLASH_AT_PAGE_ERASE                      0x0281
  697 #define CHIPC_SFLASH_AT_BLOCK_ERASE                     0x0250
  698 #define CHIPC_SFLASH_AT_BUF1_WRITE_ERASE_PROGRAM        0x0382
  699 #define CHIPC_SFLASH_AT_BUF2_WRITE_ERASE_PROGRAM        0x0385
  700 #define CHIPC_SFLASH_AT_BUF1_LOAD                       0x0253
  701 #define CHIPC_SFLASH_AT_BUF2_LOAD                       0x0255
  702 #define CHIPC_SFLASH_AT_BUF1_COMPARE                    0x0260
  703 #define CHIPC_SFLASH_AT_BUF2_COMPARE                    0x0261
  704 #define CHIPC_SFLASH_AT_BUF1_REPROGRAM                  0x0258
  705 #define CHIPC_SFLASH_AT_BUF2_REPROGRAM                  0x0259
  706 
  707 /* Status register bits for Atmel flashes */
  708 #define CHIPC_SFLASH_AT_READY                           0x80
  709 #define CHIPC_SFLASH_AT_MISMATCH                        0x40
  710 #define CHIPC_SFLASH_AT_ID_MASK                         0x38
  711 #define CHIPC_SFLASH_AT_ID_SHIFT                        3
  712 
  713 /*
  714  * These are the UART port assignments, expressed as offsets from the base
  715  * register.  These assignments should hold for any serial port based on
  716  * a 8250, 16450, or 16550(A).
  717  */
  718 
  719 #define CHIPC_UART_RX                   0       /* In:  Receive buffer (DLAB=0) */
  720 #define CHIPC_UART_TX                   0       /* Out: Transmit buffer (DLAB=0) */
  721 #define CHIPC_UART_DLL                  0       /* Out: Divisor Latch Low (DLAB=1) */
  722 #define CHIPC_UART_IER                  1       /* In/Out: Interrupt Enable Register (DLAB=0) */
  723 #define CHIPC_UART_DLM                  1       /* Out: Divisor Latch High (DLAB=1) */
  724 #define CHIPC_UART_IIR                  2       /* In: Interrupt Identity Register  */
  725 #define CHIPC_UART_FCR                  2       /* Out: FIFO Control Register */
  726 #define CHIPC_UART_LCR                  3       /* Out: Line Control Register */
  727 #define CHIPC_UART_MCR                  4       /* Out: Modem Control Register */
  728 #define CHIPC_UART_LSR                  5       /* In:  Line Status Register */
  729 #define CHIPC_UART_MSR                  6       /* In:  Modem Status Register */
  730 #define CHIPC_UART_SCR                  7       /* I/O: Scratch Register */
  731 #define CHIPC_UART_LCR_DLAB             0x80    /* Divisor latch access bit */
  732 #define CHIPC_UART_LCR_WLEN8            0x03    /* Word length: 8 bits */
  733 #define CHIPC_UART_MCR_OUT2             0x08    /* MCR GPIO out 2 */
  734 #define CHIPC_UART_MCR_LOOP             0x10    /* Enable loopback test mode */
  735 #define CHIPC_UART_LSR_RX_FIFO          0x80    /* Receive FIFO error */
  736 #define CHIPC_UART_LSR_TDHR             0x40    /* Data-hold-register empty */
  737 #define CHIPC_UART_LSR_THRE             0x20    /* Transmit-hold-register empty */
  738 #define CHIPC_UART_LSR_BREAK            0x10    /* Break interrupt */
  739 #define CHIPC_UART_LSR_FRAMING          0x08    /* Framing error */
  740 #define CHIPC_UART_LSR_PARITY           0x04    /* Parity error */
  741 #define CHIPC_UART_LSR_OVERRUN          0x02    /* Overrun error */
  742 #define CHIPC_UART_LSR_RXRDY            0x01    /* Receiver ready */
  743 #define CHIPC_UART_FCR_FIFO_ENABLE      1       /* FIFO control register bit controlling FIFO enable/disable */
  744 
  745 /* Interrupt Identity Register (IIR) bits */
  746 #define CHIPC_UART_IIR_FIFO_MASK        0xc0    /* IIR FIFO disable/enabled mask */
  747 #define CHIPC_UART_IIR_INT_MASK         0xf     /* IIR interrupt ID source */
  748 #define CHIPC_UART_IIR_MDM_CHG          0x0     /* Modem status changed */
  749 #define CHIPC_UART_IIR_NOINT            0x1     /* No interrupt pending */
  750 #define CHIPC_UART_IIR_THRE             0x2     /* THR empty */
  751 #define CHIPC_UART_IIR_RCVD_DATA        0x4     /* Received data available */
  752 #define CHIPC_UART_IIR_RCVR_STATUS      0x6     /* Receiver status */
  753 #define CHIPC_UART_IIR_CHAR_TIME        0xc     /* Character time */
  754 
  755 /* Interrupt Enable Register (IER) bits */
  756 #define CHIPC_UART_IER_EDSSI    8       /* enable modem status interrupt */
  757 #define CHIPC_UART_IER_ELSI     4       /* enable receiver line status interrupt */
  758 #define CHIPC_UART_IER_ETBEI    2       /* enable transmitter holding register empty interrupt */
  759 #define CHIPC_UART_IER_ERBFI    1       /* enable data available interrupt */
  760 
  761 /* 4325 chip-specific ChipStatus register bits */
  762 #define CHIPC_CST4325_SPROM_OTP_SEL_MASK        CHIPC_CST_SPROM_OTP_SEL_R22_MASK
  763 #define CHIPC_CST4325_SPROM_OTP_SEL_SHIFT       CHIPC_CST_SPROM_OTP_SEL_R22_SHIFT
  764 #define CHIPC_CST4325_SDIO_USB_MODE_MASK        0x00000004
  765 #define CHIPC_CST4325_SDIO_USB_MODE_SHIFT       2
  766 #define CHIPC_CST4325_RCAL_VALID_MASK           0x00000008
  767 #define CHIPC_CST4325_RCAL_VALID_SHIFT          3
  768 #define CHIPC_CST4325_RCAL_VALUE_MASK           0x000001f0
  769 #define CHIPC_CST4325_RCAL_VALUE_SHIFT          4
  770 #define CHIPC_CST4325_PMUTOP_2B_MASK            0x00000200      /* 1 for 2b, 0 for to 2a */
  771 #define CHIPC_CST4325_PMUTOP_2B_SHIFT           9
  772 
  773 /* 4329 chip-specific ChipStatus register bits */
  774 #define CHIPC_CST4329_SPROM_OTP_SEL_MASK        CHIPC_CST_SPROM_OTP_SEL_R22_MASK
  775 #define CHIPC_CST4329_SPROM_OTP_SEL_SHIFT       CHIPC_CST_SPROM_OTP_SEL_R22_SHIFT
  776 #define CHIPC_CST4329_SPI_SDIO_MODE_MASK        0x00000004
  777 #define CHIPC_CST4329_SPI_SDIO_MODE_SHIFT       2
  778 
  779 /* 4312 chip-specific ChipStatus register bits */
  780 #define CHIPC_CST4312_SPROM_OTP_SEL_MASK        CHIPC_CST_SPROM_OTP_SEL_R22_MASK
  781 #define CHIPC_CST4312_SPROM_OTP_SEL_SHIFT       CHIPC_CST_SPROM_OTP_SEL_R22_SHIFT
  782 
  783 /* 4322 chip-specific ChipStatus register bits */
  784 #define CHIPC_CST4322_XTAL_FREQ_20_40MHZ        0x00000020
  785 #define CHIPC_CST4322_SPROM_OTP_SEL_MASK        CHIPC_CST_SPROM_OTP_SEL_R23_MASK
  786 #define CHIPC_CST4322_SPROM_OTP_SEL_SHIFT       CHIPC_CST_SPROM_OTP_SEL_R23_SHIFT
  787 #define CHIPC_CST4322_PCI_OR_USB                0x00000100
  788 #define CHIPC_CST4322_BOOT_MASK                 0x00000600
  789 #define CHIPC_CST4322_BOOT_SHIFT                9
  790 #define CHIPC_CST4322_BOOT_FROM_SRAM            0       /* boot from SRAM, ARM in reset */
  791 #define CHIPC_CST4322_BOOT_FROM_ROM             1       /* boot from ROM */
  792 #define CHIPC_CST4322_BOOT_FROM_FLASH           2       /* boot from FLASH */
  793 #define CHIPC_CST4322_BOOT_FROM_INVALID         3
  794 #define CHIPC_CST4322_ILP_DIV_EN                0x00000800
  795 #define CHIPC_CST4322_FLASH_TYPE_MASK           0x00001000
  796 #define CHIPC_CST4322_FLASH_TYPE_SHIFT          12
  797 #define CHIPC_CST4322_FLASH_TYPE_SHIFT_ST       0       /* ST serial FLASH */
  798 #define CHIPC_CST4322_FLASH_TYPE_SHIFT_ATMEL    1       /* ATMEL flash */
  799 #define CHIPC_CST4322_ARM_TAP_SEL               0x00002000
  800 #define CHIPC_CST4322_RES_INIT_MODE_MASK        0x0000c000
  801 #define CHIPC_CST4322_RES_INIT_MODE_SHIFT       14
  802 #define CHIPC_CST4322_RES_INIT_MODE_ILPAVAIL    0       /* resinitmode: ILP available */
  803 #define CHIPC_CST4322_RES_INIT_MODE_ILPREQ      1       /* resinitmode: ILP request */
  804 #define CHIPC_CST4322_RES_INIT_MODE_ALPAVAIL    2       /* resinitmode: ALP available */
  805 #define CHIPC_CST4322_RES_INIT_MODE_HTAVAIL     3       /* resinitmode: HT available */
  806 #define CHIPC_CST4322_PCIPLLCLK_GATING          0x00010000
  807 #define CHIPC_CST4322_CLK_SWITCH_PCI_TO_ALP     0x00020000
  808 #define CHIPC_CST4322_PCI_CARDBUS_MODE          0x00040000
  809 
  810 /* 43236 Chip specific ChipStatus register bits */
  811 #define CHIPC_CST43236_SFLASH_MASK              0x00000040
  812 #define CHIPC_CST43236_OTP_SEL_MASK             0x00000080
  813 #define CHIPC_CST43236_OTP_SEL_SHIFT            7
  814 #define CHIPC_CST43236_HSIC_MASK                0x00000100      /* USB/HSIC */
  815 #define CHIPC_CST43236_BP_CLK                   0x00000200      /* 120/96Mbps */
  816 #define CHIPC_CST43236_BOOT_MASK                0x00001800
  817 #define CHIPC_CST43236_BOOT_SHIFT               11
  818 #define CHIPC_CST43236_BOOT_FROM_SRAM           0       /* boot from SRAM, ARM in reset */
  819 #define CHIPC_CST43236_BOOT_FROM_ROM            1       /* boot from ROM */
  820 #define CHIPC_CST43236_BOOT_FROM_FLASH          2       /* boot from FLASH */
  821 #define CHIPC_CST43236_BOOT_FROM_INVALID        3
  822 
  823 /* 43237 Chip specific ChipStatus register bits */
  824 #define CHIPC_CST43237_BP_CLK                   0x00000200      /* 96/80Mbps */
  825 
  826 /* 4331 Chip specific ChipStatus register bits */
  827 #define CHIPC_CST4331_XTAL_FREQ                 0x00000001      /* crystal frequency 20/40Mhz */
  828 #define CHIPC_CST4331_SPROM_PRESENT             0x00000002
  829 #define CHIPC_CST4331_OTP_PRESENT               0x00000004
  830 #define CHIPC_CST4331_LDO_RF                    0x00000008
  831 #define CHIPC_CST4331_LDO_PAR                   0x00000010
  832 
  833 /* 4331 chip-specific CHIPCTRL register bits */
  834 #define CHIPC_CCTRL4331_BT_COEXIST              (1<<0)  /* 0 disable */
  835 #define CHIPC_CCTRL4331_SECI                    (1<<1)  /* 0 SECI is disabled (JATG functional) */
  836 #define CHIPC_CCTRL4331_EXT_LNA                 (1<<2)  /* 0 disable */
  837 #define CHIPC_CCTRL4331_SPROM_GPIO13_15         (1<<3)  /* sprom/gpio13-15 mux */
  838 #define CHIPC_CCTRL4331_EXTPA_EN                (1<<4)  /* 0 ext pa disable, 1 ext pa enabled */
  839 #define CHIPC_CCTRL4331_GPIOCLK_ON_SPROMCS      (1<<5)  /* set drive out GPIO_CLK on sprom_cs pin */
  840 #define CHIPC_CCTRL4331_PCIE_MDIO_ON_SPROMCS    (1<<6)  /* use sprom_cs pin as PCIE mdio interface */
  841 #define CHIPC_CCTRL4331_EXTPA_ON_GPIO2_5        (1<<7)  /* aband extpa will be at gpio2/5 and sprom_dout */
  842 #define CHIPC_CCTRL4331_OVR_PIPEAUXCLKEN        (1<<8)  /* override core control on pipe_AuxClkEnable */
  843 #define CHIPC_CCTRL4331_OVR_PIPEAUXPWRDOWN      (1<<9)  /* override core control on pipe_AuxPowerDown */
  844 #define CHIPC_CCTRL4331_PCIE_AUXCLKEN           (1<<10) /* pcie_auxclkenable */
  845 #define CHIPC_CCTRL4331_PCIE_PIPE_PLLDOWN       (1<<11) /* pcie_pipe_pllpowerdown */
  846 #define CHIPC_CCTRL4331_EXTPA_EN2               (1<<12) /* 0 ext pa2 disable, 1 ext pa2 enabled */
  847 #define CHIPC_CCTRL4331_BT_SHD0_ON_GPIO4        (1<<16) /* enable bt_shd0 at gpio4 */
  848 #define CHIPC_CCTRL4331_BT_SHD1_ON_GPIO5        (1<<17) /* enable bt_shd1 at gpio5 */
  849 
  850 /* 4315 chip-specific ChipStatus register bits */
  851 #define CHIPC_CST4315_SPROM_OTP_SEL_MASK        CHIPC_CST_SPROM_OTP_SEL_R22_MASK
  852 #define CHIPC_CST4315_SPROM_OTP_SEL_SHIFT       CHIPC_CST_SPROM_OTP_SEL_R22_SHIFT
  853 #define CHIPC_CST4315_SDIO_MODE                 0x00000004      /* gpio [8], sdio/usb mode */
  854 #define CHIPC_CST4315_RCAL_VALID                0x00000008
  855 #define CHIPC_CST4315_RCAL_VALUE_MASK           0x000001f0
  856 #define CHIPC_CST4315_RCAL_VALUE_SHIFT          4
  857 #define CHIPC_CST4315_PALDO_EXTPNP              0x00000200      /* PALDO is configured with external PNP */
  858 #define CHIPC_CST4315_CBUCK_MODE_MASK           0x00000c00
  859 #define CHIPC_CST4315_CBUCK_MODE_BURST          0x00000400
  860 #define CHIPC_CST4315_CBUCK_MODE_LPBURST        0x00000c00
  861 
  862 /* 4319 chip-specific ChipStatus register bits */
  863 #define CHIPC_CST4319_SPI_CPULESSUSB            0x00000001
  864 #define CHIPC_CST4319_SPI_CLK_POL               0x00000002
  865 #define CHIPC_CST4319_SPI_CLK_PH                0x00000008
  866 #define CHIPC_CST4319_SPROM_OTP_SEL_MASK        CHIPC_CST_SPROM_OTP_SEL_R23_MASK        /* gpio [7:6], SDIO CIS selection */
  867 #define CHIPC_CST4319_SPROM_OTP_SEL_SHIFT       CHIPC_CST_SPROM_OTP_SEL_R23_SHIFT
  868 #define CHIPC_CST4319_SDIO_USB_MODE             0x00000100      /* gpio [8], sdio/usb mode */
  869 #define CHIPC_CST4319_REMAP_SEL_MASK            0x00000600
  870 #define CHIPC_CST4319_ILPDIV_EN                 0x00000800
  871 #define CHIPC_CST4319_XTAL_PD_POL               0x00001000
  872 #define CHIPC_CST4319_LPO_SEL                   0x00002000
  873 #define CHIPC_CST4319_RES_INIT_MODE             0x0000c000
  874 #define CHIPC_CST4319_PALDO_EXTPNP              0x00010000      /* PALDO is configured with external PNP */
  875 #define CHIPC_CST4319_CBUCK_MODE_MASK           0x00060000
  876 #define CHIPC_CST4319_CBUCK_MODE_BURST          0x00020000
  877 #define CHIPC_CST4319_CBUCK_MODE_LPBURST        0x00060000
  878 #define CHIPC_CST4319_RCAL_VALID                0x01000000
  879 #define CHIPC_CST4319_RCAL_VALUE_MASK           0x3e000000
  880 #define CHIPC_CST4319_RCAL_VALUE_SHIFT          25
  881 
  882 /* 4336 chip-specific ChipStatus register bits */
  883 #define CHIPC_CST4336_SPI_MODE_MASK             0x00000001
  884 #define CHIPC_CST4336_SPROM_PRESENT             0x00000002
  885 #define CHIPC_CST4336_OTP_PRESENT               0x00000004
  886 #define CHIPC_CST4336_ARMREMAP_0                0x00000008
  887 #define CHIPC_CST4336_ILPDIV_EN_MASK            0x00000010
  888 #define CHIPC_CST4336_ILPDIV_EN_SHIFT           4
  889 #define CHIPC_CST4336_XTAL_PD_POL_MASK          0x00000020
  890 #define CHIPC_CST4336_XTAL_PD_POL_SHIFT         5
  891 #define CHIPC_CST4336_LPO_SEL_MASK              0x00000040
  892 #define CHIPC_CST4336_LPO_SEL_SHIFT             6
  893 #define CHIPC_CST4336_RES_INIT_MODE_MASK        0x00000180
  894 #define CHIPC_CST4336_RES_INIT_MODE_SHIFT       7
  895 #define CHIPC_CST4336_CBUCK_MODE_MASK           0x00000600
  896 #define CHIPC_CST4336_CBUCK_MODE_SHIFT          9
  897 
  898 /* 4330 chip-specific ChipStatus register bits */
  899 #define CHIPC_CST4330_CHIPMODE_SDIOD(cs)        (((cs) & 0x7) < 6)      /* SDIO || gSPI */
  900 #define CHIPC_CST4330_CHIPMODE_USB20D(cs)       (((cs) & 0x7) >= 6)     /* USB || USBDA */
  901 #define CHIPC_CST4330_CHIPMODE_SDIO(cs)         (((cs) & 0x4) == 0)     /* SDIO */
  902 #define CHIPC_CST4330_CHIPMODE_GSPI(cs)         (((cs) & 0x6) == 4)     /* gSPI */
  903 #define CHIPC_CST4330_CHIPMODE_USB(cs)          (((cs) & 0x7) == 6)     /* USB packet-oriented */
  904 #define CHIPC_CST4330_CHIPMODE_USBDA(cs)        (((cs) & 0x7) == 7)     /* USB Direct Access */
  905 #define CHIPC_CST4330_OTP_PRESENT               0x00000010
  906 #define CHIPC_CST4330_LPO_AUTODET_EN            0x00000020
  907 #define CHIPC_CST4330_ARMREMAP_0                0x00000040
  908 #define CHIPC_CST4330_SPROM_PRESENT             0x00000080      /* takes priority over OTP if both set */
  909 #define CHIPC_CST4330_ILPDIV_EN                 0x00000100
  910 #define CHIPC_CST4330_LPO_SEL                   0x00000200
  911 #define CHIPC_CST4330_RES_INIT_MODE_SHIFT       10
  912 #define CHIPC_CST4330_RES_INIT_MODE_MASK        0x00000c00
  913 #define CHIPC_CST4330_CBUCK_MODE_SHIFT          12
  914 #define CHIPC_CST4330_CBUCK_MODE_MASK           0x00003000
  915 #define CHIPC_CST4330_CBUCK_POWER_OK            0x00004000
  916 #define CHIPC_CST4330_BB_PLL_LOCKED             0x00008000
  917 #define CHIPC_SOCDEVRAM_4330_BP_ADDR            0x1E000000
  918 #define CHIPC_SOCDEVRAM_4330_ARM_ADDR           0x00800000
  919 
  920 /* 4313 chip-specific ChipStatus register bits */
  921 #define CHIPC_CST4313_SPROM_PRESENT             1
  922 #define CHIPC_CST4313_OTP_PRESENT               2
  923 #define CHIPC_CST4313_SPROM_OTP_SEL_MASK        0x00000002
  924 #define CHIPC_CST4313_SPROM_OTP_SEL_SHIFT       0
  925 
  926 /* 43228 chipstatus  reg bits */
  927 #define CHIPC_CST43228_ILP_DIV_EN               0x1
  928 #define CHIPC_CST43228_OTP_PRESENT              0x2
  929 #define CHIPC_CST43228_SERDES_REFCLK_PADSEL     0x4
  930 #define CHIPC_CST43228_SDIO_MODE                0x8
  931 
  932 #define CHIPC_CST43228_SDIO_OTP_PRESENT         0x10
  933 #define CHIPC_CST43228_SDIO_RESET               0x20
  934 
  935 /* 4706 chipstatus reg bits */
  936 #define CHIPC_CST4706_LOWCOST_PKG               (1<<0)  /* 0: full-featured package 1: low-cost package */
  937 #define CHIPC_CST4706_SFLASH_PRESENT            (1<<1)  /* 0: parallel, 1: serial flash is present */
  938 #define CHIPC_CST4706_SFLASH_TYPE               (1<<2)  /* 0: 8b-p/ST-s flash, 1: 16b-p/Atmal-s flash */
  939 #define CHIPC_CST4706_MIPS_BENDIAN              (1<<3)  /* 0: little,  1: big endian */
  940 #define CHIPC_CST4706_PCIE1_DISABLE             (1<<5)  /* PCIE1 enable strap pin */
  941 
  942 /* 4706 flashstrconfig reg bits */
  943 #define CHIPC_FLSTRCF4706_MASK                  0x000000ff
  944 #define CHIPC_FLSTRCF4706_SF1                   0x00000001      /* 2nd serial flash present */
  945 #define CHIPC_FLSTRCF4706_PF1                   0x00000002      /* 2nd parallel flash present */
  946 #define CHIPC_FLSTRCF4706_SF1_TYPE              0x00000004      /* 2nd serial flash type : 0 : ST, 1 : Atmel */
  947 #define CHIPC_FLSTRCF4706_NF1                   0x00000008      /* 2nd NAND flash present */
  948 #define CHIPC_FLSTRCF4706_1ST_MADDR_SEG_MASK    0x000000f0      /* Valid value mask */
  949 #define CHIPC_FLSTRCF4706_1ST_MADDR_SEG_SHIFT   4
  950 #define   CHIPC_FLSTRCF4706_1ST_MADDR_SEG_4MB   0x1             /* 4MB */
  951 #define   CHIPC_FLSTRCF4706_1ST_MADDR_SEG_8MB   0x2             /* 8MB */
  952 #define   CHIPC_FLSTRCF4706_1ST_MADDR_SEG_16MB  0x3             /* 16MB */
  953 #define   CHIPC_FLSTRCF4706_1ST_MADDR_SEG_32MB  0x4             /* 32MB */
  954 #define   CHIPC_FLSTRCF4706_1ST_MADDR_SEG_64MB  0x5             /* 64MB */
  955 #define   CHIPC_FLSTRCF4706_1ST_MADDR_SEG_128MB 0x6             /* 128MB */
  956 #define   CHIPC_FLSTRCF4706_1ST_MADDR_SEG_256MB 0x7             /* 256MB */
  957 
  958 /*
  959 * Register eci_inputlo bitfield values.
  960 * - BT packet type information bits [7:0]
  961 */
  962 /*  [3:0] - Task (link) type */
  963 #define CHIPC_BT_ACL                            0x00
  964 #define CHIPC_BT_SCO                            0x01
  965 #define CHIPC_BT_eSCO                           0x02
  966 #define CHIPC_BT_A2DP                           0x03
  967 #define CHIPC_BT_SNIFF                          0x04
  968 #define CHIPC_BT_PAGE_SCAN                      0x05
  969 #define CHIPC_BT_INQUIRY_SCAN                   0x06
  970 #define CHIPC_BT_PAGE                           0x07
  971 #define CHIPC_BT_INQUIRY                        0x08
  972 #define CHIPC_BT_MSS                            0x09
  973 #define CHIPC_BT_PARK                           0x0a
  974 #define CHIPC_BT_RSSISCAN                       0x0b
  975 #define CHIPC_BT_MD_ACL                         0x0c
  976 #define CHIPC_BT_MD_eSCO                        0x0d
  977 #define CHIPC_BT_SCAN_WITH_SCO_LINK             0x0e
  978 #define CHIPC_BT_SCAN_WITHOUT_SCO_LINK          0x0f
  979 /* [7:4] = packet duration code */
  980 /* [8] - Master / Slave */
  981 #define CHIPC_BT_MASTER                         0
  982 #define CHIPC_BT_SLAVE                          1
  983 /* [11:9] - multi-level priority */
  984 #define CHIPC_BT_LOWEST_PRIO                    0x0
  985 #define CHIPC_BT_HIGHEST_PRIO                   0x3
  986 
  987 #endif /* _BHND_CORES_CHIPC_CHIPCREG_H_ */

Cache object: e096c2ff46db052541b4153dadf4cd0b


[ 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.