Home | History | Annotate | Download | only in PchRegs
      1 /*++
      2 
      3 Copyright (c) 2012  - 2014, Intel Corporation. All rights reserved
      4 
      5   This program and the accompanying materials are licensed and made available under
      6   the terms and conditions of the BSD License that accompanies this distribution.
      7   The full text of the license may be found at
      8   http://opensource.org/licenses/bsd-license.php.
      9 
     10   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     11   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     12 
     13 
     14 
     15 Module Name:
     16 
     17   PchRegsScc.h
     18 
     19 Abstract:
     20 
     21   Register names for VLV SCC module.
     22 
     23   Conventions:
     24 
     25   - Prefixes:
     26     Definitions beginning with "R_" are registers
     27     Definitions beginning with "B_" are bits within registers
     28     Definitions beginning with "V_" are meaningful values of bits within the registers
     29     Definitions beginning with "S_" are register sizes
     30     Definitions beginning with "N_" are the bit position
     31   - In general, PCH registers are denoted by "_PCH_" in register names
     32   - Registers / bits that are different between PCH generations are denoted by
     33     "_PCH_<generation_name>_" in register/bit names. e.g., "_PCH_VLV_"
     34   - Registers / bits that are different between SKUs are denoted by "_<SKU_name>"
     35     at the end of the register/bit names
     36   - Registers / bits of new devices introduced in a PCH generation will be just named
     37     as "_PCH_" without <generation_name> inserted.
     38 
     39 --*/
     40 #ifndef _PCH_REGS_SCC_H_
     41 #define _PCH_REGS_SCC_H_
     42 
     43 
     44 //
     45 // SCC Modules Registers
     46 //
     47 
     48 //
     49 // SCC SDIO Modules
     50 // PCI Config Space Registers
     51 //
     52 #define PCI_DEVICE_NUMBER_PCH_SCC_SDIO_0         16
     53 #define PCI_DEVICE_NUMBER_PCH_SCC_SDIO_1         17
     54 #define PCI_DEVICE_NUMBER_PCH_SCC_SDIO_2         18
     55 #define PCI_DEVICE_NUMBER_PCH_SCC_SDIO_3         23
     56 
     57 #define PCI_FUNCTION_NUMBER_PCH_SCC_SDIO         0
     58 
     59 #endif
     60