diff options
| author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
|---|---|---|
| committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
| commit | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch) | |
| tree | a57612d1888735a2ec7972891b68c1ac5ec8faea /arch/arm/mach-bcmring/include | |
| parent | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff) | |
Diffstat (limited to 'arch/arm/mach-bcmring/include')
42 files changed, 9137 insertions, 0 deletions
diff --git a/arch/arm/mach-bcmring/include/cfg_global.h b/arch/arm/mach-bcmring/include/cfg_global.h new file mode 100644 index 00000000000..f01da877148 --- /dev/null +++ b/arch/arm/mach-bcmring/include/cfg_global.h | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #ifndef _CFG_GLOBAL_H_ | ||
| 2 | #define _CFG_GLOBAL_H_ | ||
| 3 | |||
| 4 | #include <cfg_global_defines.h> | ||
| 5 | |||
| 6 | #define CFG_GLOBAL_CHIP BCM11107 | ||
| 7 | #define CFG_GLOBAL_CHIP_FAMILY CFG_GLOBAL_CHIP_FAMILY_BCMRING | ||
| 8 | #define CFG_GLOBAL_CHIP_REV 0xB0 | ||
| 9 | #define CFG_GLOBAL_RAM_SIZE 0x10000000 | ||
| 10 | #define CFG_GLOBAL_RAM_BASE 0x00000000 | ||
| 11 | #define CFG_GLOBAL_RAM_RESERVED_SIZE 0x000000 | ||
| 12 | |||
| 13 | #endif /* _CFG_GLOBAL_H_ */ | ||
diff --git a/arch/arm/mach-bcmring/include/cfg_global_defines.h b/arch/arm/mach-bcmring/include/cfg_global_defines.h new file mode 100644 index 00000000000..b5beb0b3073 --- /dev/null +++ b/arch/arm/mach-bcmring/include/cfg_global_defines.h | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2006 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CFG_GLOBAL_DEFINES_H | ||
| 16 | #define CFG_GLOBAL_DEFINES_H | ||
| 17 | |||
| 18 | /* CHIP */ | ||
| 19 | #define BCM1103 1 | ||
| 20 | |||
| 21 | #define BCM1191 4 | ||
| 22 | #define BCM2153 5 | ||
| 23 | #define BCM2820 6 | ||
| 24 | |||
| 25 | #define BCM2826 8 | ||
| 26 | #define FPGA11107 9 | ||
| 27 | #define BCM11107 10 | ||
| 28 | #define BCM11109 11 | ||
| 29 | #define BCM11170 12 | ||
| 30 | #define BCM11110 13 | ||
| 31 | #define BCM11211 14 | ||
| 32 | |||
| 33 | /* CFG_GLOBAL_CHIP_FAMILY types */ | ||
| 34 | #define CFG_GLOBAL_CHIP_FAMILY_NONE 0 | ||
| 35 | #define CFG_GLOBAL_CHIP_FAMILY_BCM116X 2 | ||
| 36 | #define CFG_GLOBAL_CHIP_FAMILY_BCMRING 4 | ||
| 37 | #define CFG_GLOBAL_CHIP_FAMILY_BCM1103 8 | ||
| 38 | |||
| 39 | #define IMAGE_HEADER_SIZE_CHECKSUM 4 | ||
| 40 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/csp/cache.h b/arch/arm/mach-bcmring/include/csp/cache.h new file mode 100644 index 00000000000..caa20e59db9 --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/cache.h | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CSP_CACHE_H | ||
| 16 | #define CSP_CACHE_H | ||
| 17 | |||
| 18 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 19 | |||
| 20 | #include <csp/stdint.h> | ||
| 21 | |||
| 22 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 23 | |||
| 24 | #if defined(__KERNEL__) && !defined(STANDALONE) | ||
| 25 | #include <asm/cacheflush.h> | ||
| 26 | |||
| 27 | #define CSP_CACHE_FLUSH_ALL flush_cache_all() | ||
| 28 | |||
| 29 | #else | ||
| 30 | |||
| 31 | #define CSP_CACHE_FLUSH_ALL | ||
| 32 | |||
| 33 | #endif | ||
| 34 | |||
| 35 | #endif /* CSP_CACHE_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/delay.h b/arch/arm/mach-bcmring/include/csp/delay.h new file mode 100644 index 00000000000..8b3d8036729 --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/delay.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | |||
| 16 | #ifndef CSP_DELAY_H | ||
| 17 | #define CSP_DELAY_H | ||
| 18 | |||
| 19 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 20 | |||
| 21 | /* Some CSP routines require use of the following delay routines. Use the OS */ | ||
| 22 | /* version if available, otherwise use a CSP specific definition. */ | ||
| 23 | /* void udelay(unsigned long usecs); */ | ||
| 24 | /* void mdelay(unsigned long msecs); */ | ||
| 25 | |||
| 26 | #if defined(__KERNEL__) && !defined(STANDALONE) | ||
| 27 | #include <linux/delay.h> | ||
| 28 | #else | ||
| 29 | #include <mach/csp/delay.h> | ||
| 30 | #endif | ||
| 31 | |||
| 32 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 33 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 34 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 35 | |||
| 36 | #endif /* CSP_DELAY_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/dmacHw.h b/arch/arm/mach-bcmring/include/csp/dmacHw.h new file mode 100644 index 00000000000..e6a1dc484ca --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/dmacHw.h | |||
| @@ -0,0 +1,596 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file dmacHw.h | ||
| 18 | * | ||
| 19 | * @brief API definitions for low level DMA controller driver | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | #ifndef _DMACHW_H | ||
| 24 | #define _DMACHW_H | ||
| 25 | |||
| 26 | #include <stddef.h> | ||
| 27 | |||
| 28 | #include <csp/stdint.h> | ||
| 29 | #include <mach/csp/dmacHw_reg.h> | ||
| 30 | |||
| 31 | /* Define DMA Channel ID using DMA controller number (m) and channel number (c). | ||
| 32 | |||
| 33 | System specific channel ID should be defined as follows | ||
| 34 | |||
| 35 | For example: | ||
| 36 | |||
| 37 | #include <dmacHw.h> | ||
| 38 | ... | ||
| 39 | #define systemHw_LCD_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(0,5) | ||
| 40 | #define systemHw_SWITCH_RX_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(0,0) | ||
| 41 | #define systemHw_SWITCH_TX_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(0,1) | ||
| 42 | #define systemHw_APM_RX_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(0,3) | ||
| 43 | #define systemHw_APM_TX_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(0,4) | ||
| 44 | ... | ||
| 45 | #define systemHw_SHARED1_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(1,4) | ||
| 46 | #define systemHw_SHARED2_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(1,5) | ||
| 47 | #define systemHw_SHARED3_CHANNEL_ID dmacHw_MAKE_CHANNEL_ID(0,6) | ||
| 48 | ... | ||
| 49 | */ | ||
| 50 | #define dmacHw_MAKE_CHANNEL_ID(m, c) (m << 8 | c) | ||
| 51 | |||
| 52 | typedef enum { | ||
| 53 | dmacHw_CHANNEL_PRIORITY_0 = dmacHw_REG_CFG_LO_CH_PRIORITY_0, /* Channel priority 0. Lowest priority DMA channel */ | ||
| 54 | dmacHw_CHANNEL_PRIORITY_1 = dmacHw_REG_CFG_LO_CH_PRIORITY_1, /* Channel priority 1 */ | ||
| 55 | dmacHw_CHANNEL_PRIORITY_2 = dmacHw_REG_CFG_LO_CH_PRIORITY_2, /* Channel priority 2 */ | ||
| 56 | dmacHw_CHANNEL_PRIORITY_3 = dmacHw_REG_CFG_LO_CH_PRIORITY_3, /* Channel priority 3 */ | ||
| 57 | dmacHw_CHANNEL_PRIORITY_4 = dmacHw_REG_CFG_LO_CH_PRIORITY_4, /* Channel priority 4 */ | ||
| 58 | dmacHw_CHANNEL_PRIORITY_5 = dmacHw_REG_CFG_LO_CH_PRIORITY_5, /* Channel priority 5 */ | ||
| 59 | dmacHw_CHANNEL_PRIORITY_6 = dmacHw_REG_CFG_LO_CH_PRIORITY_6, /* Channel priority 6 */ | ||
| 60 | dmacHw_CHANNEL_PRIORITY_7 = dmacHw_REG_CFG_LO_CH_PRIORITY_7 /* Channel priority 7. Highest priority DMA channel */ | ||
| 61 | } dmacHw_CHANNEL_PRIORITY_e; | ||
| 62 | |||
| 63 | /* Source destination master interface */ | ||
| 64 | typedef enum { | ||
| 65 | dmacHw_SRC_MASTER_INTERFACE_1 = dmacHw_REG_CTL_SMS_1, /* Source DMA master interface 1 */ | ||
| 66 | dmacHw_SRC_MASTER_INTERFACE_2 = dmacHw_REG_CTL_SMS_2, /* Source DMA master interface 2 */ | ||
| 67 | dmacHw_DST_MASTER_INTERFACE_1 = dmacHw_REG_CTL_DMS_1, /* Destination DMA master interface 1 */ | ||
| 68 | dmacHw_DST_MASTER_INTERFACE_2 = dmacHw_REG_CTL_DMS_2 /* Destination DMA master interface 2 */ | ||
| 69 | } dmacHw_MASTER_INTERFACE_e; | ||
| 70 | |||
| 71 | typedef enum { | ||
| 72 | dmacHw_SRC_TRANSACTION_WIDTH_8 = dmacHw_REG_CTL_SRC_TR_WIDTH_8, /* Source 8 bit (1 byte) per transaction */ | ||
| 73 | dmacHw_SRC_TRANSACTION_WIDTH_16 = dmacHw_REG_CTL_SRC_TR_WIDTH_16, /* Source 16 bit (2 byte) per transaction */ | ||
| 74 | dmacHw_SRC_TRANSACTION_WIDTH_32 = dmacHw_REG_CTL_SRC_TR_WIDTH_32, /* Source 32 bit (4 byte) per transaction */ | ||
| 75 | dmacHw_SRC_TRANSACTION_WIDTH_64 = dmacHw_REG_CTL_SRC_TR_WIDTH_64, /* Source 64 bit (8 byte) per transaction */ | ||
| 76 | dmacHw_DST_TRANSACTION_WIDTH_8 = dmacHw_REG_CTL_DST_TR_WIDTH_8, /* Destination 8 bit (1 byte) per transaction */ | ||
| 77 | dmacHw_DST_TRANSACTION_WIDTH_16 = dmacHw_REG_CTL_DST_TR_WIDTH_16, /* Destination 16 bit (2 byte) per transaction */ | ||
| 78 | dmacHw_DST_TRANSACTION_WIDTH_32 = dmacHw_REG_CTL_DST_TR_WIDTH_32, /* Destination 32 bit (4 byte) per transaction */ | ||
| 79 | dmacHw_DST_TRANSACTION_WIDTH_64 = dmacHw_REG_CTL_DST_TR_WIDTH_64 /* Destination 64 bit (8 byte) per transaction */ | ||
| 80 | } dmacHw_TRANSACTION_WIDTH_e; | ||
| 81 | |||
| 82 | typedef enum { | ||
| 83 | dmacHw_SRC_BURST_WIDTH_0 = dmacHw_REG_CTL_SRC_MSIZE_0, /* Source No burst */ | ||
| 84 | dmacHw_SRC_BURST_WIDTH_4 = dmacHw_REG_CTL_SRC_MSIZE_4, /* Source 4 X dmacHw_TRANSACTION_WIDTH_xxx bytes per burst */ | ||
| 85 | dmacHw_SRC_BURST_WIDTH_8 = dmacHw_REG_CTL_SRC_MSIZE_8, /* Source 8 X dmacHw_TRANSACTION_WIDTH_xxx bytes per burst */ | ||
| 86 | dmacHw_SRC_BURST_WIDTH_16 = dmacHw_REG_CTL_SRC_MSIZE_16, /* Source 16 X dmacHw_TRANSACTION_WIDTH_xxx bytes per burst */ | ||
| 87 | dmacHw_DST_BURST_WIDTH_0 = dmacHw_REG_CTL_DST_MSIZE_0, /* Destination No burst */ | ||
| 88 | dmacHw_DST_BURST_WIDTH_4 = dmacHw_REG_CTL_DST_MSIZE_4, /* Destination 4 X dmacHw_TRANSACTION_WIDTH_xxx bytes per burst */ | ||
| 89 | dmacHw_DST_BURST_WIDTH_8 = dmacHw_REG_CTL_DST_MSIZE_8, /* Destination 8 X dmacHw_TRANSACTION_WIDTH_xxx bytes per burst */ | ||
| 90 | dmacHw_DST_BURST_WIDTH_16 = dmacHw_REG_CTL_DST_MSIZE_16 /* Destination 16 X dmacHw_TRANSACTION_WIDTH_xxx bytes per burst */ | ||
| 91 | } dmacHw_BURST_WIDTH_e; | ||
| 92 | |||
| 93 | typedef enum { | ||
| 94 | dmacHw_TRANSFER_TYPE_MEM_TO_MEM = dmacHw_REG_CTL_TTFC_MM_DMAC, /* Memory to memory transfer */ | ||
| 95 | dmacHw_TRANSFER_TYPE_PERIPHERAL_TO_MEM = dmacHw_REG_CTL_TTFC_PM_DMAC, /* Peripheral to memory transfer */ | ||
| 96 | dmacHw_TRANSFER_TYPE_MEM_TO_PERIPHERAL = dmacHw_REG_CTL_TTFC_MP_DMAC, /* Memory to peripheral transfer */ | ||
| 97 | dmacHw_TRANSFER_TYPE_PERIPHERAL_TO_PERIPHERAL = dmacHw_REG_CTL_TTFC_PP_DMAC /* Peripheral to peripheral transfer */ | ||
| 98 | } dmacHw_TRANSFER_TYPE_e; | ||
| 99 | |||
| 100 | typedef enum { | ||
| 101 | dmacHw_TRANSFER_MODE_PERREQUEST, /* Block transfer per DMA request */ | ||
| 102 | dmacHw_TRANSFER_MODE_CONTINUOUS, /* Continuous transfer of streaming data */ | ||
| 103 | dmacHw_TRANSFER_MODE_PERIODIC /* Periodic transfer of streaming data */ | ||
| 104 | } dmacHw_TRANSFER_MODE_e; | ||
| 105 | |||
| 106 | typedef enum { | ||
| 107 | dmacHw_SRC_ADDRESS_UPDATE_MODE_INC = dmacHw_REG_CTL_SINC_INC, /* Increment source address after every transaction */ | ||
| 108 | dmacHw_SRC_ADDRESS_UPDATE_MODE_DEC = dmacHw_REG_CTL_SINC_DEC, /* Decrement source address after every transaction */ | ||
| 109 | dmacHw_DST_ADDRESS_UPDATE_MODE_INC = dmacHw_REG_CTL_DINC_INC, /* Increment destination address after every transaction */ | ||
| 110 | dmacHw_DST_ADDRESS_UPDATE_MODE_DEC = dmacHw_REG_CTL_DINC_DEC, /* Decrement destination address after every transaction */ | ||
| 111 | dmacHw_SRC_ADDRESS_UPDATE_MODE_NC = dmacHw_REG_CTL_SINC_NC, /* No change in source address after every transaction */ | ||
| 112 | dmacHw_DST_ADDRESS_UPDATE_MODE_NC = dmacHw_REG_CTL_DINC_NC /* No change in destination address after every transaction */ | ||
| 113 | } dmacHw_ADDRESS_UPDATE_MODE_e; | ||
| 114 | |||
| 115 | typedef enum { | ||
| 116 | dmacHw_FLOW_CONTROL_DMA, /* DMA working as flow controller (default) */ | ||
| 117 | dmacHw_FLOW_CONTROL_PERIPHERAL /* Peripheral working as flow controller */ | ||
| 118 | } dmacHw_FLOW_CONTROL_e; | ||
| 119 | |||
| 120 | typedef enum { | ||
| 121 | dmacHw_TRANSFER_STATUS_BUSY, /* DMA Transfer ongoing */ | ||
| 122 | dmacHw_TRANSFER_STATUS_DONE, /* DMA Transfer completed */ | ||
| 123 | dmacHw_TRANSFER_STATUS_ERROR /* DMA Transfer error */ | ||
| 124 | } dmacHw_TRANSFER_STATUS_e; | ||
| 125 | |||
| 126 | typedef enum { | ||
| 127 | dmacHw_INTERRUPT_DISABLE, /* Interrupt disable */ | ||
| 128 | dmacHw_INTERRUPT_ENABLE /* Interrupt enable */ | ||
| 129 | } dmacHw_INTERRUPT_e; | ||
| 130 | |||
| 131 | typedef enum { | ||
| 132 | dmacHw_INTERRUPT_STATUS_NONE = 0x0, /* No DMA interrupt */ | ||
| 133 | dmacHw_INTERRUPT_STATUS_TRANS = 0x1, /* End of DMA transfer interrupt */ | ||
| 134 | dmacHw_INTERRUPT_STATUS_BLOCK = 0x2, /* End of block transfer interrupt */ | ||
| 135 | dmacHw_INTERRUPT_STATUS_ERROR = 0x4 /* Error interrupt */ | ||
| 136 | } dmacHw_INTERRUPT_STATUS_e; | ||
| 137 | |||
| 138 | typedef enum { | ||
| 139 | dmacHw_CONTROLLER_ATTRIB_CHANNEL_NUM, /* Number of DMA channel */ | ||
| 140 | dmacHw_CONTROLLER_ATTRIB_CHANNEL_MAX_BLOCK_SIZE, /* Maximum channel burst size */ | ||
| 141 | dmacHw_CONTROLLER_ATTRIB_MASTER_INTF_NUM, /* Number of DMA master interface */ | ||
| 142 | dmacHw_CONTROLLER_ATTRIB_CHANNEL_BUS_WIDTH, /* Channel Data bus width */ | ||
| 143 | dmacHw_CONTROLLER_ATTRIB_CHANNEL_FIFO_SIZE /* Channel FIFO size */ | ||
| 144 | } dmacHw_CONTROLLER_ATTRIB_e; | ||
| 145 | |||
| 146 | typedef unsigned long dmacHw_HANDLE_t; /* DMA channel handle */ | ||
| 147 | typedef uint32_t dmacHw_ID_t; /* DMA channel Id. Must be created using | ||
| 148 | "dmacHw_MAKE_CHANNEL_ID" macro | ||
| 149 | */ | ||
| 150 | /* DMA channel configuration parameters */ | ||
| 151 | typedef struct { | ||
| 152 | uint32_t srcPeripheralPort; /* Source peripheral port */ | ||
| 153 | uint32_t dstPeripheralPort; /* Destination peripheral port */ | ||
| 154 | uint32_t srcStatusRegisterAddress; /* Source status register address */ | ||
| 155 | uint32_t dstStatusRegisterAddress; /* Destination status register address of type */ | ||
| 156 | |||
| 157 | uint32_t srcGatherWidth; /* Number of bytes gathered before successive gather opearation */ | ||
| 158 | uint32_t srcGatherJump; /* Number of bytes jumpped before successive gather opearation */ | ||
| 159 | uint32_t dstScatterWidth; /* Number of bytes sacattered before successive scatter opearation */ | ||
| 160 | uint32_t dstScatterJump; /* Number of bytes jumpped before successive scatter opearation */ | ||
| 161 | uint32_t maxDataPerBlock; /* Maximum number of bytes to be transferred per block/descrptor. | ||
| 162 | 0 = Maximum possible. | ||
| 163 | */ | ||
| 164 | |||
| 165 | dmacHw_ADDRESS_UPDATE_MODE_e srcUpdate; /* Source address update mode */ | ||
| 166 | dmacHw_ADDRESS_UPDATE_MODE_e dstUpdate; /* Destination address update mode */ | ||
| 167 | dmacHw_TRANSFER_TYPE_e transferType; /* DMA transfer type */ | ||
| 168 | dmacHw_TRANSFER_MODE_e transferMode; /* DMA transfer mode */ | ||
| 169 | dmacHw_MASTER_INTERFACE_e srcMasterInterface; /* DMA source interface */ | ||
| 170 | dmacHw_MASTER_INTERFACE_e dstMasterInterface; /* DMA destination interface */ | ||
| 171 | dmacHw_TRANSACTION_WIDTH_e srcMaxTransactionWidth; /* Source transaction width */ | ||
| 172 | dmacHw_TRANSACTION_WIDTH_e dstMaxTransactionWidth; /* Destination transaction width */ | ||
| 173 | dmacHw_BURST_WIDTH_e srcMaxBurstWidth; /* Source burst width */ | ||
| 174 | dmacHw_BURST_WIDTH_e dstMaxBurstWidth; /* Destination burst width */ | ||
| 175 | dmacHw_INTERRUPT_e blockTransferInterrupt; /* Block trsnafer interrupt */ | ||
| 176 | dmacHw_INTERRUPT_e completeTransferInterrupt; /* Complete DMA trsnafer interrupt */ | ||
| 177 | dmacHw_INTERRUPT_e errorInterrupt; /* Error interrupt */ | ||
| 178 | dmacHw_CHANNEL_PRIORITY_e channelPriority; /* Channel priority */ | ||
| 179 | dmacHw_FLOW_CONTROL_e flowControler; /* Data flow controller */ | ||
| 180 | } dmacHw_CONFIG_t; | ||
| 181 | |||
| 182 | /****************************************************************************/ | ||
| 183 | /** | ||
| 184 | * @brief Initializes DMA | ||
| 185 | * | ||
| 186 | * This function initializes DMA CSP driver | ||
| 187 | * | ||
| 188 | * @note | ||
| 189 | * Must be called before using any DMA channel | ||
| 190 | */ | ||
| 191 | /****************************************************************************/ | ||
| 192 | void dmacHw_initDma(void); | ||
| 193 | |||
| 194 | /****************************************************************************/ | ||
| 195 | /** | ||
| 196 | * @brief Exit function for DMA | ||
| 197 | * | ||
| 198 | * This function isolates DMA from the system | ||
| 199 | * | ||
| 200 | */ | ||
| 201 | /****************************************************************************/ | ||
| 202 | void dmacHw_exitDma(void); | ||
| 203 | |||
| 204 | /****************************************************************************/ | ||
| 205 | /** | ||
| 206 | * @brief Gets a handle to a DMA channel | ||
| 207 | * | ||
| 208 | * This function returns a handle, representing a control block of a particular DMA channel | ||
| 209 | * | ||
| 210 | * @return -1 - On Failure | ||
| 211 | * handle - On Success, representing a channel control block | ||
| 212 | * | ||
| 213 | * @note | ||
| 214 | * None Channel ID must be created using "dmacHw_MAKE_CHANNEL_ID" macro | ||
| 215 | */ | ||
| 216 | /****************************************************************************/ | ||
| 217 | dmacHw_HANDLE_t dmacHw_getChannelHandle(dmacHw_ID_t channelId /* [ IN ] DMA Channel Id */ | ||
| 218 | ); | ||
| 219 | |||
| 220 | /****************************************************************************/ | ||
| 221 | /** | ||
| 222 | * @brief Initializes a DMA channel for use | ||
| 223 | * | ||
| 224 | * This function initializes and resets a DMA channel for use | ||
| 225 | * | ||
| 226 | * @return -1 - On Failure | ||
| 227 | * 0 - On Success | ||
| 228 | * | ||
| 229 | * @note | ||
| 230 | * None | ||
| 231 | */ | ||
| 232 | /****************************************************************************/ | ||
| 233 | int dmacHw_initChannel(dmacHw_HANDLE_t handle /* [ IN ] DMA Channel handle */ | ||
| 234 | ); | ||
| 235 | |||
| 236 | /****************************************************************************/ | ||
| 237 | /** | ||
| 238 | * @brief Estimates number of descriptor needed to perform certain DMA transfer | ||
| 239 | * | ||
| 240 | * | ||
| 241 | * @return On failure : -1 | ||
| 242 | * On success : Number of descriptor count | ||
| 243 | * | ||
| 244 | * | ||
| 245 | */ | ||
| 246 | /****************************************************************************/ | ||
| 247 | int dmacHw_calculateDescriptorCount(dmacHw_CONFIG_t *pConfig, /* [ IN ] Configuration settings */ | ||
| 248 | void *pSrcAddr, /* [ IN ] Source (Peripheral/Memory) address */ | ||
| 249 | void *pDstAddr, /* [ IN ] Destination (Peripheral/Memory) address */ | ||
| 250 | size_t dataLen /* [ IN ] Data length in bytes */ | ||
| 251 | ); | ||
| 252 | |||
| 253 | /****************************************************************************/ | ||
| 254 | /** | ||
| 255 | * @brief Initializes descriptor ring | ||
| 256 | * | ||
| 257 | * This function will initializes the descriptor ring of a DMA channel | ||
| 258 | * | ||
| 259 | * | ||
| 260 | * @return -1 - On failure | ||
| 261 | * 0 - On success | ||
| 262 | * @note | ||
| 263 | * - "len" parameter should be obtained from "dmacHw_descriptorLen" | ||
| 264 | * - Descriptor buffer MUST be 32 bit aligned and uncached as it | ||
| 265 | * is accessed by ARM and DMA | ||
| 266 | */ | ||
| 267 | /****************************************************************************/ | ||
| 268 | int dmacHw_initDescriptor(void *pDescriptorVirt, /* [ IN ] Virtual address of uncahced buffer allocated to form descriptor ring */ | ||
| 269 | uint32_t descriptorPhyAddr, /* [ IN ] Physical address of pDescriptorVirt (descriptor buffer) */ | ||
| 270 | uint32_t len, /* [ IN ] Size of the pBuf */ | ||
| 271 | uint32_t num /* [ IN ] Number of descriptor in the ring */ | ||
| 272 | ); | ||
| 273 | |||
| 274 | /****************************************************************************/ | ||
| 275 | /** | ||
| 276 | * @brief Finds amount of memory required to form a descriptor ring | ||
| 277 | * | ||
| 278 | * | ||
| 279 | * @return Number of bytes required to form a descriptor ring | ||
| 280 | * | ||
| 281 | * | ||
| 282 | * @note | ||
| 283 | * None | ||
| 284 | */ | ||
| 285 | /****************************************************************************/ | ||
| 286 | uint32_t dmacHw_descriptorLen(uint32_t descCnt /* [ IN ] Number of descriptor in the ring */ | ||
| 287 | ); | ||
| 288 | |||
| 289 | /****************************************************************************/ | ||
| 290 | /** | ||
| 291 | * @brief Configure DMA channel | ||
| 292 | * | ||
| 293 | * @return 0 : On success | ||
| 294 | * -1 : On failure | ||
| 295 | */ | ||
| 296 | /****************************************************************************/ | ||
| 297 | int dmacHw_configChannel(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 298 | dmacHw_CONFIG_t *pConfig /* [ IN ] Configuration settings */ | ||
| 299 | ); | ||
| 300 | |||
| 301 | /****************************************************************************/ | ||
| 302 | /** | ||
| 303 | * @brief Set descriptors for known data length | ||
| 304 | * | ||
| 305 | * When DMA has to work as a flow controller, this function prepares the | ||
| 306 | * descriptor chain to transfer data | ||
| 307 | * | ||
| 308 | * from: | ||
| 309 | * - Memory to memory | ||
| 310 | * - Peripheral to memory | ||
| 311 | * - Memory to Peripheral | ||
| 312 | * - Peripheral to Peripheral | ||
| 313 | * | ||
| 314 | * @return -1 - On failure | ||
| 315 | * 0 - On success | ||
| 316 | * | ||
| 317 | */ | ||
| 318 | /****************************************************************************/ | ||
| 319 | int dmacHw_setDataDescriptor(dmacHw_CONFIG_t *pConfig, /* [ IN ] Configuration settings */ | ||
| 320 | void *pDescriptor, /* [ IN ] Descriptor buffer */ | ||
| 321 | void *pSrcAddr, /* [ IN ] Source (Peripheral/Memory) address */ | ||
| 322 | void *pDstAddr, /* [ IN ] Destination (Peripheral/Memory) address */ | ||
| 323 | size_t dataLen /* [ IN ] Length in bytes */ | ||
| 324 | ); | ||
| 325 | |||
| 326 | /****************************************************************************/ | ||
| 327 | /** | ||
| 328 | * @brief Indicates whether DMA transfer is in progress or completed | ||
| 329 | * | ||
| 330 | * @return DMA transfer status | ||
| 331 | * dmacHw_TRANSFER_STATUS_BUSY: DMA Transfer ongoing | ||
| 332 | * dmacHw_TRANSFER_STATUS_DONE: DMA Transfer completed | ||
| 333 | * dmacHw_TRANSFER_STATUS_ERROR: DMA Transfer error | ||
| 334 | * | ||
| 335 | */ | ||
| 336 | /****************************************************************************/ | ||
| 337 | dmacHw_TRANSFER_STATUS_e dmacHw_transferCompleted(dmacHw_HANDLE_t handle /* [ IN ] DMA Channel handle */ | ||
| 338 | ); | ||
| 339 | |||
| 340 | /****************************************************************************/ | ||
| 341 | /** | ||
| 342 | * @brief Set descriptor carrying control information | ||
| 343 | * | ||
| 344 | * This function will be used to send specific control information to the device | ||
| 345 | * using the DMA channel | ||
| 346 | * | ||
| 347 | * | ||
| 348 | * @return -1 - On failure | ||
| 349 | * 0 - On success | ||
| 350 | * | ||
| 351 | * @note | ||
| 352 | * None | ||
| 353 | */ | ||
| 354 | /****************************************************************************/ | ||
| 355 | int dmacHw_setControlDescriptor(dmacHw_CONFIG_t *pConfig, /* [ IN ] Configuration settings */ | ||
| 356 | void *pDescriptor, /* [ IN ] Descriptor buffer */ | ||
| 357 | uint32_t ctlAddress, /* [ IN ] Address of the device control register */ | ||
| 358 | uint32_t control /* [ IN ] Device control information */ | ||
| 359 | ); | ||
| 360 | |||
| 361 | /****************************************************************************/ | ||
| 362 | /** | ||
| 363 | * @brief Read data DMA transferred to memory | ||
| 364 | * | ||
| 365 | * This function will read data that has been DMAed to memory while transferring from: | ||
| 366 | * - Memory to memory | ||
| 367 | * - Peripheral to memory | ||
| 368 | * | ||
| 369 | * @return 0 - No more data is available to read | ||
| 370 | * 1 - More data might be available to read | ||
| 371 | * | ||
| 372 | */ | ||
| 373 | /****************************************************************************/ | ||
| 374 | int dmacHw_readTransferredData(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 375 | dmacHw_CONFIG_t *pConfig, /* [ IN ] Configuration settings */ | ||
| 376 | void *pDescriptor, /* [ IN ] Descriptor buffer */ | ||
| 377 | void **ppBbuf, /* [ OUT ] Data received */ | ||
| 378 | size_t *pLlen /* [ OUT ] Length of the data received */ | ||
| 379 | ); | ||
| 380 | |||
| 381 | /****************************************************************************/ | ||
| 382 | /** | ||
| 383 | * @brief Prepares descriptor ring, when source peripheral working as a flow controller | ||
| 384 | * | ||
| 385 | * This function will form the descriptor ring by allocating buffers, when source peripheral | ||
| 386 | * has to work as a flow controller to transfer data from: | ||
| 387 | * - Peripheral to memory. | ||
| 388 | * | ||
| 389 | * @return -1 - On failure | ||
| 390 | * 0 - On success | ||
| 391 | * | ||
| 392 | * | ||
| 393 | * @note | ||
| 394 | * None | ||
| 395 | */ | ||
| 396 | /****************************************************************************/ | ||
| 397 | int dmacHw_setVariableDataDescriptor(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 398 | dmacHw_CONFIG_t *pConfig, /* [ IN ] Configuration settings */ | ||
| 399 | void *pDescriptor, /* [ IN ] Descriptor buffer */ | ||
| 400 | uint32_t srcAddr, /* [ IN ] Source peripheral address */ | ||
| 401 | void *(*fpAlloc) (int len), /* [ IN ] Function pointer that provides destination memory */ | ||
| 402 | int len, /* [ IN ] Number of bytes "fpAlloc" will allocate for destination */ | ||
| 403 | int num /* [ IN ] Number of descriptor to set */ | ||
| 404 | ); | ||
| 405 | |||
| 406 | /****************************************************************************/ | ||
| 407 | /** | ||
| 408 | * @brief Program channel register to initiate transfer | ||
| 409 | * | ||
| 410 | * @return void | ||
| 411 | * | ||
| 412 | * | ||
| 413 | * @note | ||
| 414 | * - Descriptor buffer MUST ALWAYS be flushed before calling this function | ||
| 415 | * - This function should also be called from ISR to program the channel with | ||
| 416 | * pending descriptors | ||
| 417 | */ | ||
| 418 | /****************************************************************************/ | ||
| 419 | void dmacHw_initiateTransfer(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 420 | dmacHw_CONFIG_t *pConfig, /* [ IN ] Configuration settings */ | ||
| 421 | void *pDescriptor /* [ IN ] Descriptor buffer */ | ||
| 422 | ); | ||
| 423 | |||
| 424 | /****************************************************************************/ | ||
| 425 | /** | ||
| 426 | * @brief Resets descriptor control information | ||
| 427 | * | ||
| 428 | * @return void | ||
| 429 | */ | ||
| 430 | /****************************************************************************/ | ||
| 431 | void dmacHw_resetDescriptorControl(void *pDescriptor /* [ IN ] Descriptor buffer */ | ||
| 432 | ); | ||
| 433 | |||
| 434 | /****************************************************************************/ | ||
| 435 | /** | ||
| 436 | * @brief Program channel register to stop transfer | ||
| 437 | * | ||
| 438 | * Ensures the channel is not doing any transfer after calling this function | ||
| 439 | * | ||
| 440 | * @return void | ||
| 441 | * | ||
| 442 | */ | ||
| 443 | /****************************************************************************/ | ||
| 444 | void dmacHw_stopTransfer(dmacHw_HANDLE_t handle /* [ IN ] DMA Channel handle */ | ||
| 445 | ); | ||
| 446 | |||
| 447 | /****************************************************************************/ | ||
| 448 | /** | ||
| 449 | * @brief Check the existence of pending descriptor | ||
| 450 | * | ||
| 451 | * This function confirmes if there is any pending descriptor in the chain | ||
| 452 | * to program the channel | ||
| 453 | * | ||
| 454 | * @return 1 : Channel need to be programmed with pending descriptor | ||
| 455 | * 0 : No more pending descriptor to programe the channel | ||
| 456 | * | ||
| 457 | * @note | ||
| 458 | * - This function should be called from ISR in case there are pending | ||
| 459 | * descriptor to program the channel. | ||
| 460 | * | ||
| 461 | * Example: | ||
| 462 | * | ||
| 463 | * dmac_isr () | ||
| 464 | * { | ||
| 465 | * ... | ||
| 466 | * if (dmacHw_descriptorPending (handle)) | ||
| 467 | * { | ||
| 468 | * dmacHw_initiateTransfer (handle); | ||
| 469 | * } | ||
| 470 | * } | ||
| 471 | * | ||
| 472 | */ | ||
| 473 | /****************************************************************************/ | ||
| 474 | uint32_t dmacHw_descriptorPending(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 475 | void *pDescriptor /* [ IN ] Descriptor buffer */ | ||
| 476 | ); | ||
| 477 | |||
| 478 | /****************************************************************************/ | ||
| 479 | /** | ||
| 480 | * @brief Deallocates source or destination memory, allocated | ||
| 481 | * | ||
| 482 | * This function can be called to deallocate data memory that was DMAed successfully | ||
| 483 | * | ||
| 484 | * @return -1 - On failure | ||
| 485 | * 0 - On success | ||
| 486 | * | ||
| 487 | * @note | ||
| 488 | * This function will be called ONLY, when source OR destination address is pointing | ||
| 489 | * to dynamic memory | ||
| 490 | */ | ||
| 491 | /****************************************************************************/ | ||
| 492 | int dmacHw_freeMem(dmacHw_CONFIG_t *pConfig, /* [ IN ] Configuration settings */ | ||
| 493 | void *pDescriptor, /* [ IN ] Descriptor buffer */ | ||
| 494 | void (*fpFree) (void *) /* [ IN ] Function pointer to free data memory */ | ||
| 495 | ); | ||
| 496 | |||
| 497 | /****************************************************************************/ | ||
| 498 | /** | ||
| 499 | * @brief Clears the interrupt | ||
| 500 | * | ||
| 501 | * This function clears the DMA channel specific interrupt | ||
| 502 | * | ||
| 503 | * @return N/A | ||
| 504 | * | ||
| 505 | * @note | ||
| 506 | * Must be called under the context of ISR | ||
| 507 | */ | ||
| 508 | /****************************************************************************/ | ||
| 509 | void dmacHw_clearInterrupt(dmacHw_HANDLE_t handle /* [ IN ] DMA Channel handle */ | ||
| 510 | ); | ||
| 511 | |||
| 512 | /****************************************************************************/ | ||
| 513 | /** | ||
| 514 | * @brief Returns the cause of channel specific DMA interrupt | ||
| 515 | * | ||
| 516 | * This function returns the cause of interrupt | ||
| 517 | * | ||
| 518 | * @return Interrupt status, each bit representing a specific type of interrupt | ||
| 519 | * of type dmacHw_INTERRUPT_STATUS_e | ||
| 520 | * @note | ||
| 521 | * This function should be called under the context of ISR | ||
| 522 | */ | ||
| 523 | /****************************************************************************/ | ||
| 524 | dmacHw_INTERRUPT_STATUS_e dmacHw_getInterruptStatus(dmacHw_HANDLE_t handle /* [ IN ] DMA Channel handle */ | ||
| 525 | ); | ||
| 526 | |||
| 527 | /****************************************************************************/ | ||
| 528 | /** | ||
| 529 | * @brief Indentifies a DMA channel causing interrupt | ||
| 530 | * | ||
| 531 | * This functions returns a channel causing interrupt of type dmacHw_INTERRUPT_STATUS_e | ||
| 532 | * | ||
| 533 | * @return NULL : No channel causing DMA interrupt | ||
| 534 | * ! NULL : Handle to a channel causing DMA interrupt | ||
| 535 | * @note | ||
| 536 | * dmacHw_clearInterrupt() must be called with a valid handle after calling this function | ||
| 537 | */ | ||
| 538 | /****************************************************************************/ | ||
| 539 | dmacHw_HANDLE_t dmacHw_getInterruptSource(void); | ||
| 540 | |||
| 541 | /****************************************************************************/ | ||
| 542 | /** | ||
| 543 | * @brief Sets channel specific user data | ||
| 544 | * | ||
| 545 | * This function associates user data to a specific DMA channel | ||
| 546 | * | ||
| 547 | */ | ||
| 548 | /****************************************************************************/ | ||
| 549 | void dmacHw_setChannelUserData(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 550 | void *userData /* [ IN ] User data */ | ||
| 551 | ); | ||
| 552 | |||
| 553 | /****************************************************************************/ | ||
| 554 | /** | ||
| 555 | * @brief Gets channel specific user data | ||
| 556 | * | ||
| 557 | * This function returns user data specific to a DMA channel | ||
| 558 | * | ||
| 559 | * @return user data | ||
| 560 | */ | ||
| 561 | /****************************************************************************/ | ||
| 562 | void *dmacHw_getChannelUserData(dmacHw_HANDLE_t handle /* [ IN ] DMA Channel handle */ | ||
| 563 | ); | ||
| 564 | |||
| 565 | /****************************************************************************/ | ||
| 566 | /** | ||
| 567 | * @brief Displays channel specific registers and other control parameters | ||
| 568 | * | ||
| 569 | * | ||
| 570 | * @return void | ||
| 571 | * | ||
| 572 | * @note | ||
| 573 | * None | ||
| 574 | */ | ||
| 575 | /****************************************************************************/ | ||
| 576 | void dmacHw_printDebugInfo(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 577 | void *pDescriptor, /* [ IN ] Descriptor buffer */ | ||
| 578 | int (*fpPrint) (const char *, ...) /* [ IN ] Print callback function */ | ||
| 579 | ); | ||
| 580 | |||
| 581 | /****************************************************************************/ | ||
| 582 | /** | ||
| 583 | * @brief Provides DMA controller attributes | ||
| 584 | * | ||
| 585 | * | ||
| 586 | * @return DMA controller attributes | ||
| 587 | * | ||
| 588 | * @note | ||
| 589 | * None | ||
| 590 | */ | ||
| 591 | /****************************************************************************/ | ||
| 592 | uint32_t dmacHw_getDmaControllerAttribute(dmacHw_HANDLE_t handle, /* [ IN ] DMA Channel handle */ | ||
| 593 | dmacHw_CONTROLLER_ATTRIB_e attr /* [ IN ] DMA Controller attribute of type dmacHw_CONTROLLER_ATTRIB_e */ | ||
| 594 | ); | ||
| 595 | |||
| 596 | #endif /* _DMACHW_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/errno.h b/arch/arm/mach-bcmring/include/csp/errno.h new file mode 100644 index 00000000000..51357dd5b66 --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/errno.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CSP_ERRNO_H | ||
| 16 | #define CSP_ERRNO_H | ||
| 17 | |||
| 18 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 19 | |||
| 20 | #if defined(__KERNEL__) | ||
| 21 | #include <linux/errno.h> | ||
| 22 | #elif defined(CSP_SIMULATION) | ||
| 23 | #include <asm-generic/errno.h> | ||
| 24 | #else | ||
| 25 | #include <errno.h> | ||
| 26 | #endif | ||
| 27 | |||
| 28 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 29 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 30 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 31 | |||
| 32 | #endif /* CSP_ERRNO_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/intcHw.h b/arch/arm/mach-bcmring/include/csp/intcHw.h new file mode 100644 index 00000000000..1c639c8ee08 --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/intcHw.h | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | |||
| 16 | /****************************************************************************/ | ||
| 17 | /** | ||
| 18 | * @file intcHw.h | ||
| 19 | * | ||
| 20 | * @brief generic interrupt controller API | ||
| 21 | * | ||
| 22 | * @note | ||
| 23 | * None | ||
| 24 | */ | ||
| 25 | /****************************************************************************/ | ||
| 26 | |||
| 27 | #ifndef _INTCHW_H | ||
| 28 | #define _INTCHW_H | ||
| 29 | |||
| 30 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 31 | #include <mach/csp/intcHw_reg.h> | ||
| 32 | |||
| 33 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 34 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 35 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 36 | static inline void intcHw_irq_disable(void *basep, uint32_t mask); | ||
| 37 | static inline void intcHw_irq_enable(void *basep, uint32_t mask); | ||
| 38 | |||
| 39 | #endif /* _INTCHW_H */ | ||
| 40 | |||
diff --git a/arch/arm/mach-bcmring/include/csp/module.h b/arch/arm/mach-bcmring/include/csp/module.h new file mode 100644 index 00000000000..c30d2a5975a --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/module.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | |||
| 16 | #ifndef CSP_MODULE_H | ||
| 17 | #define CSP_MODULE_H | ||
| 18 | |||
| 19 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 20 | |||
| 21 | #ifdef __KERNEL__ | ||
| 22 | #include <linux/module.h> | ||
| 23 | #else | ||
| 24 | #define EXPORT_SYMBOL(symbol) | ||
| 25 | #endif | ||
| 26 | |||
| 27 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 28 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 29 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 30 | |||
| 31 | |||
| 32 | #endif /* CSP_MODULE_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/reg.h b/arch/arm/mach-bcmring/include/csp/reg.h new file mode 100644 index 00000000000..56654d23c3d --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/reg.h | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file reg.h | ||
| 18 | * | ||
| 19 | * @brief Generic register definitions used in CSP | ||
| 20 | */ | ||
| 21 | /****************************************************************************/ | ||
| 22 | |||
| 23 | #ifndef CSP_REG_H | ||
| 24 | #define CSP_REG_H | ||
| 25 | |||
| 26 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 27 | |||
| 28 | #include <csp/stdint.h> | ||
| 29 | |||
| 30 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 31 | |||
| 32 | #define __REG32(x) (*((volatile uint32_t *)(x))) | ||
| 33 | #define __REG16(x) (*((volatile uint16_t *)(x))) | ||
| 34 | #define __REG8(x) (*((volatile uint8_t *) (x))) | ||
| 35 | |||
| 36 | /* Macros used to define a sequence of reserved registers. The start / end */ | ||
| 37 | /* are byte offsets in the particular register definition, with the "end" */ | ||
| 38 | /* being the offset of the next un-reserved register. E.g. if offsets */ | ||
| 39 | /* 0x10 through to 0x1f are reserved, then this reserved area could be */ | ||
| 40 | /* specified as follows. */ | ||
| 41 | /* typedef struct */ | ||
| 42 | /* { */ | ||
| 43 | /* uint32_t reg1; offset 0x00 */ | ||
| 44 | /* uint32_t reg2; offset 0x04 */ | ||
| 45 | /* uint32_t reg3; offset 0x08 */ | ||
| 46 | /* uint32_t reg4; offset 0x0c */ | ||
| 47 | /* REG32_RSVD(0x10, 0x20); */ | ||
| 48 | /* uint32_t reg5; offset 0x20 */ | ||
| 49 | /* ... */ | ||
| 50 | /* } EXAMPLE_REG_t; */ | ||
| 51 | #define REG8_RSVD(start, end) uint8_t rsvd_##start[(end - start) / sizeof(uint8_t)] | ||
| 52 | #define REG16_RSVD(start, end) uint16_t rsvd_##start[(end - start) / sizeof(uint16_t)] | ||
| 53 | #define REG32_RSVD(start, end) uint32_t rsvd_##start[(end - start) / sizeof(uint32_t)] | ||
| 54 | |||
| 55 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 56 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 57 | |||
| 58 | /* Note: When protecting multiple statements, the REG_LOCAL_IRQ_SAVE and */ | ||
| 59 | /* REG_LOCAL_IRQ_RESTORE must be enclosed in { } to allow the */ | ||
| 60 | /* flags variable to be declared locally. */ | ||
| 61 | /* e.g. */ | ||
| 62 | /* statement1; */ | ||
| 63 | /* { */ | ||
| 64 | /* REG_LOCAL_IRQ_SAVE; */ | ||
| 65 | /* <multiple statements here> */ | ||
| 66 | /* REG_LOCAL_IRQ_RESTORE; */ | ||
| 67 | /* } */ | ||
| 68 | /* statement2; */ | ||
| 69 | /* */ | ||
| 70 | |||
| 71 | #if defined(__KERNEL__) && !defined(STANDALONE) | ||
| 72 | #include <mach/hardware.h> | ||
| 73 | #include <linux/interrupt.h> | ||
| 74 | |||
| 75 | #define REG_LOCAL_IRQ_SAVE HW_DECLARE_SPINLOCK(reg32) \ | ||
| 76 | unsigned long flags; HW_IRQ_SAVE(reg32, flags) | ||
| 77 | |||
| 78 | #define REG_LOCAL_IRQ_RESTORE HW_IRQ_RESTORE(reg32, flags) | ||
| 79 | |||
| 80 | #else | ||
| 81 | |||
| 82 | #define REG_LOCAL_IRQ_SAVE | ||
| 83 | #define REG_LOCAL_IRQ_RESTORE | ||
| 84 | |||
| 85 | #endif | ||
| 86 | |||
| 87 | static inline void reg32_modify_and(volatile uint32_t *reg, uint32_t value) | ||
| 88 | { | ||
| 89 | REG_LOCAL_IRQ_SAVE; | ||
| 90 | *reg &= value; | ||
| 91 | REG_LOCAL_IRQ_RESTORE; | ||
| 92 | } | ||
| 93 | |||
| 94 | static inline void reg32_modify_or(volatile uint32_t *reg, uint32_t value) | ||
| 95 | { | ||
| 96 | REG_LOCAL_IRQ_SAVE; | ||
| 97 | *reg |= value; | ||
| 98 | REG_LOCAL_IRQ_RESTORE; | ||
| 99 | } | ||
| 100 | |||
| 101 | static inline void reg32_modify_mask(volatile uint32_t *reg, uint32_t mask, | ||
| 102 | uint32_t value) | ||
| 103 | { | ||
| 104 | REG_LOCAL_IRQ_SAVE; | ||
| 105 | *reg = (*reg & mask) | value; | ||
| 106 | REG_LOCAL_IRQ_RESTORE; | ||
| 107 | } | ||
| 108 | |||
| 109 | static inline void reg32_write(volatile uint32_t *reg, uint32_t value) | ||
| 110 | { | ||
| 111 | *reg = value; | ||
| 112 | } | ||
| 113 | |||
| 114 | #endif /* CSP_REG_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/secHw.h b/arch/arm/mach-bcmring/include/csp/secHw.h new file mode 100644 index 00000000000..b9d7e0732df --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/secHw.h | |||
| @@ -0,0 +1,65 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file secHw.h | ||
| 18 | * | ||
| 19 | * @brief Definitions for accessing low level security features | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | #ifndef SECHW_H | ||
| 24 | #define SECHW_H | ||
| 25 | |||
| 26 | typedef void (*secHw_FUNC_t) (void); | ||
| 27 | |||
| 28 | typedef enum { | ||
| 29 | secHw_MODE_SECURE = 0x0, /* Switches processor into secure mode */ | ||
| 30 | secHw_MODE_NONSECURE = 0x1 /* Switches processor into non-secure mode */ | ||
| 31 | } secHw_MODE; | ||
| 32 | |||
| 33 | /****************************************************************************/ | ||
| 34 | /** | ||
| 35 | * @brief Requesting to execute the function in secure mode | ||
| 36 | * | ||
| 37 | * This function requests the given function to run in secure mode | ||
| 38 | * | ||
| 39 | */ | ||
| 40 | /****************************************************************************/ | ||
| 41 | void secHw_RunSecure(secHw_FUNC_t /* Function to run in secure mode */ | ||
| 42 | ); | ||
| 43 | |||
| 44 | /****************************************************************************/ | ||
| 45 | /** | ||
| 46 | * @brief Sets the mode | ||
| 47 | * | ||
| 48 | * his function sets the processor mode (secure/non-secure) | ||
| 49 | * | ||
| 50 | */ | ||
| 51 | /****************************************************************************/ | ||
| 52 | void secHw_SetMode(secHw_MODE /* Processor mode */ | ||
| 53 | ); | ||
| 54 | |||
| 55 | /****************************************************************************/ | ||
| 56 | /** | ||
| 57 | * @brief Get the current mode | ||
| 58 | * | ||
| 59 | * This function retieves the processor mode (secure/non-secure) | ||
| 60 | * | ||
| 61 | */ | ||
| 62 | /****************************************************************************/ | ||
| 63 | void secHw_GetMode(secHw_MODE *); | ||
| 64 | |||
| 65 | #endif /* SECHW_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/stdint.h b/arch/arm/mach-bcmring/include/csp/stdint.h new file mode 100644 index 00000000000..3a8718bbf70 --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/stdint.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CSP_STDINT_H | ||
| 16 | #define CSP_STDINT_H | ||
| 17 | |||
| 18 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 19 | |||
| 20 | #ifdef __KERNEL__ | ||
| 21 | #include <linux/types.h> | ||
| 22 | #else | ||
| 23 | #include <stdint.h> | ||
| 24 | #endif | ||
| 25 | |||
| 26 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 27 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 28 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 29 | |||
| 30 | #endif /* CSP_STDINT_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/csp/string.h b/arch/arm/mach-bcmring/include/csp/string.h new file mode 100644 index 00000000000..ad9e4005f14 --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/string.h | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | |||
| 16 | |||
| 17 | #ifndef CSP_STRING_H | ||
| 18 | #define CSP_STRING_H | ||
| 19 | |||
| 20 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 21 | |||
| 22 | #ifdef __KERNEL__ | ||
| 23 | #include <linux/string.h> | ||
| 24 | #else | ||
| 25 | #include <string.h> | ||
| 26 | #endif | ||
| 27 | |||
| 28 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 29 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 30 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 31 | |||
| 32 | |||
| 33 | #endif /* CSP_STRING_H */ | ||
| 34 | |||
diff --git a/arch/arm/mach-bcmring/include/csp/tmrHw.h b/arch/arm/mach-bcmring/include/csp/tmrHw.h new file mode 100644 index 00000000000..2cbb530db8e --- /dev/null +++ b/arch/arm/mach-bcmring/include/csp/tmrHw.h | |||
| @@ -0,0 +1,263 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file tmrHw.h | ||
| 18 | * | ||
| 19 | * @brief API definitions for low level Timer driver | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | #ifndef _TMRHW_H | ||
| 24 | #define _TMRHW_H | ||
| 25 | |||
| 26 | #include <csp/stdint.h> | ||
| 27 | |||
| 28 | typedef uint32_t tmrHw_ID_t; /* Timer ID */ | ||
| 29 | typedef uint32_t tmrHw_COUNT_t; /* Timer count */ | ||
| 30 | typedef uint32_t tmrHw_INTERVAL_t; /* Timer interval */ | ||
| 31 | typedef uint32_t tmrHw_RATE_t; /* Timer event (count/interrupt) rate */ | ||
| 32 | |||
| 33 | typedef enum { | ||
| 34 | tmrHw_INTERRUPT_STATUS_SET, /* Interrupted */ | ||
| 35 | tmrHw_INTERRUPT_STATUS_UNSET /* No Interrupt */ | ||
| 36 | } tmrHw_INTERRUPT_STATUS_e; | ||
| 37 | |||
| 38 | typedef enum { | ||
| 39 | tmrHw_CAPABILITY_CLOCK, /* Clock speed in HHz */ | ||
| 40 | tmrHw_CAPABILITY_RESOLUTION /* Timer resolution in bits */ | ||
| 41 | } tmrHw_CAPABILITY_e; | ||
| 42 | |||
| 43 | /****************************************************************************/ | ||
| 44 | /** | ||
| 45 | * @brief Get timer capability | ||
| 46 | * | ||
| 47 | * This function returns various capabilities/attributes of a timer | ||
| 48 | * | ||
| 49 | * @return Numeric capability | ||
| 50 | * | ||
| 51 | */ | ||
| 52 | /****************************************************************************/ | ||
| 53 | uint32_t tmrHw_getTimerCapability(tmrHw_ID_t timerId, /* [ IN ] Timer Id */ | ||
| 54 | tmrHw_CAPABILITY_e capability /* [ IN ] Timer capability */ | ||
| 55 | ); | ||
| 56 | |||
| 57 | /****************************************************************************/ | ||
| 58 | /** | ||
| 59 | * @brief Configures a periodic timer in terms of timer interrupt rate | ||
| 60 | * | ||
| 61 | * This function initializes a periodic timer to generate specific number of | ||
| 62 | * timer interrupt per second | ||
| 63 | * | ||
| 64 | * @return On success: Effective timer frequency | ||
| 65 | * On failure: 0 | ||
| 66 | * | ||
| 67 | */ | ||
| 68 | /****************************************************************************/ | ||
| 69 | tmrHw_RATE_t tmrHw_setPeriodicTimerRate(tmrHw_ID_t timerId, /* [ IN ] Timer Id */ | ||
| 70 | tmrHw_RATE_t rate /* [ IN ] Number of timer interrupt per second */ | ||
| 71 | ); | ||
| 72 | |||
| 73 | /****************************************************************************/ | ||
| 74 | /** | ||
| 75 | * @brief Configures a periodic timer to generate timer interrupt after | ||
| 76 | * certain time interval | ||
| 77 | * | ||
| 78 | * This function initializes a periodic timer to generate timer interrupt | ||
| 79 | * after every time interval in millisecond | ||
| 80 | * | ||
| 81 | * @return On success: Effective interval set in mili-second | ||
| 82 | * On failure: 0 | ||
| 83 | * | ||
| 84 | */ | ||
| 85 | /****************************************************************************/ | ||
| 86 | tmrHw_INTERVAL_t tmrHw_setPeriodicTimerInterval(tmrHw_ID_t timerId, /* [ IN ] Timer Id */ | ||
| 87 | tmrHw_INTERVAL_t msec /* [ IN ] Interval in mili-second */ | ||
| 88 | ); | ||
| 89 | |||
| 90 | /****************************************************************************/ | ||
| 91 | /** | ||
| 92 | * @brief Configures a periodic timer to generate timer interrupt just once | ||
| 93 | * after certain time interval | ||
| 94 | * | ||
| 95 | * This function initializes a periodic timer to generate a single ticks after | ||
| 96 | * certain time interval in millisecond | ||
| 97 | * | ||
| 98 | * @return On success: Effective interval set in mili-second | ||
| 99 | * On failure: 0 | ||
| 100 | * | ||
| 101 | */ | ||
| 102 | /****************************************************************************/ | ||
| 103 | tmrHw_INTERVAL_t tmrHw_setOneshotTimerInterval(tmrHw_ID_t timerId, /* [ IN ] Timer Id */ | ||
| 104 | tmrHw_INTERVAL_t msec /* [ IN ] Interval in mili-second */ | ||
| 105 | ); | ||
| 106 | |||
| 107 | /****************************************************************************/ | ||
| 108 | /** | ||
| 109 | * @brief Configures a timer to run as a free running timer | ||
| 110 | * | ||
| 111 | * This function initializes a timer to run as a free running timer | ||
| 112 | * | ||
| 113 | * @return Timer resolution (count / sec) | ||
| 114 | * | ||
| 115 | */ | ||
| 116 | /****************************************************************************/ | ||
| 117 | tmrHw_RATE_t tmrHw_setFreeRunningTimer(tmrHw_ID_t timerId, /* [ IN ] Timer Id */ | ||
| 118 | uint32_t divider /* [ IN ] Dividing the clock frequency */ | ||
| 119 | ) __attribute__ ((section(".aramtext"))); | ||
| 120 | |||
| 121 | /****************************************************************************/ | ||
| 122 | /** | ||
| 123 | * @brief Starts a timer | ||
| 124 | * | ||
| 125 | * This function starts a preconfigured timer | ||
| 126 | * | ||
| 127 | * @return -1 - On Failure | ||
| 128 | * 0 - On Success | ||
| 129 | */ | ||
| 130 | /****************************************************************************/ | ||
| 131 | int tmrHw_startTimer(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 132 | ) __attribute__ ((section(".aramtext"))); | ||
| 133 | |||
| 134 | /****************************************************************************/ | ||
| 135 | /** | ||
| 136 | * @brief Stops a timer | ||
| 137 | * | ||
| 138 | * This function stops a running timer | ||
| 139 | * | ||
| 140 | * @return -1 - On Failure | ||
| 141 | * 0 - On Success | ||
| 142 | */ | ||
| 143 | /****************************************************************************/ | ||
| 144 | int tmrHw_stopTimer(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 145 | ); | ||
| 146 | |||
| 147 | /****************************************************************************/ | ||
| 148 | /** | ||
| 149 | * @brief Gets current timer count | ||
| 150 | * | ||
| 151 | * This function returns the current timer value | ||
| 152 | * | ||
| 153 | * @return Current downcounting timer value | ||
| 154 | * | ||
| 155 | */ | ||
| 156 | /****************************************************************************/ | ||
| 157 | tmrHw_COUNT_t tmrHw_GetCurrentCount(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 158 | ) __attribute__ ((section(".aramtext"))); | ||
| 159 | |||
| 160 | /****************************************************************************/ | ||
| 161 | /** | ||
| 162 | * @brief Gets timer count rate | ||
| 163 | * | ||
| 164 | * This function returns the number of counts per second | ||
| 165 | * | ||
| 166 | * @return Count rate | ||
| 167 | * | ||
| 168 | */ | ||
| 169 | /****************************************************************************/ | ||
| 170 | tmrHw_RATE_t tmrHw_getCountRate(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 171 | ) __attribute__ ((section(".aramtext"))); | ||
| 172 | |||
| 173 | /****************************************************************************/ | ||
| 174 | /** | ||
| 175 | * @brief Enables timer interrupt | ||
| 176 | * | ||
| 177 | * This function enables the timer interrupt | ||
| 178 | * | ||
| 179 | * @return N/A | ||
| 180 | * | ||
| 181 | */ | ||
| 182 | /****************************************************************************/ | ||
| 183 | void tmrHw_enableInterrupt(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 184 | ); | ||
| 185 | |||
| 186 | /****************************************************************************/ | ||
| 187 | /** | ||
| 188 | * @brief Disables timer interrupt | ||
| 189 | * | ||
| 190 | * This function disable the timer interrupt | ||
| 191 | * | ||
| 192 | * @return N/A | ||
| 193 | */ | ||
| 194 | /****************************************************************************/ | ||
| 195 | void tmrHw_disableInterrupt(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 196 | ); | ||
| 197 | |||
| 198 | /****************************************************************************/ | ||
| 199 | /** | ||
| 200 | * @brief Clears the interrupt | ||
| 201 | * | ||
| 202 | * This function clears the timer interrupt | ||
| 203 | * | ||
| 204 | * @return N/A | ||
| 205 | * | ||
| 206 | * @note | ||
| 207 | * Must be called under the context of ISR | ||
| 208 | */ | ||
| 209 | /****************************************************************************/ | ||
| 210 | void tmrHw_clearInterrupt(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 211 | ); | ||
| 212 | |||
| 213 | /****************************************************************************/ | ||
| 214 | /** | ||
| 215 | * @brief Gets the interrupt status | ||
| 216 | * | ||
| 217 | * This function returns timer interrupt status | ||
| 218 | * | ||
| 219 | * @return Interrupt status | ||
| 220 | */ | ||
| 221 | /****************************************************************************/ | ||
| 222 | tmrHw_INTERRUPT_STATUS_e tmrHw_getInterruptStatus(tmrHw_ID_t timerId /* [ IN ] Timer id */ | ||
| 223 | ); | ||
| 224 | |||
| 225 | /****************************************************************************/ | ||
| 226 | /** | ||
| 227 | * @brief Indentifies a timer causing interrupt | ||
| 228 | * | ||
| 229 | * This functions returns a timer causing interrupt | ||
| 230 | * | ||
| 231 | * @return 0xFFFFFFFF : No timer causing an interrupt | ||
| 232 | * ! 0xFFFFFFFF : timer causing an interrupt | ||
| 233 | * @note | ||
| 234 | * tmrHw_clearIntrrupt() must be called with a valid timer id after calling this function | ||
| 235 | */ | ||
| 236 | /****************************************************************************/ | ||
| 237 | tmrHw_ID_t tmrHw_getInterruptSource(void); | ||
| 238 | |||
| 239 | /****************************************************************************/ | ||
| 240 | /** | ||
| 241 | * @brief Displays specific timer registers | ||
| 242 | * | ||
| 243 | * | ||
| 244 | * @return void | ||
| 245 | * | ||
| 246 | */ | ||
| 247 | /****************************************************************************/ | ||
| 248 | void tmrHw_printDebugInfo(tmrHw_ID_t timerId, /* [ IN ] Timer id */ | ||
| 249 | int (*fpPrint) (const char *, ...) /* [ IN ] Print callback function */ | ||
| 250 | ); | ||
| 251 | |||
| 252 | /****************************************************************************/ | ||
| 253 | /** | ||
| 254 | * @brief Use a timer to perform a busy wait delay for a number of usecs. | ||
| 255 | * | ||
| 256 | * @return N/A | ||
| 257 | */ | ||
| 258 | /****************************************************************************/ | ||
| 259 | void tmrHw_udelay(tmrHw_ID_t timerId, /* [ IN ] Timer id */ | ||
| 260 | unsigned long usecs /* [ IN ] usec to delay */ | ||
| 261 | ) __attribute__ ((section(".aramtext"))); | ||
| 262 | |||
| 263 | #endif /* _TMRHW_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/cap.h b/arch/arm/mach-bcmring/include/mach/csp/cap.h new file mode 100644 index 00000000000..30fa2d54063 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/cap.h | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2009 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CAP_H | ||
| 16 | #define CAP_H | ||
| 17 | |||
| 18 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 19 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 20 | typedef enum { | ||
| 21 | CAP_NOT_PRESENT = 0, | ||
| 22 | CAP_PRESENT | ||
| 23 | } CAP_RC_T; | ||
| 24 | |||
| 25 | typedef enum { | ||
| 26 | CAP_VPM, | ||
| 27 | CAP_ETH_PHY, | ||
| 28 | CAP_ETH_GMII, | ||
| 29 | CAP_ETH_SGMII, | ||
| 30 | CAP_USB, | ||
| 31 | CAP_TSC, | ||
| 32 | CAP_EHSS, | ||
| 33 | CAP_SDIO, | ||
| 34 | CAP_UARTB, | ||
| 35 | CAP_KEYPAD, | ||
| 36 | CAP_CLCD, | ||
| 37 | CAP_GE, | ||
| 38 | CAP_LEDM, | ||
| 39 | CAP_BBL, | ||
| 40 | CAP_VDEC, | ||
| 41 | CAP_PIF, | ||
| 42 | CAP_APM, | ||
| 43 | CAP_SPU, | ||
| 44 | CAP_PKA, | ||
| 45 | CAP_RNG, | ||
| 46 | } CAP_CAPABILITY_T; | ||
| 47 | |||
| 48 | typedef enum { | ||
| 49 | CAP_LCD_WVGA = 0, | ||
| 50 | CAP_LCD_VGA = 0x1, | ||
| 51 | CAP_LCD_WQVGA = 0x2, | ||
| 52 | CAP_LCD_QVGA = 0x3 | ||
| 53 | } CAP_LCD_RES_T; | ||
| 54 | |||
| 55 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 56 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 57 | |||
| 58 | static inline CAP_RC_T cap_isPresent(CAP_CAPABILITY_T capability, int index); | ||
| 59 | static inline uint32_t cap_getMaxArmSpeedHz(void); | ||
| 60 | static inline uint32_t cap_getMaxVpmSpeedHz(void); | ||
| 61 | static inline CAP_LCD_RES_T cap_getMaxLcdRes(void); | ||
| 62 | |||
| 63 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/cap_inline.h b/arch/arm/mach-bcmring/include/mach/csp/cap_inline.h new file mode 100644 index 00000000000..933ce68ed90 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/cap_inline.h | |||
| @@ -0,0 +1,409 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2009 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CAP_INLINE_H | ||
| 16 | #define CAP_INLINE_H | ||
| 17 | |||
| 18 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 19 | #include <mach/csp/cap.h> | ||
| 20 | #include <cfg_global.h> | ||
| 21 | |||
| 22 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 23 | #define CAP_CONFIG0_VPM_DIS 0x00000001 | ||
| 24 | #define CAP_CONFIG0_ETH_PHY0_DIS 0x00000002 | ||
| 25 | #define CAP_CONFIG0_ETH_PHY1_DIS 0x00000004 | ||
| 26 | #define CAP_CONFIG0_ETH_GMII0_DIS 0x00000008 | ||
| 27 | #define CAP_CONFIG0_ETH_GMII1_DIS 0x00000010 | ||
| 28 | #define CAP_CONFIG0_ETH_SGMII0_DIS 0x00000020 | ||
| 29 | #define CAP_CONFIG0_ETH_SGMII1_DIS 0x00000040 | ||
| 30 | #define CAP_CONFIG0_USB0_DIS 0x00000080 | ||
| 31 | #define CAP_CONFIG0_USB1_DIS 0x00000100 | ||
| 32 | #define CAP_CONFIG0_TSC_DIS 0x00000200 | ||
| 33 | #define CAP_CONFIG0_EHSS0_DIS 0x00000400 | ||
| 34 | #define CAP_CONFIG0_EHSS1_DIS 0x00000800 | ||
| 35 | #define CAP_CONFIG0_SDIO0_DIS 0x00001000 | ||
| 36 | #define CAP_CONFIG0_SDIO1_DIS 0x00002000 | ||
| 37 | #define CAP_CONFIG0_UARTB_DIS 0x00004000 | ||
| 38 | #define CAP_CONFIG0_KEYPAD_DIS 0x00008000 | ||
| 39 | #define CAP_CONFIG0_CLCD_DIS 0x00010000 | ||
| 40 | #define CAP_CONFIG0_GE_DIS 0x00020000 | ||
| 41 | #define CAP_CONFIG0_LEDM_DIS 0x00040000 | ||
| 42 | #define CAP_CONFIG0_BBL_DIS 0x00080000 | ||
| 43 | #define CAP_CONFIG0_VDEC_DIS 0x00100000 | ||
| 44 | #define CAP_CONFIG0_PIF_DIS 0x00200000 | ||
| 45 | #define CAP_CONFIG0_RESERVED1_DIS 0x00400000 | ||
| 46 | #define CAP_CONFIG0_RESERVED2_DIS 0x00800000 | ||
| 47 | |||
| 48 | #define CAP_CONFIG1_APMA_DIS 0x00000001 | ||
| 49 | #define CAP_CONFIG1_APMB_DIS 0x00000002 | ||
| 50 | #define CAP_CONFIG1_APMC_DIS 0x00000004 | ||
| 51 | #define CAP_CONFIG1_CLCD_RES_MASK 0x00000600 | ||
| 52 | #define CAP_CONFIG1_CLCD_RES_SHIFT 9 | ||
| 53 | #define CAP_CONFIG1_CLCD_RES_WVGA (CAP_LCD_WVGA << CAP_CONFIG1_CLCD_RES_SHIFT) | ||
| 54 | #define CAP_CONFIG1_CLCD_RES_VGA (CAP_LCD_VGA << CAP_CONFIG1_CLCD_RES_SHIFT) | ||
| 55 | #define CAP_CONFIG1_CLCD_RES_WQVGA (CAP_LCD_WQVGA << CAP_CONFIG1_CLCD_RES_SHIFT) | ||
| 56 | #define CAP_CONFIG1_CLCD_RES_QVGA (CAP_LCD_QVGA << CAP_CONFIG1_CLCD_RES_SHIFT) | ||
| 57 | |||
| 58 | #define CAP_CONFIG2_SPU_DIS 0x00000010 | ||
| 59 | #define CAP_CONFIG2_PKA_DIS 0x00000020 | ||
| 60 | #define CAP_CONFIG2_RNG_DIS 0x00000080 | ||
| 61 | |||
| 62 | #if (CFG_GLOBAL_CHIP == BCM11107) | ||
| 63 | #define capConfig0 0 | ||
| 64 | #define capConfig1 CAP_CONFIG1_CLCD_RES_WVGA | ||
| 65 | #define capConfig2 0 | ||
| 66 | #define CAP_APM_MAX_NUM_CHANS 3 | ||
| 67 | #elif (CFG_GLOBAL_CHIP == FPGA11107) | ||
| 68 | #define capConfig0 0 | ||
| 69 | #define capConfig1 CAP_CONFIG1_CLCD_RES_WVGA | ||
| 70 | #define capConfig2 0 | ||
| 71 | #define CAP_APM_MAX_NUM_CHANS 3 | ||
| 72 | #elif (CFG_GLOBAL_CHIP == BCM11109) | ||
| 73 | #define capConfig0 (CAP_CONFIG0_USB1_DIS | CAP_CONFIG0_EHSS1_DIS | CAP_CONFIG0_SDIO1_DIS | CAP_CONFIG0_GE_DIS | CAP_CONFIG0_BBL_DIS | CAP_CONFIG0_VDEC_DIS) | ||
| 74 | #define capConfig1 (CAP_CONFIG1_APMC_DIS | CAP_CONFIG1_CLCD_RES_WQVGA) | ||
| 75 | #define capConfig2 (CAP_CONFIG2_SPU_DIS | CAP_CONFIG2_PKA_DIS) | ||
| 76 | #define CAP_APM_MAX_NUM_CHANS 2 | ||
| 77 | #elif (CFG_GLOBAL_CHIP == BCM11170) | ||
| 78 | #define capConfig0 (CAP_CONFIG0_ETH_GMII0_DIS | CAP_CONFIG0_ETH_GMII1_DIS | CAP_CONFIG0_USB0_DIS | CAP_CONFIG0_USB1_DIS | CAP_CONFIG0_TSC_DIS | CAP_CONFIG0_EHSS1_DIS | CAP_CONFIG0_SDIO0_DIS | CAP_CONFIG0_SDIO1_DIS | CAP_CONFIG0_UARTB_DIS | CAP_CONFIG0_CLCD_DIS | CAP_CONFIG0_GE_DIS | CAP_CONFIG0_BBL_DIS | CAP_CONFIG0_VDEC_DIS) | ||
| 79 | #define capConfig1 (CAP_CONFIG1_APMC_DIS | CAP_CONFIG1_CLCD_RES_WQVGA) | ||
| 80 | #define capConfig2 (CAP_CONFIG2_SPU_DIS | CAP_CONFIG2_PKA_DIS) | ||
| 81 | #define CAP_APM_MAX_NUM_CHANS 2 | ||
| 82 | #elif (CFG_GLOBAL_CHIP == BCM11110) | ||
| 83 | #define capConfig0 (CAP_CONFIG0_USB1_DIS | CAP_CONFIG0_TSC_DIS | CAP_CONFIG0_EHSS1_DIS | CAP_CONFIG0_SDIO0_DIS | CAP_CONFIG0_SDIO1_DIS | CAP_CONFIG0_UARTB_DIS | CAP_CONFIG0_GE_DIS | CAP_CONFIG0_BBL_DIS | CAP_CONFIG0_VDEC_DIS) | ||
| 84 | #define capConfig1 CAP_CONFIG1_APMC_DIS | ||
| 85 | #define capConfig2 (CAP_CONFIG2_SPU_DIS | CAP_CONFIG2_PKA_DIS) | ||
| 86 | #define CAP_APM_MAX_NUM_CHANS 2 | ||
| 87 | #elif (CFG_GLOBAL_CHIP == BCM11211) | ||
| 88 | #define capConfig0 (CAP_CONFIG0_ETH_PHY0_DIS | CAP_CONFIG0_ETH_GMII0_DIS | CAP_CONFIG0_ETH_GMII1_DIS | CAP_CONFIG0_ETH_SGMII0_DIS | CAP_CONFIG0_ETH_SGMII1_DIS | CAP_CONFIG0_CLCD_DIS) | ||
| 89 | #define capConfig1 CAP_CONFIG1_APMC_DIS | ||
| 90 | #define capConfig2 0 | ||
| 91 | #define CAP_APM_MAX_NUM_CHANS 2 | ||
| 92 | #else | ||
| 93 | #error CFG_GLOBAL_CHIP type capabilities not defined | ||
| 94 | #endif | ||
| 95 | |||
| 96 | #if ((CFG_GLOBAL_CHIP == BCM11107) || (CFG_GLOBAL_CHIP == FPGA11107)) | ||
| 97 | #define CAP_HW_CFG_ARM_CLK_HZ 500000000 | ||
| 98 | #elif ((CFG_GLOBAL_CHIP == BCM11109) || (CFG_GLOBAL_CHIP == BCM11170) || (CFG_GLOBAL_CHIP == BCM11110)) | ||
| 99 | #define CAP_HW_CFG_ARM_CLK_HZ 300000000 | ||
| 100 | #elif (CFG_GLOBAL_CHIP == BCM11211) | ||
| 101 | #define CAP_HW_CFG_ARM_CLK_HZ 666666666 | ||
| 102 | #else | ||
| 103 | #error CFG_GLOBAL_CHIP type capabilities not defined | ||
| 104 | #endif | ||
| 105 | |||
| 106 | #if ((CFG_GLOBAL_CHIP == BCM11107) || (CFG_GLOBAL_CHIP == BCM11211) || (CFG_GLOBAL_CHIP == FPGA11107)) | ||
| 107 | #define CAP_HW_CFG_VPM_CLK_HZ 333333333 | ||
| 108 | #elif ((CFG_GLOBAL_CHIP == BCM11109) || (CFG_GLOBAL_CHIP == BCM11170) || (CFG_GLOBAL_CHIP == BCM11110)) | ||
| 109 | #define CAP_HW_CFG_VPM_CLK_HZ 200000000 | ||
| 110 | #else | ||
| 111 | #error CFG_GLOBAL_CHIP type capabilities not defined | ||
| 112 | #endif | ||
| 113 | |||
| 114 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 115 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 116 | |||
| 117 | /**************************************************************************** | ||
| 118 | * cap_isPresent - | ||
| 119 | * | ||
| 120 | * PURPOSE: | ||
| 121 | * Determines if the chip has a certain capability present | ||
| 122 | * | ||
| 123 | * PARAMETERS: | ||
| 124 | * capability - type of capability to determine if present | ||
| 125 | * | ||
| 126 | * RETURNS: | ||
| 127 | * CAP_PRESENT or CAP_NOT_PRESENT | ||
| 128 | ****************************************************************************/ | ||
| 129 | static inline CAP_RC_T cap_isPresent(CAP_CAPABILITY_T capability, int index) | ||
| 130 | { | ||
| 131 | CAP_RC_T returnVal = CAP_NOT_PRESENT; | ||
| 132 | |||
| 133 | switch (capability) { | ||
| 134 | case CAP_VPM: | ||
| 135 | { | ||
| 136 | if (!(capConfig0 & CAP_CONFIG0_VPM_DIS)) { | ||
| 137 | returnVal = CAP_PRESENT; | ||
| 138 | } | ||
| 139 | } | ||
| 140 | break; | ||
| 141 | |||
| 142 | case CAP_ETH_PHY: | ||
| 143 | { | ||
| 144 | if ((index == 0) | ||
| 145 | && (!(capConfig0 & CAP_CONFIG0_ETH_PHY0_DIS))) { | ||
| 146 | returnVal = CAP_PRESENT; | ||
| 147 | } | ||
| 148 | if ((index == 1) | ||
| 149 | && (!(capConfig0 & CAP_CONFIG0_ETH_PHY1_DIS))) { | ||
| 150 | returnVal = CAP_PRESENT; | ||
| 151 | } | ||
| 152 | } | ||
| 153 | break; | ||
| 154 | |||
| 155 | case CAP_ETH_GMII: | ||
| 156 | { | ||
| 157 | if ((index == 0) | ||
| 158 | && (!(capConfig0 & CAP_CONFIG0_ETH_GMII0_DIS))) { | ||
| 159 | returnVal = CAP_PRESENT; | ||
| 160 | } | ||
| 161 | if ((index == 1) | ||
| 162 | && (!(capConfig0 & CAP_CONFIG0_ETH_GMII1_DIS))) { | ||
| 163 | returnVal = CAP_PRESENT; | ||
| 164 | } | ||
| 165 | } | ||
| 166 | break; | ||
| 167 | |||
| 168 | case CAP_ETH_SGMII: | ||
| 169 | { | ||
| 170 | if ((index == 0) | ||
| 171 | && (!(capConfig0 & CAP_CONFIG0_ETH_SGMII0_DIS))) { | ||
| 172 | returnVal = CAP_PRESENT; | ||
| 173 | } | ||
| 174 | if ((index == 1) | ||
| 175 | && (!(capConfig0 & CAP_CONFIG0_ETH_SGMII1_DIS))) { | ||
| 176 | returnVal = CAP_PRESENT; | ||
| 177 | } | ||
| 178 | } | ||
| 179 | break; | ||
| 180 | |||
| 181 | case CAP_USB: | ||
| 182 | { | ||
| 183 | if ((index == 0) | ||
| 184 | && (!(capConfig0 & CAP_CONFIG0_USB0_DIS))) { | ||
| 185 | returnVal = CAP_PRESENT; | ||
| 186 | } | ||
| 187 | if ((index == 1) | ||
| 188 | && (!(capConfig0 & CAP_CONFIG0_USB1_DIS))) { | ||
| 189 | returnVal = CAP_PRESENT; | ||
| 190 | } | ||
| 191 | } | ||
| 192 | break; | ||
| 193 | |||
| 194 | case CAP_TSC: | ||
| 195 | { | ||
| 196 | if (!(capConfig0 & CAP_CONFIG0_TSC_DIS)) { | ||
| 197 | returnVal = CAP_PRESENT; | ||
| 198 | } | ||
| 199 | } | ||
| 200 | break; | ||
| 201 | |||
| 202 | case CAP_EHSS: | ||
| 203 | { | ||
| 204 | if ((index == 0) | ||
| 205 | && (!(capConfig0 & CAP_CONFIG0_EHSS0_DIS))) { | ||
| 206 | returnVal = CAP_PRESENT; | ||
| 207 | } | ||
| 208 | if ((index == 1) | ||
| 209 | && (!(capConfig0 & CAP_CONFIG0_EHSS1_DIS))) { | ||
| 210 | returnVal = CAP_PRESENT; | ||
| 211 | } | ||
| 212 | } | ||
| 213 | break; | ||
| 214 | |||
| 215 | case CAP_SDIO: | ||
| 216 | { | ||
| 217 | if ((index == 0) | ||
| 218 | && (!(capConfig0 & CAP_CONFIG0_SDIO0_DIS))) { | ||
| 219 | returnVal = CAP_PRESENT; | ||
| 220 | } | ||
| 221 | if ((index == 1) | ||
| 222 | && (!(capConfig0 & CAP_CONFIG0_SDIO1_DIS))) { | ||
| 223 | returnVal = CAP_PRESENT; | ||
| 224 | } | ||
| 225 | } | ||
| 226 | break; | ||
| 227 | |||
| 228 | case CAP_UARTB: | ||
| 229 | { | ||
| 230 | if (!(capConfig0 & CAP_CONFIG0_UARTB_DIS)) { | ||
| 231 | returnVal = CAP_PRESENT; | ||
| 232 | } | ||
| 233 | } | ||
| 234 | break; | ||
| 235 | |||
| 236 | case CAP_KEYPAD: | ||
| 237 | { | ||
| 238 | if (!(capConfig0 & CAP_CONFIG0_KEYPAD_DIS)) { | ||
| 239 | returnVal = CAP_PRESENT; | ||
| 240 | } | ||
| 241 | } | ||
| 242 | break; | ||
| 243 | |||
| 244 | case CAP_CLCD: | ||
| 245 | { | ||
| 246 | if (!(capConfig0 & CAP_CONFIG0_CLCD_DIS)) { | ||
| 247 | returnVal = CAP_PRESENT; | ||
| 248 | } | ||
| 249 | } | ||
| 250 | break; | ||
| 251 | |||
| 252 | case CAP_GE: | ||
| 253 | { | ||
| 254 | if (!(capConfig0 & CAP_CONFIG0_GE_DIS)) { | ||
| 255 | returnVal = CAP_PRESENT; | ||
| 256 | } | ||
| 257 | } | ||
| 258 | break; | ||
| 259 | |||
| 260 | case CAP_LEDM: | ||
| 261 | { | ||
| 262 | if (!(capConfig0 & CAP_CONFIG0_LEDM_DIS)) { | ||
| 263 | returnVal = CAP_PRESENT; | ||
| 264 | } | ||
| 265 | } | ||
| 266 | break; | ||
| 267 | |||
| 268 | case CAP_BBL: | ||
| 269 | { | ||
| 270 | if (!(capConfig0 & CAP_CONFIG0_BBL_DIS)) { | ||
| 271 | returnVal = CAP_PRESENT; | ||
| 272 | } | ||
| 273 | } | ||
| 274 | break; | ||
| 275 | |||
| 276 | case CAP_VDEC: | ||
| 277 | { | ||
| 278 | if (!(capConfig0 & CAP_CONFIG0_VDEC_DIS)) { | ||
| 279 | returnVal = CAP_PRESENT; | ||
| 280 | } | ||
| 281 | } | ||
| 282 | break; | ||
| 283 | |||
| 284 | case CAP_PIF: | ||
| 285 | { | ||
| 286 | if (!(capConfig0 & CAP_CONFIG0_PIF_DIS)) { | ||
| 287 | returnVal = CAP_PRESENT; | ||
| 288 | } | ||
| 289 | } | ||
| 290 | break; | ||
| 291 | |||
| 292 | case CAP_APM: | ||
| 293 | { | ||
| 294 | if ((index == 0) | ||
| 295 | && (!(capConfig1 & CAP_CONFIG1_APMA_DIS))) { | ||
| 296 | returnVal = CAP_PRESENT; | ||
| 297 | } | ||
| 298 | if ((index == 1) | ||
| 299 | && (!(capConfig1 & CAP_CONFIG1_APMB_DIS))) { | ||
| 300 | returnVal = CAP_PRESENT; | ||
| 301 | } | ||
| 302 | if ((index == 2) | ||
| 303 | && (!(capConfig1 & CAP_CONFIG1_APMC_DIS))) { | ||
| 304 | returnVal = CAP_PRESENT; | ||
| 305 | } | ||
| 306 | } | ||
| 307 | break; | ||
| 308 | |||
| 309 | case CAP_SPU: | ||
| 310 | { | ||
| 311 | if (!(capConfig2 & CAP_CONFIG2_SPU_DIS)) { | ||
| 312 | returnVal = CAP_PRESENT; | ||
| 313 | } | ||
| 314 | } | ||
| 315 | break; | ||
| 316 | |||
| 317 | case CAP_PKA: | ||
| 318 | { | ||
| 319 | if (!(capConfig2 & CAP_CONFIG2_PKA_DIS)) { | ||
| 320 | returnVal = CAP_PRESENT; | ||
| 321 | } | ||
| 322 | } | ||
| 323 | break; | ||
| 324 | |||
| 325 | case CAP_RNG: | ||
| 326 | { | ||
| 327 | if (!(capConfig2 & CAP_CONFIG2_RNG_DIS)) { | ||
| 328 | returnVal = CAP_PRESENT; | ||
| 329 | } | ||
| 330 | } | ||
| 331 | break; | ||
| 332 | |||
| 333 | default: | ||
| 334 | { | ||
| 335 | } | ||
| 336 | break; | ||
| 337 | } | ||
| 338 | return returnVal; | ||
| 339 | } | ||
| 340 | |||
| 341 | /**************************************************************************** | ||
| 342 | * cap_getMaxArmSpeedHz - | ||
| 343 | * | ||
| 344 | * PURPOSE: | ||
| 345 | * Determines the maximum speed of the ARM CPU | ||
| 346 | * | ||
| 347 | * PARAMETERS: | ||
| 348 | * none | ||
| 349 | * | ||
| 350 | * RETURNS: | ||
| 351 | * clock speed in Hz that the ARM processor is able to run at | ||
| 352 | ****************************************************************************/ | ||
| 353 | static inline uint32_t cap_getMaxArmSpeedHz(void) | ||
| 354 | { | ||
| 355 | #if ((CFG_GLOBAL_CHIP == BCM11107) || (CFG_GLOBAL_CHIP == FPGA11107)) | ||
| 356 | return 500000000; | ||
| 357 | #elif ((CFG_GLOBAL_CHIP == BCM11109) || (CFG_GLOBAL_CHIP == BCM11170) || (CFG_GLOBAL_CHIP == BCM11110)) | ||
| 358 | return 300000000; | ||
| 359 | #elif (CFG_GLOBAL_CHIP == BCM11211) | ||
| 360 | return 666666666; | ||
| 361 | #else | ||
| 362 | #error CFG_GLOBAL_CHIP type capabilities not defined | ||
| 363 | #endif | ||
| 364 | } | ||
| 365 | |||
| 366 | /**************************************************************************** | ||
| 367 | * cap_getMaxVpmSpeedHz - | ||
| 368 | * | ||
| 369 | * PURPOSE: | ||
| 370 | * Determines the maximum speed of the VPM | ||
| 371 | * | ||
| 372 | * PARAMETERS: | ||
| 373 | * none | ||
| 374 | * | ||
| 375 | * RETURNS: | ||
| 376 | * clock speed in Hz that the VPM is able to run at | ||
| 377 | ****************************************************************************/ | ||
| 378 | static inline uint32_t cap_getMaxVpmSpeedHz(void) | ||
| 379 | { | ||
| 380 | #if ((CFG_GLOBAL_CHIP == BCM11107) || (CFG_GLOBAL_CHIP == BCM11211) || (CFG_GLOBAL_CHIP == FPGA11107)) | ||
| 381 | return 333333333; | ||
| 382 | #elif ((CFG_GLOBAL_CHIP == BCM11109) || (CFG_GLOBAL_CHIP == BCM11170) || (CFG_GLOBAL_CHIP == BCM11110)) | ||
| 383 | return 200000000; | ||
| 384 | #else | ||
| 385 | #error CFG_GLOBAL_CHIP type capabilities not defined | ||
| 386 | #endif | ||
| 387 | } | ||
| 388 | |||
| 389 | /**************************************************************************** | ||
| 390 | * cap_getMaxLcdRes - | ||
| 391 | * | ||
| 392 | * PURPOSE: | ||
| 393 | * Determines the maximum LCD resolution capabilities | ||
| 394 | * | ||
| 395 | * PARAMETERS: | ||
| 396 | * none | ||
| 397 | * | ||
| 398 | * RETURNS: | ||
| 399 | * CAP_LCD_WVGA, CAP_LCD_VGA, CAP_LCD_WQVGA or CAP_LCD_QVGA | ||
| 400 | * | ||
| 401 | ****************************************************************************/ | ||
| 402 | static inline CAP_LCD_RES_T cap_getMaxLcdRes(void) | ||
| 403 | { | ||
| 404 | return (CAP_LCD_RES_T) | ||
| 405 | ((capConfig1 & CAP_CONFIG1_CLCD_RES_MASK) >> | ||
| 406 | CAP_CONFIG1_CLCD_RES_SHIFT); | ||
| 407 | } | ||
| 408 | |||
| 409 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/chipcHw_def.h b/arch/arm/mach-bcmring/include/mach/csp/chipcHw_def.h new file mode 100644 index 00000000000..161973385fa --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/chipcHw_def.h | |||
| @@ -0,0 +1,1123 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CHIPC_DEF_H | ||
| 16 | #define CHIPC_DEF_H | ||
| 17 | |||
| 18 | /* ---- Include Files ----------------------------------------------------- */ | ||
| 19 | |||
| 20 | #include <csp/stdint.h> | ||
| 21 | #include <csp/errno.h> | ||
| 22 | #include <csp/reg.h> | ||
| 23 | #include <mach/csp/chipcHw_reg.h> | ||
| 24 | |||
| 25 | /* ---- Public Constants and Types ---------------------------------------- */ | ||
| 26 | |||
| 27 | /* Set 1 to configure DDR/VPM phase alignment by HW */ | ||
| 28 | #define chipcHw_DDR_HW_PHASE_ALIGN 0 | ||
| 29 | #define chipcHw_VPM_HW_PHASE_ALIGN 0 | ||
| 30 | |||
| 31 | typedef uint32_t chipcHw_freq; | ||
| 32 | |||
| 33 | /* Configurable miscellaneous clocks */ | ||
| 34 | typedef enum { | ||
| 35 | chipcHw_CLOCK_DDR, /* DDR PHY Clock */ | ||
| 36 | chipcHw_CLOCK_ARM, /* ARM Clock */ | ||
| 37 | chipcHw_CLOCK_ESW, /* Ethernet Switch Clock */ | ||
| 38 | chipcHw_CLOCK_VPM, /* VPM Clock */ | ||
| 39 | chipcHw_CLOCK_ESW125, /* Ethernet MII Clock */ | ||
| 40 | chipcHw_CLOCK_UART, /* UART Clock */ | ||
| 41 | chipcHw_CLOCK_SDIO0, /* SDIO 0 Clock */ | ||
| 42 | chipcHw_CLOCK_SDIO1, /* SDIO 1 Clock */ | ||
| 43 | chipcHw_CLOCK_SPI, /* SPI Clock */ | ||
| 44 | chipcHw_CLOCK_ETM, /* ARM ETM Clock */ | ||
| 45 | |||
| 46 | chipcHw_CLOCK_BUS, /* BUS Clock */ | ||
| 47 | chipcHw_CLOCK_OTP, /* OTP Clock */ | ||
| 48 | chipcHw_CLOCK_I2C, /* I2C Host Clock */ | ||
| 49 | chipcHw_CLOCK_I2S0, /* I2S 0 Host Clock */ | ||
| 50 | chipcHw_CLOCK_RTBUS, /* DDR PHY Configuration Clock */ | ||
| 51 | chipcHw_CLOCK_APM100, /* APM100 Clock */ | ||
| 52 | chipcHw_CLOCK_TSC, /* Touch screen Clock */ | ||
| 53 | chipcHw_CLOCK_LED, /* LED Clock */ | ||
| 54 | |||
| 55 | chipcHw_CLOCK_USB, /* USB Clock */ | ||
| 56 | chipcHw_CLOCK_LCD, /* LCD CLock */ | ||
| 57 | chipcHw_CLOCK_APM, /* APM Clock */ | ||
| 58 | |||
| 59 | chipcHw_CLOCK_I2S1, /* I2S 1 Host Clock */ | ||
| 60 | } chipcHw_CLOCK_e; | ||
| 61 | |||
| 62 | /* System booting strap options */ | ||
| 63 | typedef enum { | ||
| 64 | chipcHw_BOOT_DEVICE_UART = chipcHw_STRAPS_BOOT_DEVICE_UART, | ||
| 65 | chipcHw_BOOT_DEVICE_SERIAL_FLASH = | ||
| 66 | chipcHw_STRAPS_BOOT_DEVICE_SERIAL_FLASH, | ||
| 67 | chipcHw_BOOT_DEVICE_NOR_FLASH_16 = | ||
| 68 | chipcHw_STRAPS_BOOT_DEVICE_NOR_FLASH_16, | ||
| 69 | chipcHw_BOOT_DEVICE_NAND_FLASH_8 = | ||
| 70 | chipcHw_STRAPS_BOOT_DEVICE_NAND_FLASH_8, | ||
| 71 | chipcHw_BOOT_DEVICE_NAND_FLASH_16 = | ||
| 72 | chipcHw_STRAPS_BOOT_DEVICE_NAND_FLASH_16 | ||
| 73 | } chipcHw_BOOT_DEVICE_e; | ||
| 74 | |||
| 75 | /* System booting modes */ | ||
| 76 | typedef enum { | ||
| 77 | chipcHw_BOOT_MODE_NORMAL = chipcHw_STRAPS_BOOT_MODE_NORMAL, | ||
| 78 | chipcHw_BOOT_MODE_DBG_SW = chipcHw_STRAPS_BOOT_MODE_DBG_SW, | ||
| 79 | chipcHw_BOOT_MODE_DBG_BOOT = chipcHw_STRAPS_BOOT_MODE_DBG_BOOT, | ||
| 80 | chipcHw_BOOT_MODE_NORMAL_QUIET = chipcHw_STRAPS_BOOT_MODE_NORMAL_QUIET | ||
| 81 | } chipcHw_BOOT_MODE_e; | ||
| 82 | |||
| 83 | /* NAND Flash page size strap options */ | ||
| 84 | typedef enum { | ||
| 85 | chipcHw_NAND_PAGESIZE_512 = chipcHw_STRAPS_NAND_PAGESIZE_512, | ||
| 86 | chipcHw_NAND_PAGESIZE_2048 = chipcHw_STRAPS_NAND_PAGESIZE_2048, | ||
| 87 | chipcHw_NAND_PAGESIZE_4096 = chipcHw_STRAPS_NAND_PAGESIZE_4096, | ||
| 88 | chipcHw_NAND_PAGESIZE_EXT = chipcHw_STRAPS_NAND_PAGESIZE_EXT | ||
| 89 | } chipcHw_NAND_PAGESIZE_e; | ||
| 90 | |||
| 91 | /* GPIO Pin function */ | ||
| 92 | typedef enum { | ||
| 93 | chipcHw_GPIO_FUNCTION_KEYPAD = chipcHw_REG_GPIO_MUX_KEYPAD, | ||
| 94 | chipcHw_GPIO_FUNCTION_I2CH = chipcHw_REG_GPIO_MUX_I2CH, | ||
| 95 | chipcHw_GPIO_FUNCTION_SPI = chipcHw_REG_GPIO_MUX_SPI, | ||
| 96 | chipcHw_GPIO_FUNCTION_UART = chipcHw_REG_GPIO_MUX_UART, | ||
| 97 | chipcHw_GPIO_FUNCTION_LEDMTXP = chipcHw_REG_GPIO_MUX_LEDMTXP, | ||
| 98 | chipcHw_GPIO_FUNCTION_LEDMTXS = chipcHw_REG_GPIO_MUX_LEDMTXS, | ||
| 99 | chipcHw_GPIO_FUNCTION_SDIO0 = chipcHw_REG_GPIO_MUX_SDIO0, | ||
| 100 | chipcHw_GPIO_FUNCTION_SDIO1 = chipcHw_REG_GPIO_MUX_SDIO1, | ||
| 101 | chipcHw_GPIO_FUNCTION_PCM = chipcHw_REG_GPIO_MUX_PCM, | ||
| 102 | chipcHw_GPIO_FUNCTION_I2S = chipcHw_REG_GPIO_MUX_I2S, | ||
| 103 | chipcHw_GPIO_FUNCTION_ETM = chipcHw_REG_GPIO_MUX_ETM, | ||
| 104 | chipcHw_GPIO_FUNCTION_DEBUG = chipcHw_REG_GPIO_MUX_DEBUG, | ||
| 105 | chipcHw_GPIO_FUNCTION_MISC = chipcHw_REG_GPIO_MUX_MISC, | ||
| 106 | chipcHw_GPIO_FUNCTION_GPIO = chipcHw_REG_GPIO_MUX_GPIO | ||
| 107 | } chipcHw_GPIO_FUNCTION_e; | ||
| 108 | |||
| 109 | /* PIN Output slew rate */ | ||
| 110 | typedef enum { | ||
| 111 | chipcHw_PIN_SLEW_RATE_HIGH = chipcHw_REG_SLEW_RATE_HIGH, | ||
| 112 | chipcHw_PIN_SLEW_RATE_NORMAL = chipcHw_REG_SLEW_RATE_NORMAL | ||
| 113 | } chipcHw_PIN_SLEW_RATE_e; | ||
| 114 | |||
| 115 | /* PIN Current drive strength */ | ||
| 116 | typedef enum { | ||
| 117 | chipcHw_PIN_CURRENT_STRENGTH_2mA = chipcHw_REG_CURRENT_STRENGTH_2mA, | ||
| 118 | chipcHw_PIN_CURRENT_STRENGTH_4mA = chipcHw_REG_CURRENT_STRENGTH_4mA, | ||
| 119 | chipcHw_PIN_CURRENT_STRENGTH_6mA = chipcHw_REG_CURRENT_STRENGTH_6mA, | ||
| 120 | chipcHw_PIN_CURRENT_STRENGTH_8mA = chipcHw_REG_CURRENT_STRENGTH_8mA, | ||
| 121 | chipcHw_PIN_CURRENT_STRENGTH_10mA = chipcHw_REG_CURRENT_STRENGTH_10mA, | ||
| 122 | chipcHw_PIN_CURRENT_STRENGTH_12mA = chipcHw_REG_CURRENT_STRENGTH_12mA | ||
| 123 | } chipcHw_PIN_CURRENT_STRENGTH_e; | ||
| 124 | |||
| 125 | /* PIN Pull up register settings */ | ||
| 126 | typedef enum { | ||
| 127 | chipcHw_PIN_PULL_NONE = chipcHw_REG_PULL_NONE, | ||
| 128 | chipcHw_PIN_PULL_UP = chipcHw_REG_PULL_UP, | ||
| 129 | chipcHw_PIN_PULL_DOWN = chipcHw_REG_PULL_DOWN | ||
| 130 | } chipcHw_PIN_PULL_e; | ||
| 131 | |||
| 132 | /* PIN input type settings */ | ||
| 133 | typedef enum { | ||
| 134 | chipcHw_PIN_INPUTTYPE_CMOS = chipcHw_REG_INPUTTYPE_CMOS, | ||
| 135 | chipcHw_PIN_INPUTTYPE_ST = chipcHw_REG_INPUTTYPE_ST | ||
| 136 | } chipcHw_PIN_INPUTTYPE_e; | ||
| 137 | |||
| 138 | /* Allow/Disalow the support of spread spectrum */ | ||
| 139 | typedef enum { | ||
| 140 | chipcHw_SPREAD_SPECTRUM_DISALLOW, /* Spread spectrum support is not allowed */ | ||
| 141 | chipcHw_SPREAD_SPECTRUM_ALLOW /* Spread spectrum support is allowed */ | ||
| 142 | } chipcHw_SPREAD_SPECTRUM_e; | ||
| 143 | |||
| 144 | typedef struct { | ||
| 145 | chipcHw_SPREAD_SPECTRUM_e ssSupport; /* Allow/Disalow to support spread spectrum. | ||
| 146 | If supported, call chipcHw_enableSpreadSpectrum () | ||
| 147 | to activate the spread spectrum with desired spread. */ | ||
| 148 | uint32_t pllVcoFreqHz; /* PLL VCO frequency in Hz */ | ||
| 149 | uint32_t pll2VcoFreqHz; /* PLL2 VCO frequency in Hz */ | ||
| 150 | uint32_t busClockFreqHz; /* Bus clock frequency in Hz */ | ||
| 151 | uint32_t armBusRatio; /* ARM clock : Bus clock */ | ||
| 152 | uint32_t vpmBusRatio; /* VPM clock : Bus clock */ | ||
| 153 | uint32_t ddrBusRatio; /* DDR clock : Bus clock */ | ||
| 154 | } chipcHw_INIT_PARAM_t; | ||
| 155 | |||
| 156 | /* CHIP revision number */ | ||
| 157 | typedef enum { | ||
| 158 | chipcHw_REV_NUMBER_A0 = chipcHw_REG_REV_A0, | ||
| 159 | chipcHw_REV_NUMBER_B0 = chipcHw_REG_REV_B0 | ||
| 160 | } chipcHw_REV_NUMBER_e; | ||
| 161 | |||
| 162 | typedef enum { | ||
| 163 | chipcHw_VPM_HW_PHASE_INTR_DISABLE = chipcHw_REG_VPM_INTR_DISABLE, | ||
| 164 | chipcHw_VPM_HW_PHASE_INTR_FAST = chipcHw_REG_VPM_INTR_FAST, | ||
| 165 | chipcHw_VPM_HW_PHASE_INTR_MEDIUM = chipcHw_REG_VPM_INTR_MEDIUM, | ||
| 166 | chipcHw_VPM_HW_PHASE_INTR_SLOW = chipcHw_REG_VPM_INTR_SLOW | ||
| 167 | } chipcHw_VPM_HW_PHASE_INTR_e; | ||
| 168 | |||
| 169 | typedef enum { | ||
| 170 | chipcHw_DDR_HW_PHASE_MARGIN_STRICT, /* Strict margin for DDR phase align condition */ | ||
| 171 | chipcHw_DDR_HW_PHASE_MARGIN_MEDIUM, /* Medium margin for DDR phase align condition */ | ||
| 172 | chipcHw_DDR_HW_PHASE_MARGIN_WIDE /* Wider margin for DDR phase align condition */ | ||
| 173 | } chipcHw_DDR_HW_PHASE_MARGIN_e; | ||
| 174 | |||
| 175 | typedef enum { | ||
| 176 | chipcHw_VPM_HW_PHASE_MARGIN_STRICT, /* Strict margin for VPM phase align condition */ | ||
| 177 | chipcHw_VPM_HW_PHASE_MARGIN_MEDIUM, /* Medium margin for VPM phase align condition */ | ||
| 178 | chipcHw_VPM_HW_PHASE_MARGIN_WIDE /* Wider margin for VPM phase align condition */ | ||
| 179 | } chipcHw_VPM_HW_PHASE_MARGIN_e; | ||
| 180 | |||
| 181 | #define chipcHw_XTAL_FREQ_Hz 25000000 /* Reference clock frequency in Hz */ | ||
| 182 | |||
| 183 | /* Programmable pin defines */ | ||
| 184 | #define chipcHw_PIN_GPIO(n) ((((n) >= 0) && ((n) < (chipcHw_GPIO_COUNT))) ? (n) : 0xFFFFFFFF) | ||
| 185 | /* GPIO pin 0 - 60 */ | ||
| 186 | #define chipcHw_PIN_UARTTXD (chipcHw_GPIO_COUNT + 0) /* UART Transmit */ | ||
| 187 | #define chipcHw_PIN_NVI_A (chipcHw_GPIO_COUNT + 1) /* NVI Interface */ | ||
| 188 | #define chipcHw_PIN_NVI_D (chipcHw_GPIO_COUNT + 2) /* NVI Interface */ | ||
| 189 | #define chipcHw_PIN_NVI_OEB (chipcHw_GPIO_COUNT + 3) /* NVI Interface */ | ||
| 190 | #define chipcHw_PIN_NVI_WEB (chipcHw_GPIO_COUNT + 4) /* NVI Interface */ | ||
| 191 | #define chipcHw_PIN_NVI_CS (chipcHw_GPIO_COUNT + 5) /* NVI Interface */ | ||
| 192 | #define chipcHw_PIN_NVI_NAND_CSB (chipcHw_GPIO_COUNT + 6) /* NVI Interface */ | ||
| 193 | #define chipcHw_PIN_NVI_FLASHWP (chipcHw_GPIO_COUNT + 7) /* NVI Interface */ | ||
| 194 | #define chipcHw_PIN_NVI_NAND_RDYB (chipcHw_GPIO_COUNT + 8) /* NVI Interface */ | ||
| 195 | #define chipcHw_PIN_CL_DATA_0_17 (chipcHw_GPIO_COUNT + 9) /* LCD Data 0 - 17 */ | ||
| 196 | #define chipcHw_PIN_CL_DATA_18_20 (chipcHw_GPIO_COUNT + 10) /* LCD Data 18 - 20 */ | ||
| 197 | #define chipcHw_PIN_CL_DATA_21_23 (chipcHw_GPIO_COUNT + 11) /* LCD Data 21 - 23 */ | ||
| 198 | #define chipcHw_PIN_CL_POWER (chipcHw_GPIO_COUNT + 12) /* LCD Power */ | ||
| 199 | #define chipcHw_PIN_CL_ACK (chipcHw_GPIO_COUNT + 13) /* LCD Ack */ | ||
| 200 | #define chipcHw_PIN_CL_FP (chipcHw_GPIO_COUNT + 14) /* LCD FP */ | ||
| 201 | #define chipcHw_PIN_CL_LP (chipcHw_GPIO_COUNT + 15) /* LCD LP */ | ||
| 202 | #define chipcHw_PIN_UARTRXD (chipcHw_GPIO_COUNT + 16) /* UART Receive */ | ||
| 203 | |||
| 204 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 205 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 206 | |||
| 207 | /****************************************************************************/ | ||
| 208 | /** | ||
| 209 | * @brief Initializes the clock module | ||
| 210 | * | ||
| 211 | */ | ||
| 212 | /****************************************************************************/ | ||
| 213 | void chipcHw_Init(chipcHw_INIT_PARAM_t *initParam /* [ IN ] Misc chip initialization parameter */ | ||
| 214 | ) __attribute__ ((section(".aramtext"))); | ||
| 215 | |||
| 216 | /****************************************************************************/ | ||
| 217 | /** | ||
| 218 | * @brief Enables the PLL1 | ||
| 219 | * | ||
| 220 | * This function enables the PLL1 | ||
| 221 | * | ||
| 222 | */ | ||
| 223 | /****************************************************************************/ | ||
| 224 | void chipcHw_pll1Enable(uint32_t vcoFreqHz, /* [ IN ] VCO frequency in Hz */ | ||
| 225 | chipcHw_SPREAD_SPECTRUM_e ssSupport /* [ IN ] SS status */ | ||
| 226 | ) __attribute__ ((section(".aramtext"))); | ||
| 227 | |||
| 228 | /****************************************************************************/ | ||
| 229 | /** | ||
| 230 | * @brief Enables the PLL2 | ||
| 231 | * | ||
| 232 | * This function enables the PLL2 | ||
| 233 | * | ||
| 234 | */ | ||
| 235 | /****************************************************************************/ | ||
| 236 | void chipcHw_pll2Enable(uint32_t vcoFreqHz /* [ IN ] VCO frequency in Hz */ | ||
| 237 | ) __attribute__ ((section(".aramtext"))); | ||
| 238 | |||
| 239 | /****************************************************************************/ | ||
| 240 | /** | ||
| 241 | * @brief Disable the PLL1 | ||
| 242 | * | ||
| 243 | */ | ||
| 244 | /****************************************************************************/ | ||
| 245 | static inline void chipcHw_pll1Disable(void); | ||
| 246 | |||
| 247 | /****************************************************************************/ | ||
| 248 | /** | ||
| 249 | * @brief Disable the PLL2 | ||
| 250 | * | ||
| 251 | */ | ||
| 252 | /****************************************************************************/ | ||
| 253 | static inline void chipcHw_pll2Disable(void); | ||
| 254 | |||
| 255 | /****************************************************************************/ | ||
| 256 | /** | ||
| 257 | * @brief Set clock fequency for miscellaneous configurable clocks | ||
| 258 | * | ||
| 259 | * This function sets clock frequency | ||
| 260 | * | ||
| 261 | * @return Configured clock frequency in KHz | ||
| 262 | * | ||
| 263 | */ | ||
| 264 | /****************************************************************************/ | ||
| 265 | chipcHw_freq chipcHw_getClockFrequency(chipcHw_CLOCK_e clock /* [ IN ] Configurable clock */ | ||
| 266 | ) __attribute__ ((section(".aramtext"))); | ||
| 267 | |||
| 268 | /****************************************************************************/ | ||
| 269 | /** | ||
| 270 | * @brief Set clock fequency for miscellaneous configurable clocks | ||
| 271 | * | ||
| 272 | * This function sets clock frequency | ||
| 273 | * | ||
| 274 | * @return Configured clock frequency in Hz | ||
| 275 | * | ||
| 276 | */ | ||
| 277 | /****************************************************************************/ | ||
| 278 | chipcHw_freq chipcHw_setClockFrequency(chipcHw_CLOCK_e clock, /* [ IN ] Configurable clock */ | ||
| 279 | uint32_t freq /* [ IN ] Clock frequency in Hz */ | ||
| 280 | ) __attribute__ ((section(".aramtext"))); | ||
| 281 | |||
| 282 | /****************************************************************************/ | ||
| 283 | /** | ||
| 284 | * @brief Set VPM clock in sync with BUS clock | ||
| 285 | * | ||
| 286 | * This function does the phase adjustment between VPM and BUS clock | ||
| 287 | * | ||
| 288 | * @return >= 0 : On success ( # of adjustment required ) | ||
| 289 | * -1 : On failure | ||
| 290 | */ | ||
| 291 | /****************************************************************************/ | ||
| 292 | int chipcHw_vpmPhaseAlign(void); | ||
| 293 | |||
| 294 | /****************************************************************************/ | ||
| 295 | /** | ||
| 296 | * @brief Enables core a clock of a certain device | ||
| 297 | * | ||
| 298 | * This function enables a core clock | ||
| 299 | * | ||
| 300 | * @return void | ||
| 301 | * | ||
| 302 | * @note Doesnot affect the bus interface clock | ||
| 303 | */ | ||
| 304 | /****************************************************************************/ | ||
| 305 | static inline void chipcHw_setClockEnable(chipcHw_CLOCK_e clock /* [ IN ] Configurable clock */ | ||
| 306 | ); | ||
| 307 | |||
| 308 | /****************************************************************************/ | ||
| 309 | /** | ||
| 310 | * @brief Disabled a core clock of a certain device | ||
| 311 | * | ||
| 312 | * This function disables a core clock | ||
| 313 | * | ||
| 314 | * @return void | ||
| 315 | * | ||
| 316 | * @note Doesnot affect the bus interface clock | ||
| 317 | */ | ||
| 318 | /****************************************************************************/ | ||
| 319 | static inline void chipcHw_setClockDisable(chipcHw_CLOCK_e clock /* [ IN ] Configurable clock */ | ||
| 320 | ); | ||
| 321 | |||
| 322 | /****************************************************************************/ | ||
| 323 | /** | ||
| 324 | * @brief Enables bypass clock of a certain device | ||
| 325 | * | ||
| 326 | * This function enables bypass clock | ||
| 327 | * | ||
| 328 | * @note Doesnot affect the bus interface clock | ||
| 329 | */ | ||
| 330 | /****************************************************************************/ | ||
| 331 | static inline void chipcHw_bypassClockEnable(chipcHw_CLOCK_e clock /* [ IN ] Configurable clock */ | ||
| 332 | ); | ||
| 333 | |||
| 334 | /****************************************************************************/ | ||
| 335 | /** | ||
| 336 | * @brief Disabled bypass clock of a certain device | ||
| 337 | * | ||
| 338 | * This function disables bypass clock | ||
| 339 | * | ||
| 340 | * @note Doesnot affect the bus interface clock | ||
| 341 | */ | ||
| 342 | /****************************************************************************/ | ||
| 343 | static inline void chipcHw_bypassClockDisable(chipcHw_CLOCK_e clock /* [ IN ] Configurable clock */ | ||
| 344 | ); | ||
| 345 | |||
| 346 | /****************************************************************************/ | ||
| 347 | /** | ||
| 348 | * @brief Get Numeric Chip ID | ||
| 349 | * | ||
| 350 | * This function returns Chip ID that includes the revison number | ||
| 351 | * | ||
| 352 | * @return Complete numeric Chip ID | ||
| 353 | * | ||
| 354 | */ | ||
| 355 | /****************************************************************************/ | ||
| 356 | static inline uint32_t chipcHw_getChipId(void); | ||
| 357 | |||
| 358 | /****************************************************************************/ | ||
| 359 | /** | ||
| 360 | * @brief Get Chip Product ID | ||
| 361 | * | ||
| 362 | * This function returns Chip Product ID | ||
| 363 | * | ||
| 364 | * @return Chip Product ID | ||
| 365 | */ | ||
| 366 | /****************************************************************************/ | ||
| 367 | static inline uint32_t chipcHw_getChipProductId(void); | ||
| 368 | |||
| 369 | /****************************************************************************/ | ||
| 370 | /** | ||
| 371 | * @brief Get revision number | ||
| 372 | * | ||
| 373 | * This function returns revision number of the chip | ||
| 374 | * | ||
| 375 | * @return Revision number | ||
| 376 | */ | ||
| 377 | /****************************************************************************/ | ||
| 378 | static inline chipcHw_REV_NUMBER_e chipcHw_getChipRevisionNumber(void); | ||
| 379 | |||
| 380 | /****************************************************************************/ | ||
| 381 | /** | ||
| 382 | * @brief Enables bus interface clock | ||
| 383 | * | ||
| 384 | * Enables bus interface clock of various device | ||
| 385 | * | ||
| 386 | * @return void | ||
| 387 | * | ||
| 388 | * @note use chipcHw_REG_BUS_CLOCK_XXXX | ||
| 389 | */ | ||
| 390 | /****************************************************************************/ | ||
| 391 | static inline void chipcHw_busInterfaceClockEnable(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_BUS_CLOCK_XXXXX */ | ||
| 392 | ); | ||
| 393 | |||
| 394 | /****************************************************************************/ | ||
| 395 | /** | ||
| 396 | * @brief Disables bus interface clock | ||
| 397 | * | ||
| 398 | * Disables bus interface clock of various device | ||
| 399 | * | ||
| 400 | * @return void | ||
| 401 | * | ||
| 402 | * @note use chipcHw_REG_BUS_CLOCK_XXXX | ||
| 403 | */ | ||
| 404 | /****************************************************************************/ | ||
| 405 | static inline void chipcHw_busInterfaceClockDisable(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_BUS_CLOCK_XXXXX */ | ||
| 406 | ); | ||
| 407 | |||
| 408 | /****************************************************************************/ | ||
| 409 | /** | ||
| 410 | * @brief Enables various audio channels | ||
| 411 | * | ||
| 412 | * Enables audio channel | ||
| 413 | * | ||
| 414 | * @return void | ||
| 415 | * | ||
| 416 | * @note use chipcHw_REG_AUDIO_CHANNEL_XXXXXX | ||
| 417 | */ | ||
| 418 | /****************************************************************************/ | ||
| 419 | static inline void chipcHw_audioChannelEnable(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_AUDIO_CHANNEL_XXXXXX */ | ||
| 420 | ); | ||
| 421 | |||
| 422 | /****************************************************************************/ | ||
| 423 | /** | ||
| 424 | * @brief Disables various audio channels | ||
| 425 | * | ||
| 426 | * Disables audio channel | ||
| 427 | * | ||
| 428 | * @return void | ||
| 429 | * | ||
| 430 | * @note use chipcHw_REG_AUDIO_CHANNEL_XXXXXX | ||
| 431 | */ | ||
| 432 | /****************************************************************************/ | ||
| 433 | static inline void chipcHw_audioChannelDisable(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_AUDIO_CHANNEL_XXXXXX */ | ||
| 434 | ); | ||
| 435 | |||
| 436 | /****************************************************************************/ | ||
| 437 | /** | ||
| 438 | * @brief Soft resets devices | ||
| 439 | * | ||
| 440 | * Soft resets various devices | ||
| 441 | * | ||
| 442 | * @return void | ||
| 443 | * | ||
| 444 | * @note use chipcHw_REG_SOFT_RESET_XXXXXX defines | ||
| 445 | */ | ||
| 446 | /****************************************************************************/ | ||
| 447 | static inline void chipcHw_softReset(uint64_t mask /* [ IN ] Bit map of type chipcHw_REG_SOFT_RESET_XXXXXX */ | ||
| 448 | ); | ||
| 449 | |||
| 450 | static inline void chipcHw_softResetDisable(uint64_t mask /* [ IN ] Bit map of type chipcHw_REG_SOFT_RESET_XXXXXX */ | ||
| 451 | ); | ||
| 452 | |||
| 453 | static inline void chipcHw_softResetEnable(uint64_t mask /* [ IN ] Bit map of type chipcHw_REG_SOFT_RESET_XXXXXX */ | ||
| 454 | ); | ||
| 455 | |||
| 456 | /****************************************************************************/ | ||
| 457 | /** | ||
| 458 | * @brief Configures misc CHIP functionality | ||
| 459 | * | ||
| 460 | * Configures CHIP functionality | ||
| 461 | * | ||
| 462 | * @return void | ||
| 463 | * | ||
| 464 | * @note use chipcHw_REG_MISC_CTRL_XXXXXX | ||
| 465 | */ | ||
| 466 | /****************************************************************************/ | ||
| 467 | static inline void chipcHw_miscControl(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_MISC_CTRL_XXXXXX */ | ||
| 468 | ); | ||
| 469 | |||
| 470 | static inline void chipcHw_miscControlDisable(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_MISC_CTRL_XXXXXX */ | ||
| 471 | ); | ||
| 472 | |||
| 473 | static inline void chipcHw_miscControlEnable(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_MISC_CTRL_XXXXXX */ | ||
| 474 | ); | ||
| 475 | |||
| 476 | /****************************************************************************/ | ||
| 477 | /** | ||
| 478 | * @brief Set OTP options | ||
| 479 | * | ||
| 480 | * Set OTP options | ||
| 481 | * | ||
| 482 | * @return void | ||
| 483 | * | ||
| 484 | * @note use chipcHw_REG_OTP_XXXXXX | ||
| 485 | */ | ||
| 486 | /****************************************************************************/ | ||
| 487 | static inline void chipcHw_setOTPOption(uint64_t mask /* [ IN ] Bit map of type chipcHw_REG_OTP_XXXXXX */ | ||
| 488 | ); | ||
| 489 | |||
| 490 | /****************************************************************************/ | ||
| 491 | /** | ||
| 492 | * @brief Get sticky bits | ||
| 493 | * | ||
| 494 | * @return Sticky bit options of type chipcHw_REG_STICKY_XXXXXX | ||
| 495 | * | ||
| 496 | */ | ||
| 497 | /****************************************************************************/ | ||
| 498 | static inline uint32_t chipcHw_getStickyBits(void); | ||
| 499 | |||
| 500 | /****************************************************************************/ | ||
| 501 | /** | ||
| 502 | * @brief Set sticky bits | ||
| 503 | * | ||
| 504 | * @return void | ||
| 505 | * | ||
| 506 | * @note use chipcHw_REG_STICKY_XXXXXX | ||
| 507 | */ | ||
| 508 | /****************************************************************************/ | ||
| 509 | static inline void chipcHw_setStickyBits(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_STICKY_XXXXXX */ | ||
| 510 | ); | ||
| 511 | |||
| 512 | /****************************************************************************/ | ||
| 513 | /** | ||
| 514 | * @brief Clear sticky bits | ||
| 515 | * | ||
| 516 | * @return void | ||
| 517 | * | ||
| 518 | * @note use chipcHw_REG_STICKY_XXXXXX | ||
| 519 | */ | ||
| 520 | /****************************************************************************/ | ||
| 521 | static inline void chipcHw_clearStickyBits(uint32_t mask /* [ IN ] Bit map of type chipcHw_REG_STICKY_XXXXXX */ | ||
| 522 | ); | ||
| 523 | |||
| 524 | /****************************************************************************/ | ||
| 525 | /** | ||
| 526 | * @brief Get software override strap options | ||
| 527 | * | ||
| 528 | * Retrieves software override strap options | ||
| 529 | * | ||
| 530 | * @return Software override strap value | ||
| 531 | * | ||
| 532 | */ | ||
| 533 | /****************************************************************************/ | ||
| 534 | static inline uint32_t chipcHw_getSoftStraps(void); | ||
| 535 | |||
| 536 | /****************************************************************************/ | ||
| 537 | /** | ||
| 538 | * @brief Set software override strap options | ||
| 539 | * | ||
| 540 | * set software override strap options | ||
| 541 | * | ||
| 542 | * @return nothing | ||
| 543 | * | ||
| 544 | */ | ||
| 545 | /****************************************************************************/ | ||
| 546 | static inline void chipcHw_setSoftStraps(uint32_t strapOptions); | ||
| 547 | |||
| 548 | /****************************************************************************/ | ||
| 549 | /** | ||
| 550 | * @brief Get pin strap options | ||
| 551 | * | ||
| 552 | * Retrieves pin strap options | ||
| 553 | * | ||
| 554 | * @return Pin strap value | ||
| 555 | * | ||
| 556 | */ | ||
| 557 | /****************************************************************************/ | ||
| 558 | static inline uint32_t chipcHw_getPinStraps(void); | ||
| 559 | |||
| 560 | /****************************************************************************/ | ||
| 561 | /** | ||
| 562 | * @brief Get valid pin strap options | ||
| 563 | * | ||
| 564 | * Retrieves valid pin strap options | ||
| 565 | * | ||
| 566 | * @return valid Pin strap value | ||
| 567 | * | ||
| 568 | */ | ||
| 569 | /****************************************************************************/ | ||
| 570 | static inline uint32_t chipcHw_getValidStraps(void); | ||
| 571 | |||
| 572 | /****************************************************************************/ | ||
| 573 | /** | ||
| 574 | * @brief Initialize valid pin strap options | ||
| 575 | * | ||
| 576 | * Retrieves valid pin strap options by copying HW strap options to soft register | ||
| 577 | * (if chipcHw_STRAPS_SOFT_OVERRIDE not set) | ||
| 578 | * | ||
| 579 | * @return nothing | ||
| 580 | * | ||
| 581 | */ | ||
| 582 | /****************************************************************************/ | ||
| 583 | static inline void chipcHw_initValidStraps(void); | ||
| 584 | |||
| 585 | /****************************************************************************/ | ||
| 586 | /** | ||
| 587 | * @brief Get status (enabled/disabled) of bus interface clock | ||
| 588 | * | ||
| 589 | * This function returns the status of devices' bus interface clock | ||
| 590 | * | ||
| 591 | * @return Bus interface clock | ||
| 592 | * | ||
| 593 | */ | ||
| 594 | /****************************************************************************/ | ||
| 595 | static inline uint32_t chipcHw_getBusInterfaceClockStatus(void); | ||
| 596 | |||
| 597 | /****************************************************************************/ | ||
| 598 | /** | ||
| 599 | * @brief Get boot device | ||
| 600 | * | ||
| 601 | * This function returns the device type used in booting the system | ||
| 602 | * | ||
| 603 | * @return Boot device of type chipcHw_BOOT_DEVICE_e | ||
| 604 | * | ||
| 605 | */ | ||
| 606 | /****************************************************************************/ | ||
| 607 | static inline chipcHw_BOOT_DEVICE_e chipcHw_getBootDevice(void); | ||
| 608 | |||
| 609 | /****************************************************************************/ | ||
| 610 | /** | ||
| 611 | * @brief Get boot mode | ||
| 612 | * | ||
| 613 | * This function returns the way the system was booted | ||
| 614 | * | ||
| 615 | * @return Boot mode of type chipcHw_BOOT_MODE_e | ||
| 616 | * | ||
| 617 | */ | ||
| 618 | /****************************************************************************/ | ||
| 619 | static inline chipcHw_BOOT_MODE_e chipcHw_getBootMode(void); | ||
| 620 | |||
| 621 | /****************************************************************************/ | ||
| 622 | /** | ||
| 623 | * @brief Get NAND flash page size | ||
| 624 | * | ||
| 625 | * This function returns the NAND device page size | ||
| 626 | * | ||
| 627 | * @return Boot NAND device page size | ||
| 628 | * | ||
| 629 | */ | ||
| 630 | /****************************************************************************/ | ||
| 631 | static inline chipcHw_NAND_PAGESIZE_e chipcHw_getNandPageSize(void); | ||
| 632 | |||
| 633 | /****************************************************************************/ | ||
| 634 | /** | ||
| 635 | * @brief Get NAND flash address cycle configuration | ||
| 636 | * | ||
| 637 | * This function returns the NAND flash address cycle configuration | ||
| 638 | * | ||
| 639 | * @return 0 = Do not extra address cycle, 1 = Add extra cycle | ||
| 640 | * | ||
| 641 | */ | ||
| 642 | /****************************************************************************/ | ||
| 643 | static inline int chipcHw_getNandExtraCycle(void); | ||
| 644 | |||
| 645 | /****************************************************************************/ | ||
| 646 | /** | ||
| 647 | * @brief Activates PIF interface | ||
| 648 | * | ||
| 649 | * This function activates PIF interface by taking control of LCD pins | ||
| 650 | * | ||
| 651 | * @note | ||
| 652 | * When activated, LCD pins will be defined as follows for PIF operation | ||
| 653 | * | ||
| 654 | * CLD[17:0] = pif_data[17:0] | ||
| 655 | * CLD[23:18] = pif_address[5:0] | ||
| 656 | * CLPOWER = pif_wr_str | ||
| 657 | * CLCP = pif_rd_str | ||
| 658 | * CLAC = pif_hat1 | ||
| 659 | * CLFP = pif_hrdy1 | ||
| 660 | * CLLP = pif_hat2 | ||
| 661 | * GPIO[42] = pif_hrdy2 | ||
| 662 | * | ||
| 663 | * In PIF mode, "pif_hrdy2" overrides other shared function for GPIO[42] pin | ||
| 664 | * | ||
| 665 | */ | ||
| 666 | /****************************************************************************/ | ||
| 667 | static inline void chipcHw_activatePifInterface(void); | ||
| 668 | |||
| 669 | /****************************************************************************/ | ||
| 670 | /** | ||
| 671 | * @brief Activates LCD interface | ||
| 672 | * | ||
| 673 | * This function activates LCD interface | ||
| 674 | * | ||
| 675 | * @note | ||
| 676 | * When activated, LCD pins will be defined as follows | ||
| 677 | * | ||
| 678 | * CLD[17:0] = LCD data | ||
| 679 | * CLD[23:18] = LCD data | ||
| 680 | * CLPOWER = LCD power | ||
| 681 | * CLCP = | ||
| 682 | * CLAC = LCD ack | ||
| 683 | * CLFP = | ||
| 684 | * CLLP = | ||
| 685 | */ | ||
| 686 | /****************************************************************************/ | ||
| 687 | static inline void chipcHw_activateLcdInterface(void); | ||
| 688 | |||
| 689 | /****************************************************************************/ | ||
| 690 | /** | ||
| 691 | * @brief Deactivates PIF/LCD interface | ||
| 692 | * | ||
| 693 | * This function deactivates PIF/LCD interface | ||
| 694 | * | ||
| 695 | * @note | ||
| 696 | * When deactivated LCD pins will be in rti-stated | ||
| 697 | * | ||
| 698 | */ | ||
| 699 | /****************************************************************************/ | ||
| 700 | static inline void chipcHw_deactivatePifLcdInterface(void); | ||
| 701 | |||
| 702 | /****************************************************************************/ | ||
| 703 | /** | ||
| 704 | * @brief Get to know the configuration of GPIO pin | ||
| 705 | * | ||
| 706 | */ | ||
| 707 | /****************************************************************************/ | ||
| 708 | static inline chipcHw_GPIO_FUNCTION_e chipcHw_getGpioPinFunction(int pin /* GPIO Pin number */ | ||
| 709 | ); | ||
| 710 | |||
| 711 | /****************************************************************************/ | ||
| 712 | /** | ||
| 713 | * @brief Configure GPIO pin function | ||
| 714 | * | ||
| 715 | */ | ||
| 716 | /****************************************************************************/ | ||
| 717 | static inline void chipcHw_setGpioPinFunction(int pin, /* GPIO Pin number */ | ||
| 718 | chipcHw_GPIO_FUNCTION_e func /* Configuration function */ | ||
| 719 | ); | ||
| 720 | |||
| 721 | /****************************************************************************/ | ||
| 722 | /** | ||
| 723 | * @brief Set Pin slew rate | ||
| 724 | * | ||
| 725 | * This function sets the slew of individual pin | ||
| 726 | * | ||
| 727 | */ | ||
| 728 | /****************************************************************************/ | ||
| 729 | static inline void chipcHw_setPinSlewRate(uint32_t pin, /* Pin of type chipcHw_PIN_XXXXX */ | ||
| 730 | chipcHw_PIN_SLEW_RATE_e slewRate /* Pin slew rate */ | ||
| 731 | ); | ||
| 732 | |||
| 733 | /****************************************************************************/ | ||
| 734 | /** | ||
| 735 | * @brief Set Pin output drive current | ||
| 736 | * | ||
| 737 | * This function sets output drive current of individual pin | ||
| 738 | * | ||
| 739 | * Note: Avoid the use of the word 'current' since linux headers define this | ||
| 740 | * to be the current task. | ||
| 741 | */ | ||
| 742 | /****************************************************************************/ | ||
| 743 | static inline void chipcHw_setPinOutputCurrent(uint32_t pin, /* Pin of type chipcHw_PIN_XXXXX */ | ||
| 744 | chipcHw_PIN_CURRENT_STRENGTH_e curr /* Pin current rating */ | ||
| 745 | ); | ||
| 746 | |||
| 747 | /****************************************************************************/ | ||
| 748 | /** | ||
| 749 | * @brief Set Pin pullup register | ||
| 750 | * | ||
| 751 | * This function sets pullup register of individual pin | ||
| 752 | * | ||
| 753 | */ | ||
| 754 | /****************************************************************************/ | ||
| 755 | static inline void chipcHw_setPinPullup(uint32_t pin, /* Pin of type chipcHw_PIN_XXXXX */ | ||
| 756 | chipcHw_PIN_PULL_e pullup /* Pullup register settings */ | ||
| 757 | ); | ||
| 758 | |||
| 759 | /****************************************************************************/ | ||
| 760 | /** | ||
| 761 | * @brief Set Pin input type | ||
| 762 | * | ||
| 763 | * This function sets input type of individual Pin | ||
| 764 | * | ||
| 765 | */ | ||
| 766 | /****************************************************************************/ | ||
| 767 | static inline void chipcHw_setPinInputType(uint32_t pin, /* Pin of type chipcHw_PIN_XXXXX */ | ||
| 768 | chipcHw_PIN_INPUTTYPE_e inputType /* Pin input type */ | ||
| 769 | ); | ||
| 770 | |||
| 771 | /****************************************************************************/ | ||
| 772 | /** | ||
| 773 | * @brief Retrieves a string representation of the mux setting for a pin. | ||
| 774 | * | ||
| 775 | * @return Pointer to a character string. | ||
| 776 | */ | ||
| 777 | /****************************************************************************/ | ||
| 778 | |||
| 779 | const char *chipcHw_getGpioPinFunctionStr(int pin); | ||
| 780 | |||
| 781 | /****************************************************************************/ | ||
| 782 | /** @brief issue warmReset | ||
| 783 | */ | ||
| 784 | /****************************************************************************/ | ||
| 785 | void chipcHw_reset(uint32_t mask); | ||
| 786 | |||
| 787 | /****************************************************************************/ | ||
| 788 | /** @brief clock reconfigure | ||
| 789 | */ | ||
| 790 | /****************************************************************************/ | ||
| 791 | void chipcHw_clockReconfig(uint32_t busHz, uint32_t armRatio, uint32_t vpmRatio, | ||
| 792 | uint32_t ddrRatio); | ||
| 793 | |||
| 794 | /****************************************************************************/ | ||
| 795 | /** | ||
| 796 | * @brief Enable Spread Spectrum | ||
| 797 | * | ||
| 798 | * @note chipcHw_Init() must be called earlier | ||
| 799 | */ | ||
| 800 | /****************************************************************************/ | ||
| 801 | static inline void chipcHw_enableSpreadSpectrum(void); | ||
| 802 | |||
| 803 | /****************************************************************************/ | ||
| 804 | /** | ||
| 805 | * @brief Disable Spread Spectrum | ||
| 806 | * | ||
| 807 | */ | ||
| 808 | /****************************************************************************/ | ||
| 809 | static inline void chipcHw_disableSpreadSpectrum(void); | ||
| 810 | |||
| 811 | /****************************************************************************/ | ||
| 812 | /** @brief Checks if software strap is enabled | ||
| 813 | * | ||
| 814 | * @return 1 : When enable | ||
| 815 | * 0 : When disable | ||
| 816 | */ | ||
| 817 | /****************************************************************************/ | ||
| 818 | static inline int chipcHw_isSoftwareStrapsEnable(void); | ||
| 819 | |||
| 820 | /****************************************************************************/ | ||
| 821 | /** @brief Enable software strap | ||
| 822 | */ | ||
| 823 | /****************************************************************************/ | ||
| 824 | static inline void chipcHw_softwareStrapsEnable(void); | ||
| 825 | |||
| 826 | /****************************************************************************/ | ||
| 827 | /** @brief Disable software strap | ||
| 828 | */ | ||
| 829 | /****************************************************************************/ | ||
| 830 | static inline void chipcHw_softwareStrapsDisable(void); | ||
| 831 | |||
| 832 | /****************************************************************************/ | ||
| 833 | /** @brief PLL test enable | ||
| 834 | */ | ||
| 835 | /****************************************************************************/ | ||
| 836 | static inline void chipcHw_pllTestEnable(void); | ||
| 837 | |||
| 838 | /****************************************************************************/ | ||
| 839 | /** @brief PLL2 test enable | ||
| 840 | */ | ||
| 841 | /****************************************************************************/ | ||
| 842 | static inline void chipcHw_pll2TestEnable(void); | ||
| 843 | |||
| 844 | /****************************************************************************/ | ||
| 845 | /** @brief PLL test disable | ||
| 846 | */ | ||
| 847 | /****************************************************************************/ | ||
| 848 | static inline void chipcHw_pllTestDisable(void); | ||
| 849 | |||
| 850 | /****************************************************************************/ | ||
| 851 | /** @brief PLL2 test disable | ||
| 852 | */ | ||
| 853 | /****************************************************************************/ | ||
| 854 | static inline void chipcHw_pll2TestDisable(void); | ||
| 855 | |||
| 856 | /****************************************************************************/ | ||
| 857 | /** @brief Get PLL test status | ||
| 858 | */ | ||
| 859 | /****************************************************************************/ | ||
| 860 | static inline int chipcHw_isPllTestEnable(void); | ||
| 861 | |||
| 862 | /****************************************************************************/ | ||
| 863 | /** @brief Get PLL2 test status | ||
| 864 | */ | ||
| 865 | /****************************************************************************/ | ||
| 866 | static inline int chipcHw_isPll2TestEnable(void); | ||
| 867 | |||
| 868 | /****************************************************************************/ | ||
| 869 | /** @brief PLL test select | ||
| 870 | */ | ||
| 871 | /****************************************************************************/ | ||
| 872 | static inline void chipcHw_pllTestSelect(uint32_t val); | ||
| 873 | |||
| 874 | /****************************************************************************/ | ||
| 875 | /** @brief PLL2 test select | ||
| 876 | */ | ||
| 877 | /****************************************************************************/ | ||
| 878 | static inline void chipcHw_pll2TestSelect(uint32_t val); | ||
| 879 | |||
| 880 | /****************************************************************************/ | ||
| 881 | /** @brief Get PLL test selected option | ||
| 882 | */ | ||
| 883 | /****************************************************************************/ | ||
| 884 | static inline uint8_t chipcHw_getPllTestSelected(void); | ||
| 885 | |||
| 886 | /****************************************************************************/ | ||
| 887 | /** @brief Get PLL2 test selected option | ||
| 888 | */ | ||
| 889 | /****************************************************************************/ | ||
| 890 | static inline uint8_t chipcHw_getPll2TestSelected(void); | ||
| 891 | |||
| 892 | /****************************************************************************/ | ||
| 893 | /** | ||
| 894 | * @brief Enables DDR SW phase alignment interrupt | ||
| 895 | */ | ||
| 896 | /****************************************************************************/ | ||
| 897 | static inline void chipcHw_ddrPhaseAlignInterruptEnable(void); | ||
| 898 | |||
| 899 | /****************************************************************************/ | ||
| 900 | /** | ||
| 901 | * @brief Disables DDR SW phase alignment interrupt | ||
| 902 | */ | ||
| 903 | /****************************************************************************/ | ||
| 904 | static inline void chipcHw_ddrPhaseAlignInterruptDisable(void); | ||
| 905 | |||
| 906 | /****************************************************************************/ | ||
| 907 | /** | ||
| 908 | * @brief Set VPM SW phase alignment interrupt mode | ||
| 909 | * | ||
| 910 | * This function sets VPM phase alignment interrupt | ||
| 911 | * | ||
| 912 | */ | ||
| 913 | /****************************************************************************/ | ||
| 914 | static inline void | ||
| 915 | chipcHw_vpmPhaseAlignInterruptMode(chipcHw_VPM_HW_PHASE_INTR_e mode); | ||
| 916 | |||
| 917 | /****************************************************************************/ | ||
| 918 | /** | ||
| 919 | * @brief Enable DDR phase alignment in software | ||
| 920 | * | ||
| 921 | */ | ||
| 922 | /****************************************************************************/ | ||
| 923 | static inline void chipcHw_ddrSwPhaseAlignEnable(void); | ||
| 924 | |||
| 925 | /****************************************************************************/ | ||
| 926 | /** | ||
| 927 | * @brief Disable DDR phase alignment in software | ||
| 928 | * | ||
| 929 | */ | ||
| 930 | /****************************************************************************/ | ||
| 931 | static inline void chipcHw_ddrSwPhaseAlignDisable(void); | ||
| 932 | |||
| 933 | /****************************************************************************/ | ||
| 934 | /** | ||
| 935 | * @brief Enable DDR phase alignment in hardware | ||
| 936 | * | ||
| 937 | */ | ||
| 938 | /****************************************************************************/ | ||
| 939 | static inline void chipcHw_ddrHwPhaseAlignEnable(void); | ||
| 940 | |||
| 941 | /****************************************************************************/ | ||
| 942 | /** | ||
| 943 | * @brief Disable DDR phase alignment in hardware | ||
| 944 | * | ||
| 945 | */ | ||
| 946 | /****************************************************************************/ | ||
| 947 | static inline void chipcHw_ddrHwPhaseAlignDisable(void); | ||
| 948 | |||
| 949 | /****************************************************************************/ | ||
| 950 | /** | ||
| 951 | * @brief Enable VPM phase alignment in software | ||
| 952 | * | ||
| 953 | */ | ||
| 954 | /****************************************************************************/ | ||
| 955 | static inline void chipcHw_vpmSwPhaseAlignEnable(void); | ||
| 956 | |||
| 957 | /****************************************************************************/ | ||
| 958 | /** | ||
| 959 | * @brief Disable VPM phase alignment in software | ||
| 960 | * | ||
| 961 | */ | ||
| 962 | /****************************************************************************/ | ||
| 963 | static inline void chipcHw_vpmSwPhaseAlignDisable(void); | ||
| 964 | |||
| 965 | /****************************************************************************/ | ||
| 966 | /** | ||
| 967 | * @brief Enable VPM phase alignment in hardware | ||
| 968 | * | ||
| 969 | */ | ||
| 970 | /****************************************************************************/ | ||
| 971 | static inline void chipcHw_vpmHwPhaseAlignEnable(void); | ||
| 972 | |||
| 973 | /****************************************************************************/ | ||
| 974 | /** | ||
| 975 | * @brief Disable VPM phase alignment in hardware | ||
| 976 | * | ||
| 977 | */ | ||
| 978 | /****************************************************************************/ | ||
| 979 | static inline void chipcHw_vpmHwPhaseAlignDisable(void); | ||
| 980 | |||
| 981 | /****************************************************************************/ | ||
| 982 | /** | ||
| 983 | * @brief Set DDR phase alignment margin in hardware | ||
| 984 | * | ||
| 985 | */ | ||
| 986 | /****************************************************************************/ | ||
| 987 | static inline void chipcHw_setDdrHwPhaseAlignMargin(chipcHw_DDR_HW_PHASE_MARGIN_e margin /* Margin alinging DDR phase */ | ||
| 988 | ); | ||
| 989 | |||
| 990 | /****************************************************************************/ | ||
| 991 | /** | ||
| 992 | * @brief Set VPM phase alignment margin in hardware | ||
| 993 | * | ||
| 994 | */ | ||
| 995 | /****************************************************************************/ | ||
| 996 | static inline void chipcHw_setVpmHwPhaseAlignMargin(chipcHw_VPM_HW_PHASE_MARGIN_e margin /* Margin alinging VPM phase */ | ||
| 997 | ); | ||
| 998 | |||
| 999 | /****************************************************************************/ | ||
| 1000 | /** | ||
| 1001 | * @brief Checks DDR phase aligned status done by HW | ||
| 1002 | * | ||
| 1003 | * @return 1: When aligned | ||
| 1004 | * 0: When not aligned | ||
| 1005 | */ | ||
| 1006 | /****************************************************************************/ | ||
| 1007 | static inline uint32_t chipcHw_isDdrHwPhaseAligned(void); | ||
| 1008 | |||
| 1009 | /****************************************************************************/ | ||
| 1010 | /** | ||
| 1011 | * @brief Checks VPM phase aligned status done by HW | ||
| 1012 | * | ||
| 1013 | * @return 1: When aligned | ||
| 1014 | * 0: When not aligned | ||
| 1015 | */ | ||
| 1016 | /****************************************************************************/ | ||
| 1017 | static inline uint32_t chipcHw_isVpmHwPhaseAligned(void); | ||
| 1018 | |||
| 1019 | /****************************************************************************/ | ||
| 1020 | /** | ||
| 1021 | * @brief Get DDR phase aligned status done by HW | ||
| 1022 | * | ||
| 1023 | */ | ||
| 1024 | /****************************************************************************/ | ||
| 1025 | static inline uint32_t chipcHw_getDdrHwPhaseAlignStatus(void); | ||
| 1026 | |||
| 1027 | /****************************************************************************/ | ||
| 1028 | /** | ||
| 1029 | * @brief Get VPM phase aligned status done by HW | ||
| 1030 | * | ||
| 1031 | */ | ||
| 1032 | /****************************************************************************/ | ||
| 1033 | static inline uint32_t chipcHw_getVpmHwPhaseAlignStatus(void); | ||
| 1034 | |||
| 1035 | /****************************************************************************/ | ||
| 1036 | /** | ||
| 1037 | * @brief Get DDR phase control value | ||
| 1038 | * | ||
| 1039 | */ | ||
| 1040 | /****************************************************************************/ | ||
| 1041 | static inline uint32_t chipcHw_getDdrPhaseControl(void); | ||
| 1042 | |||
| 1043 | /****************************************************************************/ | ||
| 1044 | /** | ||
| 1045 | * @brief Get VPM phase control value | ||
| 1046 | * | ||
| 1047 | */ | ||
| 1048 | /****************************************************************************/ | ||
| 1049 | static inline uint32_t chipcHw_getVpmPhaseControl(void); | ||
| 1050 | |||
| 1051 | /****************************************************************************/ | ||
| 1052 | /** | ||
| 1053 | * @brief DDR phase alignment timeout count | ||
| 1054 | * | ||
| 1055 | * @note If HW fails to perform the phase alignment, it will trigger | ||
| 1056 | * a DDR phase alignment timeout interrupt. | ||
| 1057 | */ | ||
| 1058 | /****************************************************************************/ | ||
| 1059 | static inline void chipcHw_ddrHwPhaseAlignTimeout(uint32_t busCycle /* Timeout in bus cycle */ | ||
| 1060 | ); | ||
| 1061 | |||
| 1062 | /****************************************************************************/ | ||
| 1063 | /** | ||
| 1064 | * @brief VPM phase alignment timeout count | ||
| 1065 | * | ||
| 1066 | * @note If HW fails to perform the phase alignment, it will trigger | ||
| 1067 | * a VPM phase alignment timeout interrupt. | ||
| 1068 | */ | ||
| 1069 | /****************************************************************************/ | ||
| 1070 | static inline void chipcHw_vpmHwPhaseAlignTimeout(uint32_t busCycle /* Timeout in bus cycle */ | ||
| 1071 | ); | ||
| 1072 | |||
| 1073 | /****************************************************************************/ | ||
| 1074 | /** | ||
| 1075 | * @brief DDR phase alignment timeout interrupt enable | ||
| 1076 | * | ||
| 1077 | */ | ||
| 1078 | /****************************************************************************/ | ||
| 1079 | static inline void chipcHw_ddrHwPhaseAlignTimeoutInterruptEnable(void); | ||
| 1080 | |||
| 1081 | /****************************************************************************/ | ||
| 1082 | /** | ||
| 1083 | * @brief VPM phase alignment timeout interrupt enable | ||
| 1084 | * | ||
| 1085 | */ | ||
| 1086 | /****************************************************************************/ | ||
| 1087 | static inline void chipcHw_vpmHwPhaseAlignTimeoutInterruptEnable(void); | ||
| 1088 | |||
| 1089 | /****************************************************************************/ | ||
| 1090 | /** | ||
| 1091 | * @brief DDR phase alignment timeout interrupt disable | ||
| 1092 | * | ||
| 1093 | */ | ||
| 1094 | /****************************************************************************/ | ||
| 1095 | static inline void chipcHw_ddrHwPhaseAlignTimeoutInterruptDisable(void); | ||
| 1096 | |||
| 1097 | /****************************************************************************/ | ||
| 1098 | /** | ||
| 1099 | * @brief VPM phase alignment timeout interrupt disable | ||
| 1100 | * | ||
| 1101 | */ | ||
| 1102 | /****************************************************************************/ | ||
| 1103 | static inline void chipcHw_vpmHwPhaseAlignTimeoutInterruptDisable(void); | ||
| 1104 | |||
| 1105 | /****************************************************************************/ | ||
| 1106 | /** | ||
| 1107 | * @brief Clear DDR phase alignment timeout interrupt | ||
| 1108 | * | ||
| 1109 | */ | ||
| 1110 | /****************************************************************************/ | ||
| 1111 | static inline void chipcHw_ddrHwPhaseAlignTimeoutInterruptClear(void); | ||
| 1112 | |||
| 1113 | /****************************************************************************/ | ||
| 1114 | /** | ||
| 1115 | * @brief Clear VPM phase alignment timeout interrupt | ||
| 1116 | * | ||
| 1117 | */ | ||
| 1118 | /****************************************************************************/ | ||
| 1119 | static inline void chipcHw_vpmHwPhaseAlignTimeoutInterruptClear(void); | ||
| 1120 | |||
| 1121 | /* ---- Private Constants and Types -------------------------------------- */ | ||
| 1122 | |||
| 1123 | #endif /* CHIPC_DEF_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/chipcHw_inline.h b/arch/arm/mach-bcmring/include/mach/csp/chipcHw_inline.h new file mode 100644 index 00000000000..03238c29900 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/chipcHw_inline.h | |||
| @@ -0,0 +1,1673 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef CHIPC_INLINE_H | ||
| 16 | #define CHIPC_INLINE_H | ||
| 17 | |||
| 18 | /* ---- Include Files ----------------------------------------------------- */ | ||
| 19 | |||
| 20 | #include <csp/errno.h> | ||
| 21 | #include <csp/reg.h> | ||
| 22 | #include <mach/csp/chipcHw_reg.h> | ||
| 23 | #include <mach/csp/chipcHw_def.h> | ||
| 24 | |||
| 25 | /* ---- Private Constants and Types --------------------------------------- */ | ||
| 26 | typedef enum { | ||
| 27 | chipcHw_OPTYPE_BYPASS, /* Bypass operation */ | ||
| 28 | chipcHw_OPTYPE_OUTPUT /* Output operation */ | ||
| 29 | } chipcHw_OPTYPE_e; | ||
| 30 | |||
| 31 | /* ---- Public Constants and Types ---------------------------------------- */ | ||
| 32 | /* ---- Public Variable Externs ------------------------------------------- */ | ||
| 33 | /* ---- Public Function Prototypes ---------------------------------------- */ | ||
| 34 | /* ---- Private Function Prototypes --------------------------------------- */ | ||
| 35 | static inline void chipcHw_setClock(chipcHw_CLOCK_e clock, | ||
| 36 | chipcHw_OPTYPE_e type, int mode); | ||
| 37 | |||
| 38 | /****************************************************************************/ | ||
| 39 | /** | ||
| 40 | * @brief Get Numeric Chip ID | ||
| 41 | * | ||
| 42 | * This function returns Chip ID that includes the revison number | ||
| 43 | * | ||
| 44 | * @return Complete numeric Chip ID | ||
| 45 | * | ||
| 46 | */ | ||
| 47 | /****************************************************************************/ | ||
| 48 | static inline uint32_t chipcHw_getChipId(void) | ||
| 49 | { | ||
| 50 | return pChipcHw->ChipId; | ||
| 51 | } | ||
| 52 | |||
| 53 | /****************************************************************************/ | ||
| 54 | /** | ||
| 55 | * @brief Enable Spread Spectrum | ||
| 56 | * | ||
| 57 | * @note chipcHw_Init() must be called earlier | ||
| 58 | */ | ||
| 59 | /****************************************************************************/ | ||
| 60 | static inline void chipcHw_enableSpreadSpectrum(void) | ||
| 61 | { | ||
| 62 | if ((pChipcHw-> | ||
| 63 | PLLPreDivider & chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_MASK) != | ||
| 64 | chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_INTEGER) { | ||
| 65 | ddrcReg_PHY_ADDR_CTL_REGP->ssCfg = | ||
| 66 | (0xFFFF << ddrcReg_PHY_ADDR_SS_CFG_NDIV_AMPLITUDE_SHIFT) | | ||
| 67 | (ddrcReg_PHY_ADDR_SS_CFG_MIN_CYCLE_PER_TICK << | ||
| 68 | ddrcReg_PHY_ADDR_SS_CFG_CYCLE_PER_TICK_SHIFT); | ||
| 69 | ddrcReg_PHY_ADDR_CTL_REGP->ssCtl |= | ||
| 70 | ddrcReg_PHY_ADDR_SS_CTRL_ENABLE; | ||
| 71 | } | ||
| 72 | } | ||
| 73 | |||
| 74 | /****************************************************************************/ | ||
| 75 | /** | ||
| 76 | * @brief Disable Spread Spectrum | ||
| 77 | * | ||
| 78 | */ | ||
| 79 | /****************************************************************************/ | ||
| 80 | static inline void chipcHw_disableSpreadSpectrum(void) | ||
| 81 | { | ||
| 82 | ddrcReg_PHY_ADDR_CTL_REGP->ssCtl &= ~ddrcReg_PHY_ADDR_SS_CTRL_ENABLE; | ||
| 83 | } | ||
| 84 | |||
| 85 | /****************************************************************************/ | ||
| 86 | /** | ||
| 87 | * @brief Get Chip Product ID | ||
| 88 | * | ||
| 89 | * This function returns Chip Product ID | ||
| 90 | * | ||
| 91 | * @return Chip Product ID | ||
| 92 | */ | ||
| 93 | /****************************************************************************/ | ||
| 94 | static inline uint32_t chipcHw_getChipProductId(void) | ||
| 95 | { | ||
| 96 | return (pChipcHw-> | ||
| 97 | ChipId & chipcHw_REG_CHIPID_BASE_MASK) >> | ||
| 98 | chipcHw_REG_CHIPID_BASE_SHIFT; | ||
| 99 | } | ||
| 100 | |||
| 101 | /****************************************************************************/ | ||
| 102 | /** | ||
| 103 | * @brief Get revision number | ||
| 104 | * | ||
| 105 | * This function returns revision number of the chip | ||
| 106 | * | ||
| 107 | * @return Revision number | ||
| 108 | */ | ||
| 109 | /****************************************************************************/ | ||
| 110 | static inline chipcHw_REV_NUMBER_e chipcHw_getChipRevisionNumber(void) | ||
| 111 | { | ||
| 112 | return pChipcHw->ChipId & chipcHw_REG_CHIPID_REV_MASK; | ||
| 113 | } | ||
| 114 | |||
| 115 | /****************************************************************************/ | ||
| 116 | /** | ||
| 117 | * @brief Enables bus interface clock | ||
| 118 | * | ||
| 119 | * Enables bus interface clock of various device | ||
| 120 | * | ||
| 121 | * @return void | ||
| 122 | * | ||
| 123 | * @note use chipcHw_REG_BUS_CLOCK_XXXX for mask | ||
| 124 | */ | ||
| 125 | /****************************************************************************/ | ||
| 126 | static inline void chipcHw_busInterfaceClockEnable(uint32_t mask) | ||
| 127 | { | ||
| 128 | reg32_modify_or(&pChipcHw->BusIntfClock, mask); | ||
| 129 | } | ||
| 130 | |||
| 131 | /****************************************************************************/ | ||
| 132 | /** | ||
| 133 | * @brief Disables bus interface clock | ||
| 134 | * | ||
| 135 | * Disables bus interface clock of various device | ||
| 136 | * | ||
| 137 | * @return void | ||
| 138 | * | ||
| 139 | * @note use chipcHw_REG_BUS_CLOCK_XXXX | ||
| 140 | */ | ||
| 141 | /****************************************************************************/ | ||
| 142 | static inline void chipcHw_busInterfaceClockDisable(uint32_t mask) | ||
| 143 | { | ||
| 144 | reg32_modify_and(&pChipcHw->BusIntfClock, ~mask); | ||
| 145 | } | ||
| 146 | |||
| 147 | /****************************************************************************/ | ||
| 148 | /** | ||
| 149 | * @brief Get status (enabled/disabled) of bus interface clock | ||
| 150 | * | ||
| 151 | * This function returns the status of devices' bus interface clock | ||
| 152 | * | ||
| 153 | * @return Bus interface clock | ||
| 154 | * | ||
| 155 | */ | ||
| 156 | /****************************************************************************/ | ||
| 157 | static inline uint32_t chipcHw_getBusInterfaceClockStatus(void) | ||
| 158 | { | ||
| 159 | return pChipcHw->BusIntfClock; | ||
| 160 | } | ||
| 161 | |||
| 162 | /****************************************************************************/ | ||
| 163 | /** | ||
| 164 | * @brief Enables various audio channels | ||
| 165 | * | ||
| 166 | * Enables audio channel | ||
| 167 | * | ||
| 168 | * @return void | ||
| 169 | * | ||
| 170 | * @note use chipcHw_REG_AUDIO_CHANNEL_XXXXXX | ||
| 171 | */ | ||
| 172 | /****************************************************************************/ | ||
| 173 | static inline void chipcHw_audioChannelEnable(uint32_t mask) | ||
| 174 | { | ||
| 175 | reg32_modify_or(&pChipcHw->AudioEnable, mask); | ||
| 176 | } | ||
| 177 | |||
| 178 | /****************************************************************************/ | ||
| 179 | /** | ||
| 180 | * @brief Disables various audio channels | ||
| 181 | * | ||
| 182 | * Disables audio channel | ||
| 183 | * | ||
| 184 | * @return void | ||
| 185 | * | ||
| 186 | * @note use chipcHw_REG_AUDIO_CHANNEL_XXXXXX | ||
| 187 | */ | ||
| 188 | /****************************************************************************/ | ||
| 189 | static inline void chipcHw_audioChannelDisable(uint32_t mask) | ||
| 190 | { | ||
| 191 | reg32_modify_and(&pChipcHw->AudioEnable, ~mask); | ||
| 192 | } | ||
| 193 | |||
| 194 | /****************************************************************************/ | ||
| 195 | /** | ||
| 196 | * @brief Soft resets devices | ||
| 197 | * | ||
| 198 | * Soft resets various devices | ||
| 199 | * | ||
| 200 | * @return void | ||
| 201 | * | ||
| 202 | * @note use chipcHw_REG_SOFT_RESET_XXXXXX defines | ||
| 203 | */ | ||
| 204 | /****************************************************************************/ | ||
| 205 | static inline void chipcHw_softReset(uint64_t mask) | ||
| 206 | { | ||
| 207 | chipcHw_softResetEnable(mask); | ||
| 208 | chipcHw_softResetDisable(mask); | ||
| 209 | } | ||
| 210 | |||
| 211 | static inline void chipcHw_softResetDisable(uint64_t mask) | ||
| 212 | { | ||
| 213 | uint32_t ctrl1 = (uint32_t) mask; | ||
| 214 | uint32_t ctrl2 = (uint32_t) (mask >> 32); | ||
| 215 | |||
| 216 | /* Deassert module soft reset */ | ||
| 217 | REG_LOCAL_IRQ_SAVE; | ||
| 218 | pChipcHw->SoftReset1 ^= ctrl1; | ||
| 219 | pChipcHw->SoftReset2 ^= (ctrl2 & (~chipcHw_REG_SOFT_RESET_UNHOLD_MASK)); | ||
| 220 | REG_LOCAL_IRQ_RESTORE; | ||
| 221 | } | ||
| 222 | |||
| 223 | static inline void chipcHw_softResetEnable(uint64_t mask) | ||
| 224 | { | ||
| 225 | uint32_t ctrl1 = (uint32_t) mask; | ||
| 226 | uint32_t ctrl2 = (uint32_t) (mask >> 32); | ||
| 227 | uint32_t unhold = 0; | ||
| 228 | |||
| 229 | REG_LOCAL_IRQ_SAVE; | ||
| 230 | pChipcHw->SoftReset1 |= ctrl1; | ||
| 231 | /* Mask out unhold request bits */ | ||
| 232 | pChipcHw->SoftReset2 |= (ctrl2 & (~chipcHw_REG_SOFT_RESET_UNHOLD_MASK)); | ||
| 233 | |||
| 234 | /* Process unhold requests */ | ||
| 235 | if (ctrl2 & chipcHw_REG_SOFT_RESET_VPM_GLOBAL_UNHOLD) { | ||
| 236 | unhold = chipcHw_REG_SOFT_RESET_VPM_GLOBAL_HOLD; | ||
| 237 | } | ||
| 238 | |||
| 239 | if (ctrl2 & chipcHw_REG_SOFT_RESET_VPM_UNHOLD) { | ||
| 240 | unhold |= chipcHw_REG_SOFT_RESET_VPM_HOLD; | ||
| 241 | } | ||
| 242 | |||
| 243 | if (ctrl2 & chipcHw_REG_SOFT_RESET_ARM_UNHOLD) { | ||
| 244 | unhold |= chipcHw_REG_SOFT_RESET_ARM_HOLD; | ||
| 245 | } | ||
| 246 | |||
| 247 | if (unhold) { | ||
| 248 | /* Make sure unhold request is effective */ | ||
| 249 | pChipcHw->SoftReset1 &= ~unhold; | ||
| 250 | } | ||
| 251 | REG_LOCAL_IRQ_RESTORE; | ||
| 252 | } | ||
| 253 | |||
| 254 | /****************************************************************************/ | ||
| 255 | /** | ||
| 256 | * @brief Configures misc CHIP functionality | ||
| 257 | * | ||
| 258 | * Configures CHIP functionality | ||
| 259 | * | ||
| 260 | * @return void | ||
| 261 | * | ||
| 262 | * @note use chipcHw_REG_MISC_CTRL_XXXXXX | ||
| 263 | */ | ||
| 264 | /****************************************************************************/ | ||
| 265 | static inline void chipcHw_miscControl(uint32_t mask) | ||
| 266 | { | ||
| 267 | reg32_write(&pChipcHw->MiscCtrl, mask); | ||
| 268 | } | ||
| 269 | |||
| 270 | static inline void chipcHw_miscControlDisable(uint32_t mask) | ||
| 271 | { | ||
| 272 | reg32_modify_and(&pChipcHw->MiscCtrl, ~mask); | ||
| 273 | } | ||
| 274 | |||
| 275 | static inline void chipcHw_miscControlEnable(uint32_t mask) | ||
| 276 | { | ||
| 277 | reg32_modify_or(&pChipcHw->MiscCtrl, mask); | ||
| 278 | } | ||
| 279 | |||
| 280 | /****************************************************************************/ | ||
| 281 | /** | ||
| 282 | * @brief Set OTP options | ||
| 283 | * | ||
| 284 | * Set OTP options | ||
| 285 | * | ||
| 286 | * @return void | ||
| 287 | * | ||
| 288 | * @note use chipcHw_REG_OTP_XXXXXX | ||
| 289 | */ | ||
| 290 | /****************************************************************************/ | ||
| 291 | static inline void chipcHw_setOTPOption(uint64_t mask) | ||
| 292 | { | ||
| 293 | uint32_t ctrl1 = (uint32_t) mask; | ||
| 294 | uint32_t ctrl2 = (uint32_t) (mask >> 32); | ||
| 295 | |||
| 296 | reg32_modify_or(&pChipcHw->SoftOTP1, ctrl1); | ||
| 297 | reg32_modify_or(&pChipcHw->SoftOTP2, ctrl2); | ||
| 298 | } | ||
| 299 | |||
| 300 | /****************************************************************************/ | ||
| 301 | /** | ||
| 302 | * @brief Get sticky bits | ||
| 303 | * | ||
| 304 | * @return Sticky bit options of type chipcHw_REG_STICKY_XXXXXX | ||
| 305 | * | ||
| 306 | */ | ||
| 307 | /****************************************************************************/ | ||
| 308 | static inline uint32_t chipcHw_getStickyBits(void) | ||
| 309 | { | ||
| 310 | return pChipcHw->Sticky; | ||
| 311 | } | ||
| 312 | |||
| 313 | /****************************************************************************/ | ||
| 314 | /** | ||
| 315 | * @brief Set sticky bits | ||
| 316 | * | ||
| 317 | * @return void | ||
| 318 | * | ||
| 319 | * @note use chipcHw_REG_STICKY_XXXXXX | ||
| 320 | */ | ||
| 321 | /****************************************************************************/ | ||
| 322 | static inline void chipcHw_setStickyBits(uint32_t mask) | ||
| 323 | { | ||
| 324 | uint32_t bits = 0; | ||
| 325 | |||
| 326 | REG_LOCAL_IRQ_SAVE; | ||
| 327 | if (mask & chipcHw_REG_STICKY_POR_BROM) { | ||
| 328 | bits |= chipcHw_REG_STICKY_POR_BROM; | ||
| 329 | } else { | ||
| 330 | uint32_t sticky; | ||
| 331 | sticky = pChipcHw->Sticky; | ||
| 332 | |||
| 333 | if ((mask & chipcHw_REG_STICKY_BOOT_DONE) | ||
| 334 | && (sticky & chipcHw_REG_STICKY_BOOT_DONE) == 0) { | ||
| 335 | bits |= chipcHw_REG_STICKY_BOOT_DONE; | ||
| 336 | } | ||
| 337 | if ((mask & chipcHw_REG_STICKY_GENERAL_1) | ||
| 338 | && (sticky & chipcHw_REG_STICKY_GENERAL_1) == 0) { | ||
| 339 | bits |= chipcHw_REG_STICKY_GENERAL_1; | ||
| 340 | } | ||
| 341 | if ((mask & chipcHw_REG_STICKY_GENERAL_2) | ||
| 342 | && (sticky & chipcHw_REG_STICKY_GENERAL_2) == 0) { | ||
| 343 | bits |= chipcHw_REG_STICKY_GENERAL_2; | ||
| 344 | } | ||
| 345 | if ((mask & chipcHw_REG_STICKY_GENERAL_3) | ||
| 346 | && (sticky & chipcHw_REG_STICKY_GENERAL_3) == 0) { | ||
| 347 | bits |= chipcHw_REG_STICKY_GENERAL_3; | ||
| 348 | } | ||
| 349 | if ((mask & chipcHw_REG_STICKY_GENERAL_4) | ||
| 350 | && (sticky & chipcHw_REG_STICKY_GENERAL_4) == 0) { | ||
| 351 | bits |= chipcHw_REG_STICKY_GENERAL_4; | ||
| 352 | } | ||
| 353 | if ((mask & chipcHw_REG_STICKY_GENERAL_5) | ||
| 354 | && (sticky & chipcHw_REG_STICKY_GENERAL_5) == 0) { | ||
| 355 | bits |= chipcHw_REG_STICKY_GENERAL_5; | ||
| 356 | } | ||
| 357 | } | ||
| 358 | pChipcHw->Sticky = bits; | ||
| 359 | REG_LOCAL_IRQ_RESTORE; | ||
| 360 | } | ||
| 361 | |||
| 362 | /****************************************************************************/ | ||
| 363 | /** | ||
| 364 | * @brief Clear sticky bits | ||
| 365 | * | ||
| 366 | * @return void | ||
| 367 | * | ||
| 368 | * @note use chipcHw_REG_STICKY_XXXXXX | ||
| 369 | */ | ||
| 370 | /****************************************************************************/ | ||
| 371 | static inline void chipcHw_clearStickyBits(uint32_t mask) | ||
| 372 | { | ||
| 373 | uint32_t bits = 0; | ||
| 374 | |||
| 375 | REG_LOCAL_IRQ_SAVE; | ||
| 376 | if (mask & | ||
| 377 | (chipcHw_REG_STICKY_BOOT_DONE | chipcHw_REG_STICKY_GENERAL_1 | | ||
| 378 | chipcHw_REG_STICKY_GENERAL_2 | chipcHw_REG_STICKY_GENERAL_3 | | ||
| 379 | chipcHw_REG_STICKY_GENERAL_4 | chipcHw_REG_STICKY_GENERAL_5)) { | ||
| 380 | uint32_t sticky = pChipcHw->Sticky; | ||
| 381 | |||
| 382 | if ((mask & chipcHw_REG_STICKY_BOOT_DONE) | ||
| 383 | && (sticky & chipcHw_REG_STICKY_BOOT_DONE)) { | ||
| 384 | bits = chipcHw_REG_STICKY_BOOT_DONE; | ||
| 385 | mask &= ~chipcHw_REG_STICKY_BOOT_DONE; | ||
| 386 | } | ||
| 387 | if ((mask & chipcHw_REG_STICKY_GENERAL_1) | ||
| 388 | && (sticky & chipcHw_REG_STICKY_GENERAL_1)) { | ||
| 389 | bits |= chipcHw_REG_STICKY_GENERAL_1; | ||
| 390 | mask &= ~chipcHw_REG_STICKY_GENERAL_1; | ||
| 391 | } | ||
| 392 | if ((mask & chipcHw_REG_STICKY_GENERAL_2) | ||
| 393 | && (sticky & chipcHw_REG_STICKY_GENERAL_2)) { | ||
| 394 | bits |= chipcHw_REG_STICKY_GENERAL_2; | ||
| 395 | mask &= ~chipcHw_REG_STICKY_GENERAL_2; | ||
| 396 | } | ||
| 397 | if ((mask & chipcHw_REG_STICKY_GENERAL_3) | ||
| 398 | && (sticky & chipcHw_REG_STICKY_GENERAL_3)) { | ||
| 399 | bits |= chipcHw_REG_STICKY_GENERAL_3; | ||
| 400 | mask &= ~chipcHw_REG_STICKY_GENERAL_3; | ||
| 401 | } | ||
| 402 | if ((mask & chipcHw_REG_STICKY_GENERAL_4) | ||
| 403 | && (sticky & chipcHw_REG_STICKY_GENERAL_4)) { | ||
| 404 | bits |= chipcHw_REG_STICKY_GENERAL_4; | ||
| 405 | mask &= ~chipcHw_REG_STICKY_GENERAL_4; | ||
| 406 | } | ||
| 407 | if ((mask & chipcHw_REG_STICKY_GENERAL_5) | ||
| 408 | && (sticky & chipcHw_REG_STICKY_GENERAL_5)) { | ||
| 409 | bits |= chipcHw_REG_STICKY_GENERAL_5; | ||
| 410 | mask &= ~chipcHw_REG_STICKY_GENERAL_5; | ||
| 411 | } | ||
| 412 | } | ||
| 413 | pChipcHw->Sticky = bits | mask; | ||
| 414 | REG_LOCAL_IRQ_RESTORE; | ||
| 415 | } | ||
| 416 | |||
| 417 | /****************************************************************************/ | ||
| 418 | /** | ||
| 419 | * @brief Get software strap value | ||
| 420 | * | ||
| 421 | * Retrieves software strap value | ||
| 422 | * | ||
| 423 | * @return Software strap value | ||
| 424 | * | ||
| 425 | */ | ||
| 426 | /****************************************************************************/ | ||
| 427 | static inline uint32_t chipcHw_getSoftStraps(void) | ||
| 428 | { | ||
| 429 | return pChipcHw->SoftStraps; | ||
| 430 | } | ||
| 431 | |||
| 432 | /****************************************************************************/ | ||
| 433 | /** | ||
| 434 | * @brief Set software override strap options | ||
| 435 | * | ||
| 436 | * set software override strap options | ||
| 437 | * | ||
| 438 | * @return nothing | ||
| 439 | * | ||
| 440 | */ | ||
| 441 | /****************************************************************************/ | ||
| 442 | static inline void chipcHw_setSoftStraps(uint32_t strapOptions) | ||
| 443 | { | ||
| 444 | reg32_write(&pChipcHw->SoftStraps, strapOptions); | ||
| 445 | } | ||
| 446 | |||
| 447 | /****************************************************************************/ | ||
| 448 | /** | ||
| 449 | * @brief Get Pin Strap Options | ||
| 450 | * | ||
| 451 | * This function returns the raw boot strap options | ||
| 452 | * | ||
| 453 | * @return strap options | ||
| 454 | * | ||
| 455 | */ | ||
| 456 | /****************************************************************************/ | ||
| 457 | static inline uint32_t chipcHw_getPinStraps(void) | ||
| 458 | { | ||
| 459 | return pChipcHw->PinStraps; | ||
| 460 | } | ||
| 461 | |||
| 462 | /****************************************************************************/ | ||
| 463 | /** | ||
| 464 | * @brief Get Valid Strap Options | ||
| 465 | * | ||
| 466 | * This function returns the valid raw boot strap options | ||
| 467 | * | ||
| 468 | * @return strap options | ||
| 469 | * | ||
| 470 | */ | ||
| 471 | /****************************************************************************/ | ||
| 472 | static inline uint32_t chipcHw_getValidStraps(void) | ||
| 473 | { | ||
| 474 | uint32_t softStraps; | ||
| 475 | |||
| 476 | /* | ||
| 477 | ** Always return the SoftStraps - bootROM calls chipcHw_initValidStraps | ||
| 478 | ** which copies HW straps to soft straps if there is no override | ||
| 479 | */ | ||
| 480 | softStraps = chipcHw_getSoftStraps(); | ||
| 481 | |||
| 482 | return softStraps; | ||
| 483 | } | ||
| 484 | |||
| 485 | /****************************************************************************/ | ||
| 486 | /** | ||
| 487 | * @brief Initialize valid pin strap options | ||
| 488 | * | ||
| 489 | * Retrieves valid pin strap options by copying HW strap options to soft register | ||
| 490 | * (if chipcHw_STRAPS_SOFT_OVERRIDE not set) | ||
| 491 | * | ||
| 492 | * @return nothing | ||
| 493 | * | ||
| 494 | */ | ||
| 495 | /****************************************************************************/ | ||
| 496 | static inline void chipcHw_initValidStraps(void) | ||
| 497 | { | ||
| 498 | uint32_t softStraps; | ||
| 499 | |||
| 500 | REG_LOCAL_IRQ_SAVE; | ||
| 501 | softStraps = chipcHw_getSoftStraps(); | ||
| 502 | |||
| 503 | if ((softStraps & chipcHw_STRAPS_SOFT_OVERRIDE) == 0) { | ||
| 504 | /* Copy HW straps to software straps */ | ||
| 505 | chipcHw_setSoftStraps(chipcHw_getPinStraps()); | ||
| 506 | } | ||
| 507 | REG_LOCAL_IRQ_RESTORE; | ||
| 508 | } | ||
| 509 | |||
| 510 | /****************************************************************************/ | ||
| 511 | /** | ||
| 512 | * @brief Get boot device | ||
| 513 | * | ||
| 514 | * This function returns the device type used in booting the system | ||
| 515 | * | ||
| 516 | * @return Boot device of type chipcHw_BOOT_DEVICE | ||
| 517 | * | ||
| 518 | */ | ||
| 519 | /****************************************************************************/ | ||
| 520 | static inline chipcHw_BOOT_DEVICE_e chipcHw_getBootDevice(void) | ||
| 521 | { | ||
| 522 | return chipcHw_getValidStraps() & chipcHw_STRAPS_BOOT_DEVICE_MASK; | ||
| 523 | } | ||
| 524 | |||
| 525 | /****************************************************************************/ | ||
| 526 | /** | ||
| 527 | * @brief Get boot mode | ||
| 528 | * | ||
| 529 | * This function returns the way the system was booted | ||
| 530 | * | ||
| 531 | * @return Boot mode of type chipcHw_BOOT_MODE | ||
| 532 | * | ||
| 533 | */ | ||
| 534 | /****************************************************************************/ | ||
| 535 | static inline chipcHw_BOOT_MODE_e chipcHw_getBootMode(void) | ||
| 536 | { | ||
| 537 | return chipcHw_getValidStraps() & chipcHw_STRAPS_BOOT_MODE_MASK; | ||
| 538 | } | ||
| 539 | |||
| 540 | /****************************************************************************/ | ||
| 541 | /** | ||
| 542 | * @brief Get NAND flash page size | ||
| 543 | * | ||
| 544 | * This function returns the NAND device page size | ||
| 545 | * | ||
| 546 | * @return Boot NAND device page size | ||
| 547 | * | ||
| 548 | */ | ||
| 549 | /****************************************************************************/ | ||
| 550 | static inline chipcHw_NAND_PAGESIZE_e chipcHw_getNandPageSize(void) | ||
| 551 | { | ||
| 552 | return chipcHw_getValidStraps() & chipcHw_STRAPS_NAND_PAGESIZE_MASK; | ||
| 553 | } | ||
| 554 | |||
| 555 | /****************************************************************************/ | ||
| 556 | /** | ||
| 557 | * @brief Get NAND flash address cycle configuration | ||
| 558 | * | ||
| 559 | * This function returns the NAND flash address cycle configuration | ||
| 560 | * | ||
| 561 | * @return 0 = Do not extra address cycle, 1 = Add extra cycle | ||
| 562 | * | ||
| 563 | */ | ||
| 564 | /****************************************************************************/ | ||
| 565 | static inline int chipcHw_getNandExtraCycle(void) | ||
| 566 | { | ||
| 567 | if (chipcHw_getValidStraps() & chipcHw_STRAPS_NAND_EXTRA_CYCLE) { | ||
| 568 | return 1; | ||
| 569 | } else { | ||
| 570 | return 0; | ||
| 571 | } | ||
| 572 | } | ||
| 573 | |||
| 574 | /****************************************************************************/ | ||
| 575 | /** | ||
| 576 | * @brief Activates PIF interface | ||
| 577 | * | ||
| 578 | * This function activates PIF interface by taking control of LCD pins | ||
| 579 | * | ||
| 580 | * @note | ||
| 581 | * When activated, LCD pins will be defined as follows for PIF operation | ||
| 582 | * | ||
| 583 | * CLD[17:0] = pif_data[17:0] | ||
| 584 | * CLD[23:18] = pif_address[5:0] | ||
| 585 | * CLPOWER = pif_wr_str | ||
| 586 | * CLCP = pif_rd_str | ||
| 587 | * CLAC = pif_hat1 | ||
| 588 | * CLFP = pif_hrdy1 | ||
| 589 | * CLLP = pif_hat2 | ||
| 590 | * GPIO[42] = pif_hrdy2 | ||
| 591 | * | ||
| 592 | * In PIF mode, "pif_hrdy2" overrides other shared function for GPIO[42] pin | ||
| 593 | * | ||
| 594 | */ | ||
| 595 | /****************************************************************************/ | ||
| 596 | static inline void chipcHw_activatePifInterface(void) | ||
| 597 | { | ||
| 598 | reg32_write(&pChipcHw->LcdPifMode, chipcHw_REG_PIF_PIN_ENABLE); | ||
| 599 | } | ||
| 600 | |||
| 601 | /****************************************************************************/ | ||
| 602 | /** | ||
| 603 | * @brief Activates LCD interface | ||
| 604 | * | ||
| 605 | * This function activates LCD interface | ||
| 606 | * | ||
| 607 | * @note | ||
| 608 | * When activated, LCD pins will be defined as follows | ||
| 609 | * | ||
| 610 | * CLD[17:0] = LCD data | ||
| 611 | * CLD[23:18] = LCD data | ||
| 612 | * CLPOWER = LCD power | ||
| 613 | * CLCP = | ||
| 614 | * CLAC = LCD ack | ||
| 615 | * CLFP = | ||
| 616 | * CLLP = | ||
| 617 | */ | ||
| 618 | /****************************************************************************/ | ||
| 619 | static inline void chipcHw_activateLcdInterface(void) | ||
| 620 | { | ||
| 621 | reg32_write(&pChipcHw->LcdPifMode, chipcHw_REG_LCD_PIN_ENABLE); | ||
| 622 | } | ||
| 623 | |||
| 624 | /****************************************************************************/ | ||
| 625 | /** | ||
| 626 | * @brief Deactivates PIF/LCD interface | ||
| 627 | * | ||
| 628 | * This function deactivates PIF/LCD interface | ||
| 629 | * | ||
| 630 | * @note | ||
| 631 | * When deactivated LCD pins will be in rti-stated | ||
| 632 | * | ||
| 633 | */ | ||
| 634 | /****************************************************************************/ | ||
| 635 | static inline void chipcHw_deactivatePifLcdInterface(void) | ||
| 636 | { | ||
| 637 | reg32_write(&pChipcHw->LcdPifMode, 0); | ||
| 638 | } | ||
| 639 | |||
| 640 | /****************************************************************************/ | ||
| 641 | /** | ||
| 642 | * @brief Select GE2 | ||
| 643 | * | ||
| 644 | * This function select GE2 as the graphic engine | ||
| 645 | * | ||
| 646 | */ | ||
| 647 | /****************************************************************************/ | ||
| 648 | static inline void chipcHw_selectGE2(void) | ||
| 649 | { | ||
| 650 | reg32_modify_and(&pChipcHw->MiscCtrl, ~chipcHw_REG_MISC_CTRL_GE_SEL); | ||
| 651 | } | ||
| 652 | |||
| 653 | /****************************************************************************/ | ||
| 654 | /** | ||
| 655 | * @brief Select GE3 | ||
| 656 | * | ||
| 657 | * This function select GE3 as the graphic engine | ||
| 658 | * | ||
| 659 | */ | ||
| 660 | /****************************************************************************/ | ||
| 661 | static inline void chipcHw_selectGE3(void) | ||
| 662 | { | ||
| 663 | reg32_modify_or(&pChipcHw->MiscCtrl, chipcHw_REG_MISC_CTRL_GE_SEL); | ||
| 664 | } | ||
| 665 | |||
| 666 | /****************************************************************************/ | ||
| 667 | /** | ||
| 668 | * @brief Get to know the configuration of GPIO pin | ||
| 669 | * | ||
| 670 | */ | ||
| 671 | /****************************************************************************/ | ||
| 672 | static inline chipcHw_GPIO_FUNCTION_e chipcHw_getGpioPinFunction(int pin) | ||
| 673 | { | ||
| 674 | return (*((uint32_t *) chipcHw_REG_GPIO_MUX(pin)) & | ||
| 675 | (chipcHw_REG_GPIO_MUX_MASK << | ||
| 676 | chipcHw_REG_GPIO_MUX_POSITION(pin))) >> | ||
| 677 | chipcHw_REG_GPIO_MUX_POSITION(pin); | ||
| 678 | } | ||
| 679 | |||
| 680 | /****************************************************************************/ | ||
| 681 | /** | ||
| 682 | * @brief Configure GPIO pin function | ||
| 683 | * | ||
| 684 | */ | ||
| 685 | /****************************************************************************/ | ||
| 686 | static inline void chipcHw_setGpioPinFunction(int pin, | ||
| 687 | chipcHw_GPIO_FUNCTION_e func) | ||
| 688 | { | ||
| 689 | REG_LOCAL_IRQ_SAVE; | ||
| 690 | *((uint32_t *) chipcHw_REG_GPIO_MUX(pin)) &= | ||
| 691 | ~(chipcHw_REG_GPIO_MUX_MASK << chipcHw_REG_GPIO_MUX_POSITION(pin)); | ||
| 692 | *((uint32_t *) chipcHw_REG_GPIO_MUX(pin)) |= | ||
| 693 | func << chipcHw_REG_GPIO_MUX_POSITION(pin); | ||
| 694 | REG_LOCAL_IRQ_RESTORE; | ||
| 695 | } | ||
| 696 | |||
| 697 | /****************************************************************************/ | ||
| 698 | /** | ||
| 699 | * @brief Set Pin slew rate | ||
| 700 | * | ||
| 701 | * This function sets the slew of individual pin | ||
| 702 | * | ||
| 703 | */ | ||
| 704 | /****************************************************************************/ | ||
| 705 | static inline void chipcHw_setPinSlewRate(uint32_t pin, | ||
| 706 | chipcHw_PIN_SLEW_RATE_e slewRate) | ||
| 707 | { | ||
| 708 | REG_LOCAL_IRQ_SAVE; | ||
| 709 | *((uint32_t *) chipcHw_REG_SLEW_RATE(pin)) &= | ||
| 710 | ~(chipcHw_REG_SLEW_RATE_MASK << | ||
| 711 | chipcHw_REG_SLEW_RATE_POSITION(pin)); | ||
| 712 | *((uint32_t *) chipcHw_REG_SLEW_RATE(pin)) |= | ||
| 713 | (uint32_t) slewRate << chipcHw_REG_SLEW_RATE_POSITION(pin); | ||
| 714 | REG_LOCAL_IRQ_RESTORE; | ||
| 715 | } | ||
| 716 | |||
| 717 | /****************************************************************************/ | ||
| 718 | /** | ||
| 719 | * @brief Set Pin output drive current | ||
| 720 | * | ||
| 721 | * This function sets output drive current of individual pin | ||
| 722 | * | ||
| 723 | * Note: Avoid the use of the word 'current' since linux headers define this | ||
| 724 | * to be the current task. | ||
| 725 | */ | ||
| 726 | /****************************************************************************/ | ||
| 727 | static inline void chipcHw_setPinOutputCurrent(uint32_t pin, | ||
| 728 | chipcHw_PIN_CURRENT_STRENGTH_e | ||
| 729 | curr) | ||
| 730 | { | ||
| 731 | REG_LOCAL_IRQ_SAVE; | ||
| 732 | *((uint32_t *) chipcHw_REG_CURRENT(pin)) &= | ||
| 733 | ~(chipcHw_REG_CURRENT_MASK << chipcHw_REG_CURRENT_POSITION(pin)); | ||
| 734 | *((uint32_t *) chipcHw_REG_CURRENT(pin)) |= | ||
| 735 | (uint32_t) curr << chipcHw_REG_CURRENT_POSITION(pin); | ||
| 736 | REG_LOCAL_IRQ_RESTORE; | ||
| 737 | } | ||
| 738 | |||
| 739 | /****************************************************************************/ | ||
| 740 | /** | ||
| 741 | * @brief Set Pin pullup register | ||
| 742 | * | ||
| 743 | * This function sets pullup register of individual pin | ||
| 744 | * | ||
| 745 | */ | ||
| 746 | /****************************************************************************/ | ||
| 747 | static inline void chipcHw_setPinPullup(uint32_t pin, chipcHw_PIN_PULL_e pullup) | ||
| 748 | { | ||
| 749 | REG_LOCAL_IRQ_SAVE; | ||
| 750 | *((uint32_t *) chipcHw_REG_PULLUP(pin)) &= | ||
| 751 | ~(chipcHw_REG_PULLUP_MASK << chipcHw_REG_PULLUP_POSITION(pin)); | ||
| 752 | *((uint32_t *) chipcHw_REG_PULLUP(pin)) |= | ||
| 753 | (uint32_t) pullup << chipcHw_REG_PULLUP_POSITION(pin); | ||
| 754 | REG_LOCAL_IRQ_RESTORE; | ||
| 755 | } | ||
| 756 | |||
| 757 | /****************************************************************************/ | ||
| 758 | /** | ||
| 759 | * @brief Set Pin input type | ||
| 760 | * | ||
| 761 | * This function sets input type of individual pin | ||
| 762 | * | ||
| 763 | */ | ||
| 764 | /****************************************************************************/ | ||
| 765 | static inline void chipcHw_setPinInputType(uint32_t pin, | ||
| 766 | chipcHw_PIN_INPUTTYPE_e inputType) | ||
| 767 | { | ||
| 768 | REG_LOCAL_IRQ_SAVE; | ||
| 769 | *((uint32_t *) chipcHw_REG_INPUTTYPE(pin)) &= | ||
| 770 | ~(chipcHw_REG_INPUTTYPE_MASK << | ||
| 771 | chipcHw_REG_INPUTTYPE_POSITION(pin)); | ||
| 772 | *((uint32_t *) chipcHw_REG_INPUTTYPE(pin)) |= | ||
| 773 | (uint32_t) inputType << chipcHw_REG_INPUTTYPE_POSITION(pin); | ||
| 774 | REG_LOCAL_IRQ_RESTORE; | ||
| 775 | } | ||
| 776 | |||
| 777 | /****************************************************************************/ | ||
| 778 | /** | ||
| 779 | * @brief Power up the USB PHY | ||
| 780 | * | ||
| 781 | * This function powers up the USB PHY | ||
| 782 | * | ||
| 783 | */ | ||
| 784 | /****************************************************************************/ | ||
| 785 | static inline void chipcHw_powerUpUsbPhy(void) | ||
| 786 | { | ||
| 787 | reg32_modify_and(&pChipcHw->MiscCtrl, | ||
| 788 | chipcHw_REG_MISC_CTRL_USB_POWERON); | ||
| 789 | } | ||
| 790 | |||
| 791 | /****************************************************************************/ | ||
| 792 | /** | ||
| 793 | * @brief Power down the USB PHY | ||
| 794 | * | ||
| 795 | * This function powers down the USB PHY | ||
| 796 | * | ||
| 797 | */ | ||
| 798 | /****************************************************************************/ | ||
| 799 | static inline void chipcHw_powerDownUsbPhy(void) | ||
| 800 | { | ||
| 801 | reg32_modify_or(&pChipcHw->MiscCtrl, | ||
| 802 | chipcHw_REG_MISC_CTRL_USB_POWEROFF); | ||
| 803 | } | ||
| 804 | |||
| 805 | /****************************************************************************/ | ||
| 806 | /** | ||
| 807 | * @brief Set the 2nd USB as host | ||
| 808 | * | ||
| 809 | * This function sets the 2nd USB as host | ||
| 810 | * | ||
| 811 | */ | ||
| 812 | /****************************************************************************/ | ||
| 813 | static inline void chipcHw_setUsbHost(void) | ||
| 814 | { | ||
| 815 | reg32_modify_or(&pChipcHw->MiscCtrl, | ||
| 816 | chipcHw_REG_MISC_CTRL_USB_MODE_HOST); | ||
| 817 | } | ||
| 818 | |||
| 819 | /****************************************************************************/ | ||
| 820 | /** | ||
| 821 | * @brief Set the 2nd USB as device | ||
| 822 | * | ||
| 823 | * This function sets the 2nd USB as device | ||
| 824 | * | ||
| 825 | */ | ||
| 826 | /****************************************************************************/ | ||
| 827 | static inline void chipcHw_setUsbDevice(void) | ||
| 828 | { | ||
| 829 | reg32_modify_and(&pChipcHw->MiscCtrl, | ||
| 830 | chipcHw_REG_MISC_CTRL_USB_MODE_DEVICE); | ||
| 831 | } | ||
| 832 | |||
| 833 | /****************************************************************************/ | ||
| 834 | /** | ||
| 835 | * @brief Lower layer function to enable/disable a clock of a certain device | ||
| 836 | * | ||
| 837 | * This function enables/disables a core clock | ||
| 838 | * | ||
| 839 | */ | ||
| 840 | /****************************************************************************/ | ||
| 841 | static inline void chipcHw_setClock(chipcHw_CLOCK_e clock, | ||
| 842 | chipcHw_OPTYPE_e type, int mode) | ||
| 843 | { | ||
| 844 | volatile uint32_t *pPLLReg = (uint32_t *) 0x0; | ||
| 845 | volatile uint32_t *pClockCtrl = (uint32_t *) 0x0; | ||
| 846 | |||
| 847 | switch (clock) { | ||
| 848 | case chipcHw_CLOCK_DDR: | ||
| 849 | pPLLReg = &pChipcHw->DDRClock; | ||
| 850 | break; | ||
| 851 | case chipcHw_CLOCK_ARM: | ||
| 852 | pPLLReg = &pChipcHw->ARMClock; | ||
| 853 | break; | ||
| 854 | case chipcHw_CLOCK_ESW: | ||
| 855 | pPLLReg = &pChipcHw->ESWClock; | ||
| 856 | break; | ||
| 857 | case chipcHw_CLOCK_VPM: | ||
| 858 | pPLLReg = &pChipcHw->VPMClock; | ||
| 859 | break; | ||
| 860 | case chipcHw_CLOCK_ESW125: | ||
| 861 | pPLLReg = &pChipcHw->ESW125Clock; | ||
| 862 | break; | ||
| 863 | case chipcHw_CLOCK_UART: | ||
| 864 | pPLLReg = &pChipcHw->UARTClock; | ||
| 865 | break; | ||
| 866 | case chipcHw_CLOCK_SDIO0: | ||
| 867 | pPLLReg = &pChipcHw->SDIO0Clock; | ||
| 868 | break; | ||
| 869 | case chipcHw_CLOCK_SDIO1: | ||
| 870 | pPLLReg = &pChipcHw->SDIO1Clock; | ||
| 871 | break; | ||
| 872 | case chipcHw_CLOCK_SPI: | ||
| 873 | pPLLReg = &pChipcHw->SPIClock; | ||
| 874 | break; | ||
| 875 | case chipcHw_CLOCK_ETM: | ||
| 876 | pPLLReg = &pChipcHw->ETMClock; | ||
| 877 | break; | ||
| 878 | case chipcHw_CLOCK_USB: | ||
| 879 | pPLLReg = &pChipcHw->USBClock; | ||
| 880 | if (type == chipcHw_OPTYPE_OUTPUT) { | ||
| 881 | if (mode) { | ||
| 882 | reg32_modify_and(pPLLReg, | ||
| 883 | ~chipcHw_REG_PLL_CLOCK_POWER_DOWN); | ||
| 884 | } else { | ||
| 885 | reg32_modify_or(pPLLReg, | ||
| 886 | chipcHw_REG_PLL_CLOCK_POWER_DOWN); | ||
| 887 | } | ||
| 888 | } | ||
| 889 | break; | ||
| 890 | case chipcHw_CLOCK_LCD: | ||
| 891 | pPLLReg = &pChipcHw->LCDClock; | ||
| 892 | if (type == chipcHw_OPTYPE_OUTPUT) { | ||
| 893 | if (mode) { | ||
| 894 | reg32_modify_and(pPLLReg, | ||
| 895 | ~chipcHw_REG_PLL_CLOCK_POWER_DOWN); | ||
| 896 | } else { | ||
| 897 | reg32_modify_or(pPLLReg, | ||
| 898 | chipcHw_REG_PLL_CLOCK_POWER_DOWN); | ||
| 899 | } | ||
| 900 | } | ||
| 901 | break; | ||
| 902 | case chipcHw_CLOCK_APM: | ||
| 903 | pPLLReg = &pChipcHw->APMClock; | ||
| 904 | if (type == chipcHw_OPTYPE_OUTPUT) { | ||
| 905 | if (mode) { | ||
| 906 | reg32_modify_and(pPLLReg, | ||
| 907 | ~chipcHw_REG_PLL_CLOCK_POWER_DOWN); | ||
| 908 | } else { | ||
| 909 | reg32_modify_or(pPLLReg, | ||
| 910 | chipcHw_REG_PLL_CLOCK_POWER_DOWN); | ||
| 911 | } | ||
| 912 | } | ||
| 913 | break; | ||
| 914 | case chipcHw_CLOCK_BUS: | ||
| 915 | pClockCtrl = &pChipcHw->ACLKClock; | ||
| 916 | break; | ||
| 917 | case chipcHw_CLOCK_OTP: | ||
| 918 | pClockCtrl = &pChipcHw->OTPClock; | ||
| 919 | break; | ||
| 920 | case chipcHw_CLOCK_I2C: | ||
| 921 | pClockCtrl = &pChipcHw->I2CClock; | ||
| 922 | break; | ||
| 923 | case chipcHw_CLOCK_I2S0: | ||
| 924 | pClockCtrl = &pChipcHw->I2S0Clock; | ||
| 925 | break; | ||
| 926 | case chipcHw_CLOCK_RTBUS: | ||
| 927 | pClockCtrl = &pChipcHw->RTBUSClock; | ||
| 928 | break; | ||
| 929 | case chipcHw_CLOCK_APM100: | ||
| 930 | pClockCtrl = &pChipcHw->APM100Clock; | ||
| 931 | break; | ||
| 932 | case chipcHw_CLOCK_TSC: | ||
| 933 | pClockCtrl = &pChipcHw->TSCClock; | ||
| 934 | break; | ||
| 935 | case chipcHw_CLOCK_LED: | ||
| 936 | pClockCtrl = &pChipcHw->LEDClock; | ||
| 937 | break; | ||
| 938 | case chipcHw_CLOCK_I2S1: | ||
| 939 | pClockCtrl = &pChipcHw->I2S1Clock; | ||
| 940 | break; | ||
| 941 | } | ||
| 942 | |||
| 943 | if (pPLLReg) { | ||
| 944 | switch (type) { | ||
| 945 | case chipcHw_OPTYPE_OUTPUT: | ||
| 946 | /* PLL clock output enable/disable */ | ||
| 947 | if (mode) { | ||
| 948 | if (clock == chipcHw_CLOCK_DDR) { | ||
| 949 | /* DDR clock enable is inverted */ | ||
| 950 | reg32_modify_and(pPLLReg, | ||
| 951 | ~chipcHw_REG_PLL_CLOCK_OUTPUT_ENABLE); | ||
| 952 | } else { | ||
| 953 | reg32_modify_or(pPLLReg, | ||
| 954 | chipcHw_REG_PLL_CLOCK_OUTPUT_ENABLE); | ||
| 955 | } | ||
| 956 | } else { | ||
| 957 | if (clock == chipcHw_CLOCK_DDR) { | ||
| 958 | /* DDR clock disable is inverted */ | ||
| 959 | reg32_modify_or(pPLLReg, | ||
| 960 | chipcHw_REG_PLL_CLOCK_OUTPUT_ENABLE); | ||
| 961 | } else { | ||
| 962 | reg32_modify_and(pPLLReg, | ||
| 963 | ~chipcHw_REG_PLL_CLOCK_OUTPUT_ENABLE); | ||
| 964 | } | ||
| 965 | } | ||
| 966 | break; | ||
| 967 | case chipcHw_OPTYPE_BYPASS: | ||
| 968 | /* PLL clock bypass enable/disable */ | ||
| 969 | if (mode) { | ||
| 970 | reg32_modify_or(pPLLReg, | ||
| 971 | chipcHw_REG_PLL_CLOCK_BYPASS_SELECT); | ||
| 972 | } else { | ||
| 973 | reg32_modify_and(pPLLReg, | ||
| 974 | ~chipcHw_REG_PLL_CLOCK_BYPASS_SELECT); | ||
| 975 | } | ||
| 976 | break; | ||
| 977 | } | ||
| 978 | } else if (pClockCtrl) { | ||
| 979 | switch (type) { | ||
| 980 | case chipcHw_OPTYPE_OUTPUT: | ||
| 981 | if (mode) { | ||
| 982 | reg32_modify_or(pClockCtrl, | ||
| 983 | chipcHw_REG_DIV_CLOCK_OUTPUT_ENABLE); | ||
| 984 | } else { | ||
| 985 | reg32_modify_and(pClockCtrl, | ||
| 986 | ~chipcHw_REG_DIV_CLOCK_OUTPUT_ENABLE); | ||
| 987 | } | ||
| 988 | break; | ||
| 989 | case chipcHw_OPTYPE_BYPASS: | ||
| 990 | if (mode) { | ||
| 991 | reg32_modify_or(pClockCtrl, | ||
| 992 | chipcHw_REG_DIV_CLOCK_BYPASS_SELECT); | ||
| 993 | } else { | ||
| 994 | reg32_modify_and(pClockCtrl, | ||
| 995 | ~chipcHw_REG_DIV_CLOCK_BYPASS_SELECT); | ||
| 996 | } | ||
| 997 | break; | ||
| 998 | } | ||
| 999 | } | ||
| 1000 | } | ||
| 1001 | |||
| 1002 | /****************************************************************************/ | ||
| 1003 | /** | ||
| 1004 | * @brief Disables a core clock of a certain device | ||
| 1005 | * | ||
| 1006 | * This function disables a core clock | ||
| 1007 | * | ||
| 1008 | * @note no change in power consumption | ||
| 1009 | */ | ||
| 1010 | /****************************************************************************/ | ||
| 1011 | static inline void chipcHw_setClockDisable(chipcHw_CLOCK_e clock) | ||
| 1012 | { | ||
| 1013 | |||
| 1014 | /* Disable output of the clock */ | ||
| 1015 | chipcHw_setClock(clock, chipcHw_OPTYPE_OUTPUT, 0); | ||
| 1016 | } | ||
| 1017 | |||
| 1018 | /****************************************************************************/ | ||
| 1019 | /** | ||
| 1020 | * @brief Enable a core clock of a certain device | ||
| 1021 | * | ||
| 1022 | * This function enables a core clock | ||
| 1023 | * | ||
| 1024 | * @note no change in power consumption | ||
| 1025 | */ | ||
| 1026 | /****************************************************************************/ | ||
| 1027 | static inline void chipcHw_setClockEnable(chipcHw_CLOCK_e clock) | ||
| 1028 | { | ||
| 1029 | |||
| 1030 | /* Enable output of the clock */ | ||
| 1031 | chipcHw_setClock(clock, chipcHw_OPTYPE_OUTPUT, 1); | ||
| 1032 | } | ||
| 1033 | |||
| 1034 | /****************************************************************************/ | ||
| 1035 | /** | ||
| 1036 | * @brief Enables bypass clock of a certain device | ||
| 1037 | * | ||
| 1038 | * This function enables bypass clock | ||
| 1039 | * | ||
| 1040 | * @note Doesnot affect the bus interface clock | ||
| 1041 | */ | ||
| 1042 | /****************************************************************************/ | ||
| 1043 | static inline void chipcHw_bypassClockEnable(chipcHw_CLOCK_e clock) | ||
| 1044 | { | ||
| 1045 | /* Enable bypass clock */ | ||
| 1046 | chipcHw_setClock(clock, chipcHw_OPTYPE_BYPASS, 1); | ||
| 1047 | } | ||
| 1048 | |||
| 1049 | /****************************************************************************/ | ||
| 1050 | /** | ||
| 1051 | * @brief Disabled bypass clock of a certain device | ||
| 1052 | * | ||
| 1053 | * This function disables bypass clock | ||
| 1054 | * | ||
| 1055 | * @note Doesnot affect the bus interface clock | ||
| 1056 | */ | ||
| 1057 | /****************************************************************************/ | ||
| 1058 | static inline void chipcHw_bypassClockDisable(chipcHw_CLOCK_e clock) | ||
| 1059 | { | ||
| 1060 | /* Disable bypass clock */ | ||
| 1061 | chipcHw_setClock(clock, chipcHw_OPTYPE_BYPASS, 0); | ||
| 1062 | |||
| 1063 | } | ||
| 1064 | |||
| 1065 | /****************************************************************************/ | ||
| 1066 | /** @brief Checks if software strap is enabled | ||
| 1067 | * | ||
| 1068 | * @return 1 : When enable | ||
| 1069 | * 0 : When disable | ||
| 1070 | */ | ||
| 1071 | /****************************************************************************/ | ||
| 1072 | static inline int chipcHw_isSoftwareStrapsEnable(void) | ||
| 1073 | { | ||
| 1074 | return pChipcHw->SoftStraps & 0x00000001; | ||
| 1075 | } | ||
| 1076 | |||
| 1077 | /****************************************************************************/ | ||
| 1078 | /** @brief Enable software strap | ||
| 1079 | */ | ||
| 1080 | /****************************************************************************/ | ||
| 1081 | static inline void chipcHw_softwareStrapsEnable(void) | ||
| 1082 | { | ||
| 1083 | reg32_modify_or(&pChipcHw->SoftStraps, 0x00000001); | ||
| 1084 | } | ||
| 1085 | |||
| 1086 | /****************************************************************************/ | ||
| 1087 | /** @brief Disable software strap | ||
| 1088 | */ | ||
| 1089 | /****************************************************************************/ | ||
| 1090 | static inline void chipcHw_softwareStrapsDisable(void) | ||
| 1091 | { | ||
| 1092 | reg32_modify_and(&pChipcHw->SoftStraps, (~0x00000001)); | ||
| 1093 | } | ||
| 1094 | |||
| 1095 | /****************************************************************************/ | ||
| 1096 | /** @brief PLL test enable | ||
| 1097 | */ | ||
| 1098 | /****************************************************************************/ | ||
| 1099 | static inline void chipcHw_pllTestEnable(void) | ||
| 1100 | { | ||
| 1101 | reg32_modify_or(&pChipcHw->PLLConfig, | ||
| 1102 | chipcHw_REG_PLL_CONFIG_TEST_ENABLE); | ||
| 1103 | } | ||
| 1104 | |||
| 1105 | /****************************************************************************/ | ||
| 1106 | /** @brief PLL2 test enable | ||
| 1107 | */ | ||
| 1108 | /****************************************************************************/ | ||
| 1109 | static inline void chipcHw_pll2TestEnable(void) | ||
| 1110 | { | ||
| 1111 | reg32_modify_or(&pChipcHw->PLLConfig2, | ||
| 1112 | chipcHw_REG_PLL_CONFIG_TEST_ENABLE); | ||
| 1113 | } | ||
| 1114 | |||
| 1115 | /****************************************************************************/ | ||
| 1116 | /** @brief PLL test disable | ||
| 1117 | */ | ||
| 1118 | /****************************************************************************/ | ||
| 1119 | static inline void chipcHw_pllTestDisable(void) | ||
| 1120 | { | ||
| 1121 | reg32_modify_and(&pChipcHw->PLLConfig, | ||
| 1122 | ~chipcHw_REG_PLL_CONFIG_TEST_ENABLE); | ||
| 1123 | } | ||
| 1124 | |||
| 1125 | /****************************************************************************/ | ||
| 1126 | /** @brief PLL2 test disable | ||
| 1127 | */ | ||
| 1128 | /****************************************************************************/ | ||
| 1129 | static inline void chipcHw_pll2TestDisable(void) | ||
| 1130 | { | ||
| 1131 | reg32_modify_and(&pChipcHw->PLLConfig2, | ||
| 1132 | ~chipcHw_REG_PLL_CONFIG_TEST_ENABLE); | ||
| 1133 | } | ||
| 1134 | |||
| 1135 | /****************************************************************************/ | ||
| 1136 | /** @brief Get PLL test status | ||
| 1137 | */ | ||
| 1138 | /****************************************************************************/ | ||
| 1139 | static inline int chipcHw_isPllTestEnable(void) | ||
| 1140 | { | ||
| 1141 | return pChipcHw->PLLConfig & chipcHw_REG_PLL_CONFIG_TEST_ENABLE; | ||
| 1142 | } | ||
| 1143 | |||
| 1144 | /****************************************************************************/ | ||
| 1145 | /** @brief Get PLL2 test status | ||
| 1146 | */ | ||
| 1147 | /****************************************************************************/ | ||
| 1148 | static inline int chipcHw_isPll2TestEnable(void) | ||
| 1149 | { | ||
| 1150 | return pChipcHw->PLLConfig2 & chipcHw_REG_PLL_CONFIG_TEST_ENABLE; | ||
| 1151 | } | ||
| 1152 | |||
| 1153 | /****************************************************************************/ | ||
| 1154 | /** @brief PLL test select | ||
| 1155 | */ | ||
| 1156 | /****************************************************************************/ | ||
| 1157 | static inline void chipcHw_pllTestSelect(uint32_t val) | ||
| 1158 | { | ||
| 1159 | REG_LOCAL_IRQ_SAVE; | ||
| 1160 | pChipcHw->PLLConfig &= ~chipcHw_REG_PLL_CONFIG_TEST_SELECT_MASK; | ||
| 1161 | pChipcHw->PLLConfig |= | ||
| 1162 | (val) << chipcHw_REG_PLL_CONFIG_TEST_SELECT_SHIFT; | ||
| 1163 | REG_LOCAL_IRQ_RESTORE; | ||
| 1164 | } | ||
| 1165 | |||
| 1166 | /****************************************************************************/ | ||
| 1167 | /** @brief PLL2 test select | ||
| 1168 | */ | ||
| 1169 | /****************************************************************************/ | ||
| 1170 | static inline void chipcHw_pll2TestSelect(uint32_t val) | ||
| 1171 | { | ||
| 1172 | |||
| 1173 | REG_LOCAL_IRQ_SAVE; | ||
| 1174 | pChipcHw->PLLConfig2 &= ~chipcHw_REG_PLL_CONFIG_TEST_SELECT_MASK; | ||
| 1175 | pChipcHw->PLLConfig2 |= | ||
| 1176 | (val) << chipcHw_REG_PLL_CONFIG_TEST_SELECT_SHIFT; | ||
| 1177 | REG_LOCAL_IRQ_RESTORE; | ||
| 1178 | } | ||
| 1179 | |||
| 1180 | /****************************************************************************/ | ||
| 1181 | /** @brief Get PLL test selected option | ||
| 1182 | */ | ||
| 1183 | /****************************************************************************/ | ||
| 1184 | static inline uint8_t chipcHw_getPllTestSelected(void) | ||
| 1185 | { | ||
| 1186 | return (uint8_t) ((pChipcHw-> | ||
| 1187 | PLLConfig & chipcHw_REG_PLL_CONFIG_TEST_SELECT_MASK) | ||
| 1188 | >> chipcHw_REG_PLL_CONFIG_TEST_SELECT_SHIFT); | ||
| 1189 | } | ||
| 1190 | |||
| 1191 | /****************************************************************************/ | ||
| 1192 | /** @brief Get PLL2 test selected option | ||
| 1193 | */ | ||
| 1194 | /****************************************************************************/ | ||
| 1195 | static inline uint8_t chipcHw_getPll2TestSelected(void) | ||
| 1196 | { | ||
| 1197 | return (uint8_t) ((pChipcHw-> | ||
| 1198 | PLLConfig2 & chipcHw_REG_PLL_CONFIG_TEST_SELECT_MASK) | ||
| 1199 | >> chipcHw_REG_PLL_CONFIG_TEST_SELECT_SHIFT); | ||
| 1200 | } | ||
| 1201 | |||
| 1202 | /****************************************************************************/ | ||
| 1203 | /** | ||
| 1204 | * @brief Disable the PLL1 | ||
| 1205 | * | ||
| 1206 | */ | ||
| 1207 | /****************************************************************************/ | ||
| 1208 | static inline void chipcHw_pll1Disable(void) | ||
| 1209 | { | ||
| 1210 | REG_LOCAL_IRQ_SAVE; | ||
| 1211 | pChipcHw->PLLConfig |= chipcHw_REG_PLL_CONFIG_POWER_DOWN; | ||
| 1212 | REG_LOCAL_IRQ_RESTORE; | ||
| 1213 | } | ||
| 1214 | |||
| 1215 | /****************************************************************************/ | ||
| 1216 | /** | ||
| 1217 | * @brief Disable the PLL2 | ||
| 1218 | * | ||
| 1219 | */ | ||
| 1220 | /****************************************************************************/ | ||
| 1221 | static inline void chipcHw_pll2Disable(void) | ||
| 1222 | { | ||
| 1223 | REG_LOCAL_IRQ_SAVE; | ||
| 1224 | pChipcHw->PLLConfig2 |= chipcHw_REG_PLL_CONFIG_POWER_DOWN; | ||
| 1225 | REG_LOCAL_IRQ_RESTORE; | ||
| 1226 | } | ||
| 1227 | |||
| 1228 | /****************************************************************************/ | ||
| 1229 | /** | ||
| 1230 | * @brief Enables DDR SW phase alignment interrupt | ||
| 1231 | */ | ||
| 1232 | /****************************************************************************/ | ||
| 1233 | static inline void chipcHw_ddrPhaseAlignInterruptEnable(void) | ||
| 1234 | { | ||
| 1235 | REG_LOCAL_IRQ_SAVE; | ||
| 1236 | pChipcHw->Spare1 |= chipcHw_REG_SPARE1_DDR_PHASE_INTR_ENABLE; | ||
| 1237 | REG_LOCAL_IRQ_RESTORE; | ||
| 1238 | } | ||
| 1239 | |||
| 1240 | /****************************************************************************/ | ||
| 1241 | /** | ||
| 1242 | * @brief Disables DDR SW phase alignment interrupt | ||
| 1243 | */ | ||
| 1244 | /****************************************************************************/ | ||
| 1245 | static inline void chipcHw_ddrPhaseAlignInterruptDisable(void) | ||
| 1246 | { | ||
| 1247 | REG_LOCAL_IRQ_SAVE; | ||
| 1248 | pChipcHw->Spare1 &= ~chipcHw_REG_SPARE1_DDR_PHASE_INTR_ENABLE; | ||
| 1249 | REG_LOCAL_IRQ_RESTORE; | ||
| 1250 | } | ||
| 1251 | |||
| 1252 | /****************************************************************************/ | ||
| 1253 | /** | ||
| 1254 | * @brief Set VPM SW phase alignment interrupt mode | ||
| 1255 | * | ||
| 1256 | * This function sets VPM phase alignment interrupt | ||
| 1257 | */ | ||
| 1258 | /****************************************************************************/ | ||
| 1259 | static inline void | ||
| 1260 | chipcHw_vpmPhaseAlignInterruptMode(chipcHw_VPM_HW_PHASE_INTR_e mode) | ||
| 1261 | { | ||
| 1262 | REG_LOCAL_IRQ_SAVE; | ||
| 1263 | if (mode == chipcHw_VPM_HW_PHASE_INTR_DISABLE) { | ||
| 1264 | pChipcHw->Spare1 &= ~chipcHw_REG_SPARE1_VPM_PHASE_INTR_ENABLE; | ||
| 1265 | } else { | ||
| 1266 | pChipcHw->Spare1 |= chipcHw_REG_SPARE1_VPM_PHASE_INTR_ENABLE; | ||
| 1267 | } | ||
| 1268 | pChipcHw->VPMPhaseCtrl2 = | ||
| 1269 | (pChipcHw-> | ||
| 1270 | VPMPhaseCtrl2 & ~(chipcHw_REG_VPM_INTR_SELECT_MASK << | ||
| 1271 | chipcHw_REG_VPM_INTR_SELECT_SHIFT)) | mode; | ||
| 1272 | REG_LOCAL_IRQ_RESTORE; | ||
| 1273 | } | ||
| 1274 | |||
| 1275 | /****************************************************************************/ | ||
| 1276 | /** | ||
| 1277 | * @brief Enable DDR phase alignment in software | ||
| 1278 | * | ||
| 1279 | */ | ||
| 1280 | /****************************************************************************/ | ||
| 1281 | static inline void chipcHw_ddrSwPhaseAlignEnable(void) | ||
| 1282 | { | ||
| 1283 | REG_LOCAL_IRQ_SAVE; | ||
| 1284 | pChipcHw->DDRPhaseCtrl1 |= chipcHw_REG_DDR_SW_PHASE_CTRL_ENABLE; | ||
| 1285 | REG_LOCAL_IRQ_RESTORE; | ||
| 1286 | } | ||
| 1287 | |||
| 1288 | /****************************************************************************/ | ||
| 1289 | /** | ||
| 1290 | * @brief Disable DDR phase alignment in software | ||
| 1291 | * | ||
| 1292 | */ | ||
| 1293 | /****************************************************************************/ | ||
| 1294 | static inline void chipcHw_ddrSwPhaseAlignDisable(void) | ||
| 1295 | { | ||
| 1296 | REG_LOCAL_IRQ_SAVE; | ||
| 1297 | pChipcHw->DDRPhaseCtrl1 &= ~chipcHw_REG_DDR_SW_PHASE_CTRL_ENABLE; | ||
| 1298 | REG_LOCAL_IRQ_RESTORE; | ||
| 1299 | } | ||
| 1300 | |||
| 1301 | /****************************************************************************/ | ||
| 1302 | /** | ||
| 1303 | * @brief Enable DDR phase alignment in hardware | ||
| 1304 | * | ||
| 1305 | */ | ||
| 1306 | /****************************************************************************/ | ||
| 1307 | static inline void chipcHw_ddrHwPhaseAlignEnable(void) | ||
| 1308 | { | ||
| 1309 | REG_LOCAL_IRQ_SAVE; | ||
| 1310 | pChipcHw->DDRPhaseCtrl1 |= chipcHw_REG_DDR_HW_PHASE_CTRL_ENABLE; | ||
| 1311 | REG_LOCAL_IRQ_RESTORE; | ||
| 1312 | } | ||
| 1313 | |||
| 1314 | /****************************************************************************/ | ||
| 1315 | /** | ||
| 1316 | * @brief Disable DDR phase alignment in hardware | ||
| 1317 | * | ||
| 1318 | */ | ||
| 1319 | /****************************************************************************/ | ||
| 1320 | static inline void chipcHw_ddrHwPhaseAlignDisable(void) | ||
| 1321 | { | ||
| 1322 | REG_LOCAL_IRQ_SAVE; | ||
| 1323 | pChipcHw->DDRPhaseCtrl1 &= ~chipcHw_REG_DDR_HW_PHASE_CTRL_ENABLE; | ||
| 1324 | REG_LOCAL_IRQ_RESTORE; | ||
| 1325 | } | ||
| 1326 | |||
| 1327 | /****************************************************************************/ | ||
| 1328 | /** | ||
| 1329 | * @brief Enable VPM phase alignment in software | ||
| 1330 | * | ||
| 1331 | */ | ||
| 1332 | /****************************************************************************/ | ||
| 1333 | static inline void chipcHw_vpmSwPhaseAlignEnable(void) | ||
| 1334 | { | ||
| 1335 | REG_LOCAL_IRQ_SAVE; | ||
| 1336 | pChipcHw->VPMPhaseCtrl1 |= chipcHw_REG_VPM_SW_PHASE_CTRL_ENABLE; | ||
| 1337 | REG_LOCAL_IRQ_RESTORE; | ||
| 1338 | } | ||
| 1339 | |||
| 1340 | /****************************************************************************/ | ||
| 1341 | /** | ||
| 1342 | * @brief Disable VPM phase alignment in software | ||
| 1343 | * | ||
| 1344 | */ | ||
| 1345 | /****************************************************************************/ | ||
| 1346 | static inline void chipcHw_vpmSwPhaseAlignDisable(void) | ||
| 1347 | { | ||
| 1348 | REG_LOCAL_IRQ_SAVE; | ||
| 1349 | pChipcHw->VPMPhaseCtrl1 &= ~chipcHw_REG_VPM_SW_PHASE_CTRL_ENABLE; | ||
| 1350 | REG_LOCAL_IRQ_RESTORE; | ||
| 1351 | } | ||
| 1352 | |||
| 1353 | /****************************************************************************/ | ||
| 1354 | /** | ||
| 1355 | * @brief Enable VPM phase alignment in hardware | ||
| 1356 | * | ||
| 1357 | */ | ||
| 1358 | /****************************************************************************/ | ||
| 1359 | static inline void chipcHw_vpmHwPhaseAlignEnable(void) | ||
| 1360 | { | ||
| 1361 | REG_LOCAL_IRQ_SAVE; | ||
| 1362 | pChipcHw->VPMPhaseCtrl1 |= chipcHw_REG_VPM_HW_PHASE_CTRL_ENABLE; | ||
| 1363 | REG_LOCAL_IRQ_RESTORE; | ||
| 1364 | } | ||
| 1365 | |||
| 1366 | /****************************************************************************/ | ||
| 1367 | /** | ||
| 1368 | * @brief Disable VPM phase alignment in hardware | ||
| 1369 | * | ||
| 1370 | */ | ||
| 1371 | /****************************************************************************/ | ||
| 1372 | static inline void chipcHw_vpmHwPhaseAlignDisable(void) | ||
| 1373 | { | ||
| 1374 | REG_LOCAL_IRQ_SAVE; | ||
| 1375 | pChipcHw->VPMPhaseCtrl1 &= ~chipcHw_REG_VPM_HW_PHASE_CTRL_ENABLE; | ||
| 1376 | REG_LOCAL_IRQ_RESTORE; | ||
| 1377 | } | ||
| 1378 | |||
| 1379 | /****************************************************************************/ | ||
| 1380 | /** | ||
| 1381 | * @brief Set DDR phase alignment margin in hardware | ||
| 1382 | * | ||
| 1383 | */ | ||
| 1384 | /****************************************************************************/ | ||
| 1385 | static inline void | ||
| 1386 | chipcHw_setDdrHwPhaseAlignMargin(chipcHw_DDR_HW_PHASE_MARGIN_e margin) | ||
| 1387 | { | ||
| 1388 | uint32_t ge = 0; | ||
| 1389 | uint32_t le = 0; | ||
| 1390 | |||
| 1391 | switch (margin) { | ||
| 1392 | case chipcHw_DDR_HW_PHASE_MARGIN_STRICT: | ||
| 1393 | ge = 0x0F; | ||
| 1394 | le = 0x0F; | ||
| 1395 | break; | ||
| 1396 | case chipcHw_DDR_HW_PHASE_MARGIN_MEDIUM: | ||
| 1397 | ge = 0x03; | ||
| 1398 | le = 0x3F; | ||
| 1399 | break; | ||
| 1400 | case chipcHw_DDR_HW_PHASE_MARGIN_WIDE: | ||
| 1401 | ge = 0x01; | ||
| 1402 | le = 0x7F; | ||
| 1403 | break; | ||
| 1404 | } | ||
| 1405 | |||
| 1406 | { | ||
| 1407 | REG_LOCAL_IRQ_SAVE; | ||
| 1408 | |||
| 1409 | pChipcHw->DDRPhaseCtrl1 &= | ||
| 1410 | ~((chipcHw_REG_DDR_PHASE_VALUE_GE_MASK << | ||
| 1411 | chipcHw_REG_DDR_PHASE_VALUE_GE_SHIFT) | ||
| 1412 | || (chipcHw_REG_DDR_PHASE_VALUE_LE_MASK << | ||
| 1413 | chipcHw_REG_DDR_PHASE_VALUE_LE_SHIFT)); | ||
| 1414 | |||
| 1415 | pChipcHw->DDRPhaseCtrl1 |= | ||
| 1416 | ((ge << chipcHw_REG_DDR_PHASE_VALUE_GE_SHIFT) | ||
| 1417 | || (le << chipcHw_REG_DDR_PHASE_VALUE_LE_SHIFT)); | ||
| 1418 | |||
| 1419 | REG_LOCAL_IRQ_RESTORE; | ||
| 1420 | } | ||
| 1421 | } | ||
| 1422 | |||
| 1423 | /****************************************************************************/ | ||
| 1424 | /** | ||
| 1425 | * @brief Set VPM phase alignment margin in hardware | ||
| 1426 | * | ||
| 1427 | */ | ||
| 1428 | /****************************************************************************/ | ||
| 1429 | static inline void | ||
| 1430 | chipcHw_setVpmHwPhaseAlignMargin(chipcHw_VPM_HW_PHASE_MARGIN_e margin) | ||
| 1431 | { | ||
| 1432 | uint32_t ge = 0; | ||
| 1433 | uint32_t le = 0; | ||
| 1434 | |||
| 1435 | switch (margin) { | ||
| 1436 | case chipcHw_VPM_HW_PHASE_MARGIN_STRICT: | ||
| 1437 | ge = 0x0F; | ||
| 1438 | le = 0x0F; | ||
| 1439 | break; | ||
| 1440 | case chipcHw_VPM_HW_PHASE_MARGIN_MEDIUM: | ||
| 1441 | ge = 0x03; | ||
| 1442 | le = 0x3F; | ||
| 1443 | break; | ||
| 1444 | case chipcHw_VPM_HW_PHASE_MARGIN_WIDE: | ||
| 1445 | ge = 0x01; | ||
| 1446 | le = 0x7F; | ||
| 1447 | break; | ||
| 1448 | } | ||
| 1449 | |||
| 1450 | { | ||
| 1451 | REG_LOCAL_IRQ_SAVE; | ||
| 1452 | |||
| 1453 | pChipcHw->VPMPhaseCtrl1 &= | ||
| 1454 | ~((chipcHw_REG_VPM_PHASE_VALUE_GE_MASK << | ||
| 1455 | chipcHw_REG_VPM_PHASE_VALUE_GE_SHIFT) | ||
| 1456 | || (chipcHw_REG_VPM_PHASE_VALUE_LE_MASK << | ||
| 1457 | chipcHw_REG_VPM_PHASE_VALUE_LE_SHIFT)); | ||
| 1458 | |||
| 1459 | pChipcHw->VPMPhaseCtrl1 |= | ||
| 1460 | ((ge << chipcHw_REG_VPM_PHASE_VALUE_GE_SHIFT) | ||
| 1461 | || (le << chipcHw_REG_VPM_PHASE_VALUE_LE_SHIFT)); | ||
| 1462 | |||
| 1463 | REG_LOCAL_IRQ_RESTORE; | ||
| 1464 | } | ||
| 1465 | } | ||
| 1466 | |||
| 1467 | /****************************************************************************/ | ||
| 1468 | /** | ||
| 1469 | * @brief Checks DDR phase aligned status done by HW | ||
| 1470 | * | ||
| 1471 | * @return 1: When aligned | ||
| 1472 | * 0: When not aligned | ||
| 1473 | */ | ||
| 1474 | /****************************************************************************/ | ||
| 1475 | static inline uint32_t chipcHw_isDdrHwPhaseAligned(void) | ||
| 1476 | { | ||
| 1477 | return (pChipcHw-> | ||
| 1478 | PhaseAlignStatus & chipcHw_REG_DDR_PHASE_ALIGNED) ? 1 : 0; | ||
| 1479 | } | ||
| 1480 | |||
| 1481 | /****************************************************************************/ | ||
| 1482 | /** | ||
| 1483 | * @brief Checks VPM phase aligned status done by HW | ||
| 1484 | * | ||
| 1485 | * @return 1: When aligned | ||
| 1486 | * 0: When not aligned | ||
| 1487 | */ | ||
| 1488 | /****************************************************************************/ | ||
| 1489 | static inline uint32_t chipcHw_isVpmHwPhaseAligned(void) | ||
| 1490 | { | ||
| 1491 | return (pChipcHw-> | ||
| 1492 | PhaseAlignStatus & chipcHw_REG_VPM_PHASE_ALIGNED) ? 1 : 0; | ||
| 1493 | } | ||
| 1494 | |||
| 1495 | /****************************************************************************/ | ||
| 1496 | /** | ||
| 1497 | * @brief Get DDR phase aligned status done by HW | ||
| 1498 | * | ||
| 1499 | */ | ||
| 1500 | /****************************************************************************/ | ||
| 1501 | static inline uint32_t chipcHw_getDdrHwPhaseAlignStatus(void) | ||
| 1502 | { | ||
| 1503 | return (pChipcHw-> | ||
| 1504 | PhaseAlignStatus & chipcHw_REG_DDR_PHASE_STATUS_MASK) >> | ||
| 1505 | chipcHw_REG_DDR_PHASE_STATUS_SHIFT; | ||
| 1506 | } | ||
| 1507 | |||
| 1508 | /****************************************************************************/ | ||
| 1509 | /** | ||
| 1510 | * @brief Get VPM phase aligned status done by HW | ||
| 1511 | * | ||
| 1512 | */ | ||
| 1513 | /****************************************************************************/ | ||
| 1514 | static inline uint32_t chipcHw_getVpmHwPhaseAlignStatus(void) | ||
| 1515 | { | ||
| 1516 | return (pChipcHw-> | ||
| 1517 | PhaseAlignStatus & chipcHw_REG_VPM_PHASE_STATUS_MASK) >> | ||
| 1518 | chipcHw_REG_VPM_PHASE_STATUS_SHIFT; | ||
| 1519 | } | ||
| 1520 | |||
| 1521 | /****************************************************************************/ | ||
| 1522 | /** | ||
| 1523 | * @brief Get DDR phase control value | ||
| 1524 | * | ||
| 1525 | */ | ||
| 1526 | /****************************************************************************/ | ||
| 1527 | static inline uint32_t chipcHw_getDdrPhaseControl(void) | ||
| 1528 | { | ||
| 1529 | return (pChipcHw-> | ||
| 1530 | PhaseAlignStatus & chipcHw_REG_DDR_PHASE_CTRL_MASK) >> | ||
| 1531 | chipcHw_REG_DDR_PHASE_CTRL_SHIFT; | ||
| 1532 | } | ||
| 1533 | |||
| 1534 | /****************************************************************************/ | ||
| 1535 | /** | ||
| 1536 | * @brief Get VPM phase control value | ||
| 1537 | * | ||
| 1538 | */ | ||
| 1539 | /****************************************************************************/ | ||
| 1540 | static inline uint32_t chipcHw_getVpmPhaseControl(void) | ||
| 1541 | { | ||
| 1542 | return (pChipcHw-> | ||
| 1543 | PhaseAlignStatus & chipcHw_REG_VPM_PHASE_CTRL_MASK) >> | ||
| 1544 | chipcHw_REG_VPM_PHASE_CTRL_SHIFT; | ||
| 1545 | } | ||
| 1546 | |||
| 1547 | /****************************************************************************/ | ||
| 1548 | /** | ||
| 1549 | * @brief DDR phase alignment timeout count | ||
| 1550 | * | ||
| 1551 | * @note If HW fails to perform the phase alignment, it will trigger | ||
| 1552 | * a DDR phase alignment timeout interrupt. | ||
| 1553 | */ | ||
| 1554 | /****************************************************************************/ | ||
| 1555 | static inline void chipcHw_ddrHwPhaseAlignTimeout(uint32_t busCycle) | ||
| 1556 | { | ||
| 1557 | REG_LOCAL_IRQ_SAVE; | ||
| 1558 | pChipcHw->DDRPhaseCtrl2 &= | ||
| 1559 | ~(chipcHw_REG_DDR_PHASE_TIMEOUT_COUNT_MASK << | ||
| 1560 | chipcHw_REG_DDR_PHASE_TIMEOUT_COUNT_SHIFT); | ||
| 1561 | pChipcHw->DDRPhaseCtrl2 |= | ||
| 1562 | (busCycle & chipcHw_REG_DDR_PHASE_TIMEOUT_COUNT_MASK) << | ||
| 1563 | chipcHw_REG_DDR_PHASE_TIMEOUT_COUNT_SHIFT; | ||
| 1564 | REG_LOCAL_IRQ_RESTORE; | ||
| 1565 | } | ||
| 1566 | |||
| 1567 | /****************************************************************************/ | ||
| 1568 | /** | ||
| 1569 | * @brief VPM phase alignment timeout count | ||
| 1570 | * | ||
| 1571 | * @note If HW fails to perform the phase alignment, it will trigger | ||
| 1572 | * a VPM phase alignment timeout interrupt. | ||
| 1573 | */ | ||
| 1574 | /****************************************************************************/ | ||
| 1575 | static inline void chipcHw_vpmHwPhaseAlignTimeout(uint32_t busCycle) | ||
| 1576 | { | ||
| 1577 | REG_LOCAL_IRQ_SAVE; | ||
| 1578 | pChipcHw->VPMPhaseCtrl2 &= | ||
| 1579 | ~(chipcHw_REG_VPM_PHASE_TIMEOUT_COUNT_MASK << | ||
| 1580 | chipcHw_REG_VPM_PHASE_TIMEOUT_COUNT_SHIFT); | ||
| 1581 | pChipcHw->VPMPhaseCtrl2 |= | ||
| 1582 | (busCycle & chipcHw_REG_VPM_PHASE_TIMEOUT_COUNT_MASK) << | ||
| 1583 | chipcHw_REG_VPM_PHASE_TIMEOUT_COUNT_SHIFT; | ||
| 1584 | REG_LOCAL_IRQ_RESTORE; | ||
| 1585 | } | ||
| 1586 | |||
| 1587 | /****************************************************************************/ | ||
| 1588 | /** | ||
| 1589 | * @brief Clear DDR phase alignment timeout interrupt | ||
| 1590 | * | ||
| 1591 | */ | ||
| 1592 | /****************************************************************************/ | ||
| 1593 | static inline void chipcHw_ddrHwPhaseAlignTimeoutInterruptClear(void) | ||
| 1594 | { | ||
| 1595 | REG_LOCAL_IRQ_SAVE; | ||
| 1596 | /* Clear timeout interrupt service bit */ | ||
| 1597 | pChipcHw->DDRPhaseCtrl2 |= chipcHw_REG_DDR_INTR_SERVICED; | ||
| 1598 | pChipcHw->DDRPhaseCtrl2 &= ~chipcHw_REG_DDR_INTR_SERVICED; | ||
| 1599 | REG_LOCAL_IRQ_RESTORE; | ||
| 1600 | } | ||
| 1601 | |||
| 1602 | /****************************************************************************/ | ||
| 1603 | /** | ||
| 1604 | * @brief Clear VPM phase alignment timeout interrupt | ||
| 1605 | * | ||
| 1606 | */ | ||
| 1607 | /****************************************************************************/ | ||
| 1608 | static inline void chipcHw_vpmHwPhaseAlignTimeoutInterruptClear(void) | ||
| 1609 | { | ||
| 1610 | REG_LOCAL_IRQ_SAVE; | ||
| 1611 | /* Clear timeout interrupt service bit */ | ||
| 1612 | pChipcHw->VPMPhaseCtrl2 |= chipcHw_REG_VPM_INTR_SERVICED; | ||
| 1613 | pChipcHw->VPMPhaseCtrl2 &= ~chipcHw_REG_VPM_INTR_SERVICED; | ||
| 1614 | REG_LOCAL_IRQ_RESTORE; | ||
| 1615 | } | ||
| 1616 | |||
| 1617 | /****************************************************************************/ | ||
| 1618 | /** | ||
| 1619 | * @brief DDR phase alignment timeout interrupt enable | ||
| 1620 | * | ||
| 1621 | */ | ||
| 1622 | /****************************************************************************/ | ||
| 1623 | static inline void chipcHw_ddrHwPhaseAlignTimeoutInterruptEnable(void) | ||
| 1624 | { | ||
| 1625 | REG_LOCAL_IRQ_SAVE; | ||
| 1626 | chipcHw_ddrHwPhaseAlignTimeoutInterruptClear(); /* Recommended */ | ||
| 1627 | /* Enable timeout interrupt */ | ||
| 1628 | pChipcHw->DDRPhaseCtrl2 |= chipcHw_REG_DDR_TIMEOUT_INTR_ENABLE; | ||
| 1629 | REG_LOCAL_IRQ_RESTORE; | ||
| 1630 | } | ||
| 1631 | |||
| 1632 | /****************************************************************************/ | ||
| 1633 | /** | ||
| 1634 | * @brief VPM phase alignment timeout interrupt enable | ||
| 1635 | * | ||
| 1636 | */ | ||
| 1637 | /****************************************************************************/ | ||
| 1638 | static inline void chipcHw_vpmHwPhaseAlignTimeoutInterruptEnable(void) | ||
| 1639 | { | ||
| 1640 | REG_LOCAL_IRQ_SAVE; | ||
| 1641 | chipcHw_vpmHwPhaseAlignTimeoutInterruptClear(); /* Recommended */ | ||
| 1642 | /* Enable timeout interrupt */ | ||
| 1643 | pChipcHw->VPMPhaseCtrl2 |= chipcHw_REG_VPM_TIMEOUT_INTR_ENABLE; | ||
| 1644 | REG_LOCAL_IRQ_RESTORE; | ||
| 1645 | } | ||
| 1646 | |||
| 1647 | /****************************************************************************/ | ||
| 1648 | /** | ||
| 1649 | * @brief DDR phase alignment timeout interrupt disable | ||
| 1650 | * | ||
| 1651 | */ | ||
| 1652 | /****************************************************************************/ | ||
| 1653 | static inline void chipcHw_ddrHwPhaseAlignTimeoutInterruptDisable(void) | ||
| 1654 | { | ||
| 1655 | REG_LOCAL_IRQ_SAVE; | ||
| 1656 | pChipcHw->DDRPhaseCtrl2 &= ~chipcHw_REG_DDR_TIMEOUT_INTR_ENABLE; | ||
| 1657 | REG_LOCAL_IRQ_RESTORE; | ||
| 1658 | } | ||
| 1659 | |||
| 1660 | /****************************************************************************/ | ||
| 1661 | /** | ||
| 1662 | * @brief VPM phase alignment timeout interrupt disable | ||
| 1663 | * | ||
| 1664 | */ | ||
| 1665 | /****************************************************************************/ | ||
| 1666 | static inline void chipcHw_vpmHwPhaseAlignTimeoutInterruptDisable(void) | ||
| 1667 | { | ||
| 1668 | REG_LOCAL_IRQ_SAVE; | ||
| 1669 | pChipcHw->VPMPhaseCtrl2 &= ~chipcHw_REG_VPM_TIMEOUT_INTR_ENABLE; | ||
| 1670 | REG_LOCAL_IRQ_RESTORE; | ||
| 1671 | } | ||
| 1672 | |||
| 1673 | #endif /* CHIPC_INLINE_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/chipcHw_reg.h b/arch/arm/mach-bcmring/include/mach/csp/chipcHw_reg.h new file mode 100644 index 00000000000..b162448f613 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/chipcHw_reg.h | |||
| @@ -0,0 +1,530 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file chipcHw_reg.h | ||
| 18 | * | ||
| 19 | * @brief Definitions for low level chip control registers | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | #ifndef CHIPCHW_REG_H | ||
| 24 | #define CHIPCHW_REG_H | ||
| 25 | |||
| 26 | #include <mach/csp/mm_io.h> | ||
| 27 | #include <csp/reg.h> | ||
| 28 | #include <mach/csp/ddrcReg.h> | ||
| 29 | |||
| 30 | #define chipcHw_BASE_ADDRESS MM_IO_BASE_CHIPC | ||
| 31 | |||
| 32 | typedef struct { | ||
| 33 | uint32_t ChipId; /* Chip ID */ | ||
| 34 | uint32_t DDRClock; /* PLL1 Channel 1 for DDR clock */ | ||
| 35 | uint32_t ARMClock; /* PLL1 Channel 2 for ARM clock */ | ||
| 36 | uint32_t ESWClock; /* PLL1 Channel 3 for ESW system clock */ | ||
| 37 | uint32_t VPMClock; /* PLL1 Channel 4 for VPM clock */ | ||
| 38 | uint32_t ESW125Clock; /* PLL1 Channel 5 for ESW 125MHz clock */ | ||
| 39 | uint32_t UARTClock; /* PLL1 Channel 6 for UART clock */ | ||
| 40 | uint32_t SDIO0Clock; /* PLL1 Channel 7 for SDIO 0 clock */ | ||
| 41 | uint32_t SDIO1Clock; /* PLL1 Channel 8 for SDIO 1 clock */ | ||
| 42 | uint32_t SPIClock; /* PLL1 Channel 9 for SPI master Clock */ | ||
| 43 | uint32_t ETMClock; /* PLL1 Channel 10 for ARM ETM Clock */ | ||
| 44 | |||
| 45 | uint32_t ACLKClock; /* ACLK Clock (Divider) */ | ||
| 46 | uint32_t OTPClock; /* OTP Clock (Divider) */ | ||
| 47 | uint32_t I2CClock; /* I2C Clock (CK_13m) (Divider) */ | ||
| 48 | uint32_t I2S0Clock; /* I2S0 Clock (Divider) */ | ||
| 49 | uint32_t RTBUSClock; /* RTBUS (DDR PHY Config.) Clock (Divider) */ | ||
| 50 | uint32_t pad1; | ||
| 51 | uint32_t APM100Clock; /* APM 100MHz CLK Clock (Divider) */ | ||
| 52 | uint32_t TSCClock; /* TSC Clock (Divider) */ | ||
| 53 | uint32_t LEDClock; /* LED Clock (Divider) */ | ||
| 54 | |||
| 55 | uint32_t USBClock; /* PLL2 Channel 1 for USB clock */ | ||
| 56 | uint32_t LCDClock; /* PLL2 Channel 2 for LCD clock */ | ||
| 57 | uint32_t APMClock; /* PLL2 Channel 3 for APM 200 MHz clock */ | ||
| 58 | |||
| 59 | uint32_t BusIntfClock; /* Bus interface clock */ | ||
| 60 | |||
| 61 | uint32_t PLLStatus; /* PLL status register (PLL1) */ | ||
| 62 | uint32_t PLLConfig; /* PLL configuration register (PLL1) */ | ||
| 63 | uint32_t PLLPreDivider; /* PLL pre-divider control register (PLL1) */ | ||
| 64 | uint32_t PLLDivider; /* PLL divider control register (PLL1) */ | ||
| 65 | uint32_t PLLControl1; /* PLL analog control register #1 (PLL1) */ | ||
| 66 | uint32_t PLLControl2; /* PLL analog control register #2 (PLL1) */ | ||
| 67 | |||
| 68 | uint32_t I2S1Clock; /* I2S1 Clock */ | ||
| 69 | uint32_t AudioEnable; /* Enable/ disable audio channel */ | ||
| 70 | uint32_t SoftReset1; /* Reset blocks */ | ||
| 71 | uint32_t SoftReset2; /* Reset blocks */ | ||
| 72 | uint32_t Spare1; /* Phase align interrupts */ | ||
| 73 | uint32_t Sticky; /* Sticky bits */ | ||
| 74 | uint32_t MiscCtrl; /* Misc. control */ | ||
| 75 | uint32_t pad3[3]; | ||
| 76 | |||
| 77 | uint32_t PLLStatus2; /* PLL status register (PLL2) */ | ||
| 78 | uint32_t PLLConfig2; /* PLL configuration register (PLL2) */ | ||
| 79 | uint32_t PLLPreDivider2; /* PLL pre-divider control register (PLL2) */ | ||
| 80 | uint32_t PLLDivider2; /* PLL divider control register (PLL2) */ | ||
| 81 | uint32_t PLLControl12; /* PLL analog control register #1 (PLL2) */ | ||
| 82 | uint32_t PLLControl22; /* PLL analog control register #2 (PLL2) */ | ||
| 83 | |||
| 84 | uint32_t DDRPhaseCtrl1; /* DDR Clock Phase Alignment control1 */ | ||
| 85 | uint32_t VPMPhaseCtrl1; /* VPM Clock Phase Alignment control1 */ | ||
| 86 | uint32_t PhaseAlignStatus; /* DDR/VPM Clock Phase Alignment Status */ | ||
| 87 | uint32_t PhaseCtrlStatus; /* DDR/VPM Clock HW DDR/VPM ph_ctrl and load_ch Status */ | ||
| 88 | uint32_t DDRPhaseCtrl2; /* DDR Clock Phase Alignment control2 */ | ||
| 89 | uint32_t VPMPhaseCtrl2; /* VPM Clock Phase Alignment control2 */ | ||
| 90 | uint32_t pad4[9]; | ||
| 91 | |||
| 92 | uint32_t SoftOTP1; /* Software OTP control */ | ||
| 93 | uint32_t SoftOTP2; /* Software OTP control */ | ||
| 94 | uint32_t SoftStraps; /* Software strap */ | ||
| 95 | uint32_t PinStraps; /* Pin Straps */ | ||
| 96 | uint32_t DiffOscCtrl; /* Diff oscillator control */ | ||
| 97 | uint32_t DiagsCtrl; /* Diagnostic control */ | ||
| 98 | uint32_t DiagsOutputCtrl; /* Diagnostic output enable */ | ||
| 99 | uint32_t DiagsReadBackCtrl; /* Diagnostic read back control */ | ||
| 100 | |||
| 101 | uint32_t LcdPifMode; /* LCD/PIF Pin Sharing MUX Mode */ | ||
| 102 | |||
| 103 | uint32_t GpioMux_0_7; /* Pin Sharing MUX0 Control */ | ||
| 104 | uint32_t GpioMux_8_15; /* Pin Sharing MUX1 Control */ | ||
| 105 | uint32_t GpioMux_16_23; /* Pin Sharing MUX2 Control */ | ||
| 106 | uint32_t GpioMux_24_31; /* Pin Sharing MUX3 Control */ | ||
| 107 | uint32_t GpioMux_32_39; /* Pin Sharing MUX4 Control */ | ||
| 108 | uint32_t GpioMux_40_47; /* Pin Sharing MUX5 Control */ | ||
| 109 | uint32_t GpioMux_48_55; /* Pin Sharing MUX6 Control */ | ||
| 110 | uint32_t GpioMux_56_63; /* Pin Sharing MUX7 Control */ | ||
| 111 | |||
| 112 | uint32_t GpioSR_0_7; /* Slew rate for GPIO 0 - 7 */ | ||
| 113 | uint32_t GpioSR_8_15; /* Slew rate for GPIO 8 - 15 */ | ||
| 114 | uint32_t GpioSR_16_23; /* Slew rate for GPIO 16 - 23 */ | ||
| 115 | uint32_t GpioSR_24_31; /* Slew rate for GPIO 24 - 31 */ | ||
| 116 | uint32_t GpioSR_32_39; /* Slew rate for GPIO 32 - 39 */ | ||
| 117 | uint32_t GpioSR_40_47; /* Slew rate for GPIO 40 - 47 */ | ||
| 118 | uint32_t GpioSR_48_55; /* Slew rate for GPIO 48 - 55 */ | ||
| 119 | uint32_t GpioSR_56_63; /* Slew rate for GPIO 56 - 63 */ | ||
| 120 | uint32_t MiscSR_0_7; /* Slew rate for MISC 0 - 7 */ | ||
| 121 | uint32_t MiscSR_8_15; /* Slew rate for MISC 8 - 15 */ | ||
| 122 | |||
| 123 | uint32_t GpioPull_0_15; /* Pull up registers for GPIO 0 - 15 */ | ||
| 124 | uint32_t GpioPull_16_31; /* Pull up registers for GPIO 16 - 31 */ | ||
| 125 | uint32_t GpioPull_32_47; /* Pull up registers for GPIO 32 - 47 */ | ||
| 126 | uint32_t GpioPull_48_63; /* Pull up registers for GPIO 48 - 63 */ | ||
| 127 | uint32_t MiscPull_0_15; /* Pull up registers for MISC 0 - 15 */ | ||
| 128 | |||
| 129 | uint32_t GpioInput_0_31; /* Input type for GPIO 0 - 31 */ | ||
| 130 | uint32_t GpioInput_32_63; /* Input type for GPIO 32 - 63 */ | ||
| 131 | uint32_t MiscInput_0_15; /* Input type for MISC 0 - 16 */ | ||
| 132 | } chipcHw_REG_t; | ||
| 133 | |||
| 134 | #define pChipcHw ((volatile chipcHw_REG_t *) chipcHw_BASE_ADDRESS) | ||
| 135 | #define pChipcPhysical ((volatile chipcHw_REG_t *) MM_ADDR_IO_CHIPC) | ||
| 136 | |||
| 137 | #define chipcHw_REG_CHIPID_BASE_MASK 0xFFFFF000 | ||
| 138 | #define chipcHw_REG_CHIPID_BASE_SHIFT 12 | ||
| 139 | #define chipcHw_REG_CHIPID_REV_MASK 0x00000FFF | ||
| 140 | #define chipcHw_REG_REV_A0 0xA00 | ||
| 141 | #define chipcHw_REG_REV_B0 0x0B0 | ||
| 142 | |||
| 143 | #define chipcHw_REG_PLL_STATUS_CONTROL_ENABLE 0x80000000 /* Allow controlling PLL registers */ | ||
| 144 | #define chipcHw_REG_PLL_STATUS_LOCKED 0x00000001 /* PLL is settled */ | ||
| 145 | #define chipcHw_REG_PLL_CONFIG_D_RESET 0x00000008 /* Digital reset */ | ||
| 146 | #define chipcHw_REG_PLL_CONFIG_A_RESET 0x00000004 /* Analog reset */ | ||
| 147 | #define chipcHw_REG_PLL_CONFIG_BYPASS_ENABLE 0x00000020 /* Bypass enable */ | ||
| 148 | #define chipcHw_REG_PLL_CONFIG_OUTPUT_ENABLE 0x00000010 /* Output enable */ | ||
| 149 | #define chipcHw_REG_PLL_CONFIG_POWER_DOWN 0x00000001 /* Power down */ | ||
| 150 | #define chipcHw_REG_PLL_CONFIG_VCO_SPLIT_FREQ 1600000000 /* 1.6GHz VCO split frequency */ | ||
| 151 | #define chipcHw_REG_PLL_CONFIG_VCO_800_1600 0x00000000 /* VCO range 800-1600 MHz */ | ||
| 152 | #define chipcHw_REG_PLL_CONFIG_VCO_1601_3200 0x00000080 /* VCO range 1601-3200 MHz */ | ||
| 153 | #define chipcHw_REG_PLL_CONFIG_TEST_ENABLE 0x00010000 /* PLL test output enable */ | ||
| 154 | #define chipcHw_REG_PLL_CONFIG_TEST_SELECT_MASK 0x003E0000 /* Mask to set test values */ | ||
| 155 | #define chipcHw_REG_PLL_CONFIG_TEST_SELECT_SHIFT 17 | ||
| 156 | |||
| 157 | #define chipcHw_REG_PLL_CLOCK_PHASE_COMP 0x00800000 /* Phase comparator output */ | ||
| 158 | #define chipcHw_REG_PLL_CLOCK_TO_BUS_RATIO_MASK 0x00300000 /* Clock to bus ratio mask */ | ||
| 159 | #define chipcHw_REG_PLL_CLOCK_TO_BUS_RATIO_SHIFT 20 /* Number of bits to be shifted */ | ||
| 160 | #define chipcHw_REG_PLL_CLOCK_POWER_DOWN 0x00080000 /* PLL channel power down */ | ||
| 161 | #define chipcHw_REG_PLL_CLOCK_SOURCE_GPIO 0x00040000 /* Use GPIO as source */ | ||
| 162 | #define chipcHw_REG_PLL_CLOCK_BYPASS_SELECT 0x00020000 /* Select bypass clock */ | ||
| 163 | #define chipcHw_REG_PLL_CLOCK_OUTPUT_ENABLE 0x00010000 /* Clock gated ON */ | ||
| 164 | #define chipcHw_REG_PLL_CLOCK_PHASE_UPDATE_ENABLE 0x00008000 /* Clock phase update enable */ | ||
| 165 | #define chipcHw_REG_PLL_CLOCK_PHASE_CONTROL_SHIFT 8 /* Number of bits to be shifted */ | ||
| 166 | #define chipcHw_REG_PLL_CLOCK_PHASE_CONTROL_MASK 0x00003F00 /* Phase control mask */ | ||
| 167 | #define chipcHw_REG_PLL_CLOCK_MDIV_MASK 0x000000FF /* Clock post divider mask | ||
| 168 | |||
| 169 | 00000000 = divide-by-256 | ||
| 170 | 00000001 = divide-by-1 | ||
| 171 | 00000010 = divide-by-2 | ||
| 172 | 00000011 = divide-by-3 | ||
| 173 | 00000100 = divide-by-4 | ||
| 174 | 00000101 = divide-by-5 | ||
| 175 | 00000110 = divide-by-6 | ||
| 176 | . | ||
| 177 | . | ||
| 178 | 11111011 = divide-by-251 | ||
| 179 | 11111100 = divide-by-252 | ||
| 180 | 11111101 = divide-by-253 | ||
| 181 | 11111110 = divide-by-254 | ||
| 182 | */ | ||
| 183 | |||
| 184 | #define chipcHw_REG_DIV_CLOCK_SOURCE_OTHER 0x00040000 /* NON-PLL clock source select */ | ||
| 185 | #define chipcHw_REG_DIV_CLOCK_BYPASS_SELECT 0x00020000 /* NON-PLL clock bypass enable */ | ||
| 186 | #define chipcHw_REG_DIV_CLOCK_OUTPUT_ENABLE 0x00010000 /* NON-PLL clock output enable */ | ||
| 187 | #define chipcHw_REG_DIV_CLOCK_DIV_MASK 0x000000FF /* NON-PLL clock post-divide mask */ | ||
| 188 | #define chipcHw_REG_DIV_CLOCK_DIV_256 0x00000000 /* NON-PLL clock post-divide by 256 */ | ||
| 189 | |||
| 190 | #define chipcHw_REG_PLL_PREDIVIDER_P1_SHIFT 0 | ||
| 191 | #define chipcHw_REG_PLL_PREDIVIDER_P2_SHIFT 4 | ||
| 192 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_SHIFT 8 | ||
| 193 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_MASK 0x0001FF00 | ||
| 194 | #define chipcHw_REG_PLL_PREDIVIDER_POWER_DOWN 0x02000000 | ||
| 195 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_MASK 0x00700000 /* Divider mask */ | ||
| 196 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_INTEGER 0x00000000 /* Integer-N Mode */ | ||
| 197 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_MASH_UNIT 0x00100000 /* MASH Sigma-Delta Modulator Unit Mode */ | ||
| 198 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_MFB_UNIT 0x00200000 /* MFB Sigma-Delta Modulator Unit Mode */ | ||
| 199 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_MASH_1_8 0x00300000 /* MASH Sigma-Delta Modulator 1/8 Mode */ | ||
| 200 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_MODE_MFB_1_8 0x00400000 /* MFB Sigma-Delta Modulator 1/8 Mode */ | ||
| 201 | |||
| 202 | #define chipcHw_REG_PLL_PREDIVIDER_NDIV_i(vco) ((vco) / chipcHw_XTAL_FREQ_Hz) | ||
| 203 | #define chipcHw_REG_PLL_PREDIVIDER_P1 1 | ||
| 204 | #define chipcHw_REG_PLL_PREDIVIDER_P2 1 | ||
| 205 | |||
| 206 | #define chipcHw_REG_PLL_DIVIDER_M1DIV 0x03000000 | ||
| 207 | #define chipcHw_REG_PLL_DIVIDER_FRAC 0x00FFFFFF /* Fractional divider */ | ||
| 208 | |||
| 209 | #define chipcHw_REG_PLL_DIVIDER_NDIV_f_SS (0x00FFFFFF) /* To attain spread with max frequency */ | ||
| 210 | |||
| 211 | #define chipcHw_REG_PLL_DIVIDER_NDIV_f 0 /* ndiv_frac = chipcHw_REG_PLL_DIVIDER_NDIV_f / | ||
| 212 | chipcHw_REG_PLL_DIVIDER_FRAC | ||
| 213 | = 0, when SS is disable | ||
| 214 | */ | ||
| 215 | |||
| 216 | #define chipcHw_REG_PLL_DIVIDER_MDIV(vco, Hz) ((chipcHw_divide((vco), (Hz)) > 255) ? 0 : chipcHw_divide((vco), (Hz))) | ||
| 217 | |||
| 218 | #define chipcHw_REG_ACLKClock_CLK_DIV_MASK 0x3 | ||
| 219 | |||
| 220 | /* System booting strap options */ | ||
| 221 | #define chipcHw_STRAPS_SOFT_OVERRIDE 0x00000001 /* Software Strap Override */ | ||
| 222 | |||
| 223 | #define chipcHw_STRAPS_BOOT_DEVICE_NAND_FLASH_8 0x00000000 /* 8 bit NAND FLASH Boot */ | ||
| 224 | #define chipcHw_STRAPS_BOOT_DEVICE_NOR_FLASH_16 0x00000002 /* 16 bit NOR FLASH Boot */ | ||
| 225 | #define chipcHw_STRAPS_BOOT_DEVICE_SERIAL_FLASH 0x00000004 /* Serial FLASH Boot */ | ||
| 226 | #define chipcHw_STRAPS_BOOT_DEVICE_NAND_FLASH_16 0x00000006 /* 16 bit NAND FLASH Boot */ | ||
| 227 | #define chipcHw_STRAPS_BOOT_DEVICE_UART 0x00000008 /* UART Boot */ | ||
| 228 | #define chipcHw_STRAPS_BOOT_DEVICE_MASK 0x0000000E /* Mask */ | ||
| 229 | |||
| 230 | /* System boot option */ | ||
| 231 | #define chipcHw_STRAPS_BOOT_OPTION_BROM 0x00000000 /* Boot from Boot ROM */ | ||
| 232 | #define chipcHw_STRAPS_BOOT_OPTION_ARAM 0x00000020 /* Boot from ARAM */ | ||
| 233 | #define chipcHw_STRAPS_BOOT_OPTION_NOR 0x00000030 /* Boot from NOR flash */ | ||
| 234 | |||
| 235 | /* NAND Flash page size strap options */ | ||
| 236 | #define chipcHw_STRAPS_NAND_PAGESIZE_512 0x00000000 /* NAND FLASH page size of 512 bytes */ | ||
| 237 | #define chipcHw_STRAPS_NAND_PAGESIZE_2048 0x00000040 /* NAND FLASH page size of 2048 bytes */ | ||
| 238 | #define chipcHw_STRAPS_NAND_PAGESIZE_4096 0x00000080 /* NAND FLASH page size of 4096 bytes */ | ||
| 239 | #define chipcHw_STRAPS_NAND_PAGESIZE_EXT 0x000000C0 /* NAND FLASH page of extened size */ | ||
| 240 | #define chipcHw_STRAPS_NAND_PAGESIZE_MASK 0x000000C0 /* Mask */ | ||
| 241 | |||
| 242 | #define chipcHw_STRAPS_NAND_EXTRA_CYCLE 0x00000400 /* NAND FLASH address cycle configuration */ | ||
| 243 | #define chipcHw_STRAPS_REBOOT_TO_UART 0x00000800 /* Reboot to UART on error */ | ||
| 244 | |||
| 245 | /* Secure boot mode strap options */ | ||
| 246 | #define chipcHw_STRAPS_BOOT_MODE_NORMAL 0x00000000 /* Normal Boot */ | ||
| 247 | #define chipcHw_STRAPS_BOOT_MODE_DBG_SW 0x00000100 /* Software debugging Boot */ | ||
| 248 | #define chipcHw_STRAPS_BOOT_MODE_DBG_BOOT 0x00000200 /* Boot rom debugging Boot */ | ||
| 249 | #define chipcHw_STRAPS_BOOT_MODE_NORMAL_QUIET 0x00000300 /* Normal Boot (Quiet BootRom) */ | ||
| 250 | #define chipcHw_STRAPS_BOOT_MODE_MASK 0x00000300 /* Mask */ | ||
| 251 | |||
| 252 | /* Slave Mode straps */ | ||
| 253 | #define chipcHw_STRAPS_I2CS 0x02000000 /* I2C Slave */ | ||
| 254 | #define chipcHw_STRAPS_SPIS 0x01000000 /* SPI Slave */ | ||
| 255 | |||
| 256 | /* Strap pin options */ | ||
| 257 | #define chipcHw_REG_SW_STRAPS ((pChipcHw->PinStraps & 0x0000FC00) >> 10) | ||
| 258 | |||
| 259 | /* PIF/LCD pin sharing defines */ | ||
| 260 | #define chipcHw_REG_LCD_PIN_ENABLE 0x00000001 /* LCD Controller is used and the pins have LCD functions */ | ||
| 261 | #define chipcHw_REG_PIF_PIN_ENABLE 0x00000002 /* LCD pins are used to perform PIF functions */ | ||
| 262 | |||
| 263 | #define chipcHw_GPIO_COUNT 61 /* Number of GPIO pin accessible thorugh CHIPC */ | ||
| 264 | |||
| 265 | /* NOTE: Any changes to these constants will require a corresponding change to chipcHw_str.c */ | ||
| 266 | #define chipcHw_REG_GPIO_MUX_KEYPAD 0x00000001 /* GPIO mux for Keypad */ | ||
| 267 | #define chipcHw_REG_GPIO_MUX_I2CH 0x00000002 /* GPIO mux for I2CH */ | ||
| 268 | #define chipcHw_REG_GPIO_MUX_SPI 0x00000003 /* GPIO mux for SPI */ | ||
| 269 | #define chipcHw_REG_GPIO_MUX_UART 0x00000004 /* GPIO mux for UART */ | ||
| 270 | #define chipcHw_REG_GPIO_MUX_LEDMTXP 0x00000005 /* GPIO mux for LEDMTXP */ | ||
| 271 | #define chipcHw_REG_GPIO_MUX_LEDMTXS 0x00000006 /* GPIO mux for LEDMTXS */ | ||
| 272 | #define chipcHw_REG_GPIO_MUX_SDIO0 0x00000007 /* GPIO mux for SDIO0 */ | ||
| 273 | #define chipcHw_REG_GPIO_MUX_SDIO1 0x00000008 /* GPIO mux for SDIO1 */ | ||
| 274 | #define chipcHw_REG_GPIO_MUX_PCM 0x00000009 /* GPIO mux for PCM */ | ||
| 275 | #define chipcHw_REG_GPIO_MUX_I2S 0x0000000A /* GPIO mux for I2S */ | ||
| 276 | #define chipcHw_REG_GPIO_MUX_ETM 0x0000000B /* GPIO mux for ETM */ | ||
| 277 | #define chipcHw_REG_GPIO_MUX_DEBUG 0x0000000C /* GPIO mux for DEBUG */ | ||
| 278 | #define chipcHw_REG_GPIO_MUX_MISC 0x0000000D /* GPIO mux for MISC */ | ||
| 279 | #define chipcHw_REG_GPIO_MUX_GPIO 0x00000000 /* GPIO mux for GPIO */ | ||
| 280 | #define chipcHw_REG_GPIO_MUX(pin) (&pChipcHw->GpioMux_0_7 + ((pin) >> 3)) | ||
| 281 | #define chipcHw_REG_GPIO_MUX_POSITION(pin) (((pin) & 0x00000007) << 2) | ||
| 282 | #define chipcHw_REG_GPIO_MUX_MASK 0x0000000F /* Mask */ | ||
| 283 | |||
| 284 | #define chipcHw_REG_SLEW_RATE_HIGH 0x00000000 /* High speed slew rate */ | ||
| 285 | #define chipcHw_REG_SLEW_RATE_NORMAL 0x00000008 /* Normal slew rate */ | ||
| 286 | /* Pins beyond 42 are defined by skipping 8 bits within the register */ | ||
| 287 | #define chipcHw_REG_SLEW_RATE(pin) (((pin) > 42) ? (&pChipcHw->GpioSR_0_7 + (((pin) + 2) >> 3)) : (&pChipcHw->GpioSR_0_7 + ((pin) >> 3))) | ||
| 288 | #define chipcHw_REG_SLEW_RATE_POSITION(pin) (((pin) > 42) ? ((((pin) + 2) & 0x00000007) << 2) : (((pin) & 0x00000007) << 2)) | ||
| 289 | #define chipcHw_REG_SLEW_RATE_MASK 0x00000008 /* Mask */ | ||
| 290 | |||
| 291 | #define chipcHw_REG_CURRENT_STRENGTH_2mA 0x00000001 /* Current driving strength 2 milli ampere */ | ||
| 292 | #define chipcHw_REG_CURRENT_STRENGTH_4mA 0x00000002 /* Current driving strength 4 milli ampere */ | ||
| 293 | #define chipcHw_REG_CURRENT_STRENGTH_6mA 0x00000004 /* Current driving strength 6 milli ampere */ | ||
| 294 | #define chipcHw_REG_CURRENT_STRENGTH_8mA 0x00000005 /* Current driving strength 8 milli ampere */ | ||
| 295 | #define chipcHw_REG_CURRENT_STRENGTH_10mA 0x00000006 /* Current driving strength 10 milli ampere */ | ||
| 296 | #define chipcHw_REG_CURRENT_STRENGTH_12mA 0x00000007 /* Current driving strength 12 milli ampere */ | ||
| 297 | #define chipcHw_REG_CURRENT_MASK 0x00000007 /* Mask */ | ||
| 298 | /* Pins beyond 42 are defined by skipping 8 bits */ | ||
| 299 | #define chipcHw_REG_CURRENT(pin) (((pin) > 42) ? (&pChipcHw->GpioSR_0_7 + (((pin) + 2) >> 3)) : (&pChipcHw->GpioSR_0_7 + ((pin) >> 3))) | ||
| 300 | #define chipcHw_REG_CURRENT_POSITION(pin) (((pin) > 42) ? ((((pin) + 2) & 0x00000007) << 2) : (((pin) & 0x00000007) << 2)) | ||
| 301 | |||
| 302 | #define chipcHw_REG_PULL_NONE 0x00000000 /* No pull up register */ | ||
| 303 | #define chipcHw_REG_PULL_UP 0x00000001 /* Pull up register enable */ | ||
| 304 | #define chipcHw_REG_PULL_DOWN 0x00000002 /* Pull down register enable */ | ||
| 305 | #define chipcHw_REG_PULLUP_MASK 0x00000003 /* Mask */ | ||
| 306 | /* Pins beyond 42 are defined by skipping 4 bits */ | ||
| 307 | #define chipcHw_REG_PULLUP(pin) (((pin) > 42) ? (&pChipcHw->GpioPull_0_15 + (((pin) + 2) >> 4)) : (&pChipcHw->GpioPull_0_15 + ((pin) >> 4))) | ||
| 308 | #define chipcHw_REG_PULLUP_POSITION(pin) (((pin) > 42) ? ((((pin) + 2) & 0x0000000F) << 1) : (((pin) & 0x0000000F) << 1)) | ||
| 309 | |||
| 310 | #define chipcHw_REG_INPUTTYPE_CMOS 0x00000000 /* Normal CMOS logic */ | ||
| 311 | #define chipcHw_REG_INPUTTYPE_ST 0x00000001 /* High speed Schmitt Trigger */ | ||
| 312 | #define chipcHw_REG_INPUTTYPE_MASK 0x00000001 /* Mask */ | ||
| 313 | /* Pins beyond 42 are defined by skipping 2 bits */ | ||
| 314 | #define chipcHw_REG_INPUTTYPE(pin) (((pin) > 42) ? (&pChipcHw->GpioInput_0_31 + (((pin) + 2) >> 5)) : (&pChipcHw->GpioInput_0_31 + ((pin) >> 5))) | ||
| 315 | #define chipcHw_REG_INPUTTYPE_POSITION(pin) (((pin) > 42) ? ((((pin) + 2) & 0x0000001F)) : (((pin) & 0x0000001F))) | ||
| 316 | |||
| 317 | /* Device connected to the bus clock */ | ||
| 318 | #define chipcHw_REG_BUS_CLOCK_ARM 0x00000001 /* Bus interface clock for ARM */ | ||
| 319 | #define chipcHw_REG_BUS_CLOCK_VDEC 0x00000002 /* Bus interface clock for VDEC */ | ||
| 320 | #define chipcHw_REG_BUS_CLOCK_ARAM 0x00000004 /* Bus interface clock for ARAM */ | ||
| 321 | #define chipcHw_REG_BUS_CLOCK_HPM 0x00000008 /* Bus interface clock for HPM */ | ||
| 322 | #define chipcHw_REG_BUS_CLOCK_DDRC 0x00000010 /* Bus interface clock for DDRC */ | ||
| 323 | #define chipcHw_REG_BUS_CLOCK_DMAC0 0x00000020 /* Bus interface clock for DMAC0 */ | ||
| 324 | #define chipcHw_REG_BUS_CLOCK_DMAC1 0x00000040 /* Bus interface clock for DMAC1 */ | ||
| 325 | #define chipcHw_REG_BUS_CLOCK_NVI 0x00000080 /* Bus interface clock for NVI */ | ||
| 326 | #define chipcHw_REG_BUS_CLOCK_ESW 0x00000100 /* Bus interface clock for ESW */ | ||
| 327 | #define chipcHw_REG_BUS_CLOCK_GE 0x00000200 /* Bus interface clock for GE */ | ||
| 328 | #define chipcHw_REG_BUS_CLOCK_I2CH 0x00000400 /* Bus interface clock for I2CH */ | ||
| 329 | #define chipcHw_REG_BUS_CLOCK_I2S0 0x00000800 /* Bus interface clock for I2S0 */ | ||
| 330 | #define chipcHw_REG_BUS_CLOCK_I2S1 0x00001000 /* Bus interface clock for I2S1 */ | ||
| 331 | #define chipcHw_REG_BUS_CLOCK_VRAM 0x00002000 /* Bus interface clock for VRAM */ | ||
| 332 | #define chipcHw_REG_BUS_CLOCK_CLCD 0x00004000 /* Bus interface clock for CLCD */ | ||
| 333 | #define chipcHw_REG_BUS_CLOCK_LDK 0x00008000 /* Bus interface clock for LDK */ | ||
| 334 | #define chipcHw_REG_BUS_CLOCK_LED 0x00010000 /* Bus interface clock for LED */ | ||
| 335 | #define chipcHw_REG_BUS_CLOCK_OTP 0x00020000 /* Bus interface clock for OTP */ | ||
| 336 | #define chipcHw_REG_BUS_CLOCK_PIF 0x00040000 /* Bus interface clock for PIF */ | ||
| 337 | #define chipcHw_REG_BUS_CLOCK_SPU 0x00080000 /* Bus interface clock for SPU */ | ||
| 338 | #define chipcHw_REG_BUS_CLOCK_SDIO0 0x00100000 /* Bus interface clock for SDIO0 */ | ||
| 339 | #define chipcHw_REG_BUS_CLOCK_SDIO1 0x00200000 /* Bus interface clock for SDIO1 */ | ||
| 340 | #define chipcHw_REG_BUS_CLOCK_SPIH 0x00400000 /* Bus interface clock for SPIH */ | ||
| 341 | #define chipcHw_REG_BUS_CLOCK_SPIS 0x00800000 /* Bus interface clock for SPIS */ | ||
| 342 | #define chipcHw_REG_BUS_CLOCK_UART0 0x01000000 /* Bus interface clock for UART0 */ | ||
| 343 | #define chipcHw_REG_BUS_CLOCK_UART1 0x02000000 /* Bus interface clock for UART1 */ | ||
| 344 | #define chipcHw_REG_BUS_CLOCK_BBL 0x04000000 /* Bus interface clock for BBL */ | ||
| 345 | #define chipcHw_REG_BUS_CLOCK_I2CS 0x08000000 /* Bus interface clock for I2CS */ | ||
| 346 | #define chipcHw_REG_BUS_CLOCK_USBH 0x10000000 /* Bus interface clock for USB Host */ | ||
| 347 | #define chipcHw_REG_BUS_CLOCK_USBD 0x20000000 /* Bus interface clock for USB Device */ | ||
| 348 | #define chipcHw_REG_BUS_CLOCK_BROM 0x40000000 /* Bus interface clock for Boot ROM */ | ||
| 349 | #define chipcHw_REG_BUS_CLOCK_TSC 0x80000000 /* Bus interface clock for Touch screen */ | ||
| 350 | |||
| 351 | /* Software resets defines */ | ||
| 352 | #define chipcHw_REG_SOFT_RESET_VPM_GLOBAL_HOLD 0x0000000080000000ULL /* Reset Global VPM and hold */ | ||
| 353 | #define chipcHw_REG_SOFT_RESET_VPM_HOLD 0x0000000040000000ULL /* Reset VPM and hold */ | ||
| 354 | #define chipcHw_REG_SOFT_RESET_VPM_GLOBAL 0x0000000020000000ULL /* Reset Global VPM */ | ||
| 355 | #define chipcHw_REG_SOFT_RESET_VPM 0x0000000010000000ULL /* Reset VPM */ | ||
| 356 | #define chipcHw_REG_SOFT_RESET_KEYPAD 0x0000000008000000ULL /* Reset Key pad */ | ||
| 357 | #define chipcHw_REG_SOFT_RESET_LED 0x0000000004000000ULL /* Reset LED */ | ||
| 358 | #define chipcHw_REG_SOFT_RESET_SPU 0x0000000002000000ULL /* Reset SPU */ | ||
| 359 | #define chipcHw_REG_SOFT_RESET_RNG 0x0000000001000000ULL /* Reset RNG */ | ||
| 360 | #define chipcHw_REG_SOFT_RESET_PKA 0x0000000000800000ULL /* Reset PKA */ | ||
| 361 | #define chipcHw_REG_SOFT_RESET_LCD 0x0000000000400000ULL /* Reset LCD */ | ||
| 362 | #define chipcHw_REG_SOFT_RESET_PIF 0x0000000000200000ULL /* Reset PIF */ | ||
| 363 | #define chipcHw_REG_SOFT_RESET_I2CS 0x0000000000100000ULL /* Reset I2C Slave */ | ||
| 364 | #define chipcHw_REG_SOFT_RESET_I2CH 0x0000000000080000ULL /* Reset I2C Host */ | ||
| 365 | #define chipcHw_REG_SOFT_RESET_SDIO1 0x0000000000040000ULL /* Reset SDIO 1 */ | ||
| 366 | #define chipcHw_REG_SOFT_RESET_SDIO0 0x0000000000020000ULL /* Reset SDIO 0 */ | ||
| 367 | #define chipcHw_REG_SOFT_RESET_BBL 0x0000000000010000ULL /* Reset BBL */ | ||
| 368 | #define chipcHw_REG_SOFT_RESET_I2S1 0x0000000000008000ULL /* Reset I2S1 */ | ||
| 369 | #define chipcHw_REG_SOFT_RESET_I2S0 0x0000000000004000ULL /* Reset I2S0 */ | ||
| 370 | #define chipcHw_REG_SOFT_RESET_SPIS 0x0000000000002000ULL /* Reset SPI Slave */ | ||
| 371 | #define chipcHw_REG_SOFT_RESET_SPIH 0x0000000000001000ULL /* Reset SPI Host */ | ||
| 372 | #define chipcHw_REG_SOFT_RESET_GPIO1 0x0000000000000800ULL /* Reset GPIO block 1 */ | ||
| 373 | #define chipcHw_REG_SOFT_RESET_GPIO0 0x0000000000000400ULL /* Reset GPIO block 0 */ | ||
| 374 | #define chipcHw_REG_SOFT_RESET_UART1 0x0000000000000200ULL /* Reset UART 1 */ | ||
| 375 | #define chipcHw_REG_SOFT_RESET_UART0 0x0000000000000100ULL /* Reset UART 0 */ | ||
| 376 | #define chipcHw_REG_SOFT_RESET_NVI 0x0000000000000080ULL /* Reset NVI */ | ||
| 377 | #define chipcHw_REG_SOFT_RESET_WDOG 0x0000000000000040ULL /* Reset Watch dog */ | ||
| 378 | #define chipcHw_REG_SOFT_RESET_TMR 0x0000000000000020ULL /* Reset Timer */ | ||
| 379 | #define chipcHw_REG_SOFT_RESET_ETM 0x0000000000000010ULL /* Reset ETM */ | ||
| 380 | #define chipcHw_REG_SOFT_RESET_ARM_HOLD 0x0000000000000008ULL /* Reset ARM and HOLD */ | ||
| 381 | #define chipcHw_REG_SOFT_RESET_ARM 0x0000000000000004ULL /* Reset ARM */ | ||
| 382 | #define chipcHw_REG_SOFT_RESET_CHIP_WARM 0x0000000000000002ULL /* Chip warm reset */ | ||
| 383 | #define chipcHw_REG_SOFT_RESET_CHIP_SOFT 0x0000000000000001ULL /* Chip soft reset */ | ||
| 384 | #define chipcHw_REG_SOFT_RESET_VDEC 0x0000100000000000ULL /* Video decoder */ | ||
| 385 | #define chipcHw_REG_SOFT_RESET_GE 0x0000080000000000ULL /* Graphics engine */ | ||
| 386 | #define chipcHw_REG_SOFT_RESET_OTP 0x0000040000000000ULL /* Reset OTP */ | ||
| 387 | #define chipcHw_REG_SOFT_RESET_USB2 0x0000020000000000ULL /* Reset USB2 */ | ||
| 388 | #define chipcHw_REG_SOFT_RESET_USB1 0x0000010000000000ULL /* Reset USB 1 */ | ||
| 389 | #define chipcHw_REG_SOFT_RESET_USB 0x0000008000000000ULL /* Reset USB 1 and USB2 soft reset */ | ||
| 390 | #define chipcHw_REG_SOFT_RESET_ESW 0x0000004000000000ULL /* Reset Ethernet switch */ | ||
| 391 | #define chipcHw_REG_SOFT_RESET_ESWCLK 0x0000002000000000ULL /* Reset Ethernet switch clock */ | ||
| 392 | #define chipcHw_REG_SOFT_RESET_DDRPHY 0x0000001000000000ULL /* Reset DDR Physical */ | ||
| 393 | #define chipcHw_REG_SOFT_RESET_DDR 0x0000000800000000ULL /* Reset DDR Controller */ | ||
| 394 | #define chipcHw_REG_SOFT_RESET_TSC 0x0000000400000000ULL /* Reset Touch screen */ | ||
| 395 | #define chipcHw_REG_SOFT_RESET_PCM 0x0000000200000000ULL /* Reset PCM device */ | ||
| 396 | #define chipcHw_REG_SOFT_RESET_APM 0x0000200100000000ULL /* Reset APM device */ | ||
| 397 | |||
| 398 | #define chipcHw_REG_SOFT_RESET_VPM_GLOBAL_UNHOLD 0x8000000000000000ULL /* Unhold Global VPM */ | ||
| 399 | #define chipcHw_REG_SOFT_RESET_VPM_UNHOLD 0x4000000000000000ULL /* Unhold VPM */ | ||
| 400 | #define chipcHw_REG_SOFT_RESET_ARM_UNHOLD 0x2000000000000000ULL /* Unhold ARM reset */ | ||
| 401 | #define chipcHw_REG_SOFT_RESET_UNHOLD_MASK 0xF000000000000000ULL /* Mask to handle unhold request */ | ||
| 402 | |||
| 403 | /* Audio channel control defines */ | ||
| 404 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_ALL 0x00000001 /* Enable all audio channel */ | ||
| 405 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_A 0x00000002 /* Enable channel A */ | ||
| 406 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_B 0x00000004 /* Enable channel B */ | ||
| 407 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_C 0x00000008 /* Enable channel C */ | ||
| 408 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_NTP_CLOCK 0x00000010 /* Enable NTP clock */ | ||
| 409 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_PCM0_CLOCK 0x00000020 /* Enable PCM0 clock */ | ||
| 410 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_PCM1_CLOCK 0x00000040 /* Enable PCM1 clock */ | ||
| 411 | #define chipcHw_REG_AUDIO_CHANNEL_ENABLE_APM_CLOCK 0x00000080 /* Enable APM clock */ | ||
| 412 | |||
| 413 | /* Misc. chip control defines */ | ||
| 414 | #define chipcHw_REG_MISC_CTRL_GE_SEL 0x00040000 /* Select GE2/GE3 */ | ||
| 415 | #define chipcHw_REG_MISC_CTRL_I2S1_CLOCK_ONCHIP 0x00000000 /* Use on chip clock for I2S1 */ | ||
| 416 | #define chipcHw_REG_MISC_CTRL_I2S1_CLOCK_GPIO 0x00020000 /* Use external clock via GPIO pin 26 for I2S1 */ | ||
| 417 | #define chipcHw_REG_MISC_CTRL_I2S0_CLOCK_ONCHIP 0x00000000 /* Use on chip clock for I2S0 */ | ||
| 418 | #define chipcHw_REG_MISC_CTRL_I2S0_CLOCK_GPIO 0x00010000 /* Use external clock via GPIO pin 45 for I2S0 */ | ||
| 419 | #define chipcHw_REG_MISC_CTRL_ARM_CP15_DISABLE 0x00008000 /* Disable ARM CP15 bit */ | ||
| 420 | #define chipcHw_REG_MISC_CTRL_RTC_DISABLE 0x00000008 /* Disable RTC registers */ | ||
| 421 | #define chipcHw_REG_MISC_CTRL_BBRAM_DISABLE 0x00000004 /* Disable Battery Backed RAM */ | ||
| 422 | #define chipcHw_REG_MISC_CTRL_USB_MODE_HOST 0x00000002 /* Set USB as host */ | ||
| 423 | #define chipcHw_REG_MISC_CTRL_USB_MODE_DEVICE 0xFFFFFFFD /* Set USB as device */ | ||
| 424 | #define chipcHw_REG_MISC_CTRL_USB_POWERON 0xFFFFFFFE /* Power up USB */ | ||
| 425 | #define chipcHw_REG_MISC_CTRL_USB_POWEROFF 0x00000001 /* Power down USB */ | ||
| 426 | |||
| 427 | /* OTP configuration defines */ | ||
| 428 | #define chipcHw_REG_OTP_SECURITY_OFF 0x0000020000000000ULL /* Security support is OFF */ | ||
| 429 | #define chipcHw_REG_OTP_SPU_SLOW 0x0000010000000000ULL /* Limited SPU throughput */ | ||
| 430 | #define chipcHw_REG_OTP_LCD_SPEED 0x0000000600000000ULL /* Set VPM speed one */ | ||
| 431 | #define chipcHw_REG_OTP_VPM_SPEED_1 0x0000000100000000ULL /* Set VPM speed one */ | ||
| 432 | #define chipcHw_REG_OTP_VPM_SPEED_0 0x0000000080000000ULL /* Set VPM speed zero */ | ||
| 433 | #define chipcHw_REG_OTP_AXI_SPEED 0x0000000060000000ULL /* Set maximum AXI bus speed */ | ||
| 434 | #define chipcHw_REG_OTP_APM_DISABLE 0x000000001F000000ULL /* Disable APM */ | ||
| 435 | #define chipcHw_REG_OTP_PIF_DISABLE 0x0000000000200000ULL /* Disable PIF */ | ||
| 436 | #define chipcHw_REG_OTP_VDEC_DISABLE 0x0000000000100000ULL /* Disable Video decoder */ | ||
| 437 | #define chipcHw_REG_OTP_BBL_DISABLE 0x0000000000080000ULL /* Disable RTC and BBRAM */ | ||
| 438 | #define chipcHw_REG_OTP_LED_DISABLE 0x0000000000040000ULL /* Disable LED */ | ||
| 439 | #define chipcHw_REG_OTP_GE_DISABLE 0x0000000000020000ULL /* Disable Graphics Engine */ | ||
| 440 | #define chipcHw_REG_OTP_LCD_DISABLE 0x0000000000010000ULL /* Disable LCD */ | ||
| 441 | #define chipcHw_REG_OTP_KEYPAD_DISABLE 0x0000000000008000ULL /* Disable keypad */ | ||
| 442 | #define chipcHw_REG_OTP_UART_DISABLE 0x0000000000004000ULL /* Disable UART */ | ||
| 443 | #define chipcHw_REG_OTP_SDIOH_DISABLE 0x0000000000003000ULL /* Disable SDIO host */ | ||
| 444 | #define chipcHw_REG_OTP_HSS_DISABLE 0x0000000000000C00ULL /* Disable HSS */ | ||
| 445 | #define chipcHw_REG_OTP_TSC_DISABLE 0x0000000000000200ULL /* Disable touch screen */ | ||
| 446 | #define chipcHw_REG_OTP_USB_DISABLE 0x0000000000000180ULL /* Disable USB */ | ||
| 447 | #define chipcHw_REG_OTP_SGMII_DISABLE 0x0000000000000060ULL /* Disable SGMII */ | ||
| 448 | #define chipcHw_REG_OTP_ETH_DISABLE 0x0000000000000018ULL /* Disable gigabit ethernet */ | ||
| 449 | #define chipcHw_REG_OTP_ETH_PHY_DISABLE 0x0000000000000006ULL /* Disable ethernet PHY */ | ||
| 450 | #define chipcHw_REG_OTP_VPM_DISABLE 0x0000000000000001ULL /* Disable VPM */ | ||
| 451 | |||
| 452 | /* Sticky bit defines */ | ||
| 453 | #define chipcHw_REG_STICKY_BOOT_DONE 0x00000001 /* Boot done */ | ||
| 454 | #define chipcHw_REG_STICKY_SOFT_RESET 0x00000002 /* ARM soft reset */ | ||
| 455 | #define chipcHw_REG_STICKY_GENERAL_1 0x00000004 /* General purpose bit 1 */ | ||
| 456 | #define chipcHw_REG_STICKY_GENERAL_2 0x00000008 /* General purpose bit 2 */ | ||
| 457 | #define chipcHw_REG_STICKY_GENERAL_3 0x00000010 /* General purpose bit 3 */ | ||
| 458 | #define chipcHw_REG_STICKY_GENERAL_4 0x00000020 /* General purpose bit 4 */ | ||
| 459 | #define chipcHw_REG_STICKY_GENERAL_5 0x00000040 /* General purpose bit 5 */ | ||
| 460 | #define chipcHw_REG_STICKY_POR_BROM 0x00000080 /* Special sticky bit for security - set in BROM to avoid other modes being entered */ | ||
| 461 | #define chipcHw_REG_STICKY_ARM_RESET 0x00000100 /* ARM reset */ | ||
| 462 | #define chipcHw_REG_STICKY_CHIP_SOFT_RESET 0x00000200 /* Chip soft reset */ | ||
| 463 | #define chipcHw_REG_STICKY_CHIP_WARM_RESET 0x00000400 /* Chip warm reset */ | ||
| 464 | #define chipcHw_REG_STICKY_WDOG_RESET 0x00000800 /* Watchdog reset */ | ||
| 465 | #define chipcHw_REG_STICKY_OTP_RESET 0x00001000 /* OTP reset */ | ||
| 466 | |||
| 467 | /* HW phase alignment defines *//* Spare1 register definitions */ | ||
| 468 | #define chipcHw_REG_SPARE1_DDR_PHASE_INTR_ENABLE 0x80000000 /* Enable DDR phase align panic interrupt */ | ||
| 469 | #define chipcHw_REG_SPARE1_VPM_PHASE_INTR_ENABLE 0x40000000 /* Enable VPM phase align panic interrupt */ | ||
| 470 | #define chipcHw_REG_SPARE1_VPM_BUS_ACCESS_ENABLE 0x00000002 /* Enable access to VPM using system BUS */ | ||
| 471 | #define chipcHw_REG_SPARE1_DDR_BUS_ACCESS_ENABLE 0x00000001 /* Enable access to DDR using system BUS */ | ||
| 472 | /* DDRPhaseCtrl1 register definitions */ | ||
| 473 | #define chipcHw_REG_DDR_SW_PHASE_CTRL_ENABLE 0x80000000 /* Enable DDR SW phase alignment */ | ||
| 474 | #define chipcHw_REG_DDR_HW_PHASE_CTRL_ENABLE 0x40000000 /* Enable DDR HW phase alignment */ | ||
| 475 | #define chipcHw_REG_DDR_PHASE_VALUE_GE_MASK 0x0000007F /* DDR lower threshold for phase alignment */ | ||
| 476 | #define chipcHw_REG_DDR_PHASE_VALUE_GE_SHIFT 23 | ||
| 477 | #define chipcHw_REG_DDR_PHASE_VALUE_LE_MASK 0x0000007F /* DDR upper threshold for phase alignment */ | ||
| 478 | #define chipcHw_REG_DDR_PHASE_VALUE_LE_SHIFT 16 | ||
| 479 | #define chipcHw_REG_DDR_PHASE_ALIGN_WAIT_CYCLE_MASK 0x0000FFFF /* BUS Cycle to wait to run next DDR phase alignment */ | ||
| 480 | #define chipcHw_REG_DDR_PHASE_ALIGN_WAIT_CYCLE_SHIFT 0 | ||
| 481 | /* VPMPhaseCtrl1 register definitions */ | ||
| 482 | #define chipcHw_REG_VPM_SW_PHASE_CTRL_ENABLE 0x80000000 /* Enable VPM SW phase alignment */ | ||
| 483 | #define chipcHw_REG_VPM_HW_PHASE_CTRL_ENABLE 0x40000000 /* Enable VPM HW phase alignment */ | ||
| 484 | #define chipcHw_REG_VPM_PHASE_VALUE_GE_MASK 0x0000007F /* VPM lower threshold for phase alignment */ | ||
| 485 | #define chipcHw_REG_VPM_PHASE_VALUE_GE_SHIFT 23 | ||
| 486 | #define chipcHw_REG_VPM_PHASE_VALUE_LE_MASK 0x0000007F /* VPM upper threshold for phase alignment */ | ||
| 487 | #define chipcHw_REG_VPM_PHASE_VALUE_LE_SHIFT 16 | ||
| 488 | #define chipcHw_REG_VPM_PHASE_ALIGN_WAIT_CYCLE_MASK 0x0000FFFF /* BUS Cycle to wait to complete the VPM phase alignment */ | ||
| 489 | #define chipcHw_REG_VPM_PHASE_ALIGN_WAIT_CYCLE_SHIFT 0 | ||
| 490 | /* PhaseAlignStatus register definitions */ | ||
| 491 | #define chipcHw_REG_DDR_TIMEOUT_INTR_STATUS 0x80000000 /* DDR time out interrupt status */ | ||
| 492 | #define chipcHw_REG_DDR_PHASE_STATUS_MASK 0x0000007F /* DDR phase status value */ | ||
| 493 | #define chipcHw_REG_DDR_PHASE_STATUS_SHIFT 24 | ||
| 494 | #define chipcHw_REG_DDR_PHASE_ALIGNED 0x00800000 /* DDR Phase aligned status */ | ||
| 495 | #define chipcHw_REG_DDR_LOAD 0x00400000 /* Load DDR phase status */ | ||
| 496 | #define chipcHw_REG_DDR_PHASE_CTRL_MASK 0x0000003F /* DDR phase control value */ | ||
| 497 | #define chipcHw_REG_DDR_PHASE_CTRL_SHIFT 16 | ||
| 498 | #define chipcHw_REG_VPM_TIMEOUT_INTR_STATUS 0x80000000 /* VPM time out interrupt status */ | ||
| 499 | #define chipcHw_REG_VPM_PHASE_STATUS_MASK 0x0000007F /* VPM phase status value */ | ||
| 500 | #define chipcHw_REG_VPM_PHASE_STATUS_SHIFT 8 | ||
| 501 | #define chipcHw_REG_VPM_PHASE_ALIGNED 0x00000080 /* VPM Phase aligned status */ | ||
| 502 | #define chipcHw_REG_VPM_LOAD 0x00000040 /* Load VPM phase status */ | ||
| 503 | #define chipcHw_REG_VPM_PHASE_CTRL_MASK 0x0000003F /* VPM phase control value */ | ||
| 504 | #define chipcHw_REG_VPM_PHASE_CTRL_SHIFT 0 | ||
| 505 | /* DDRPhaseCtrl2 register definitions */ | ||
| 506 | #define chipcHw_REG_DDR_INTR_SERVICED 0x02000000 /* Acknowledge that interrupt was serviced */ | ||
| 507 | #define chipcHw_REG_DDR_TIMEOUT_INTR_ENABLE 0x01000000 /* Enable time out interrupt */ | ||
| 508 | #define chipcHw_REG_DDR_LOAD_COUNT_PHASE_CTRL_MASK 0x0000000F /* Wait before toggling load_ch */ | ||
| 509 | #define chipcHw_REG_DDR_LOAD_COUNT_PHASE_CTRL_SHIFT 20 | ||
| 510 | #define chipcHw_REG_DDR_TOTAL_LOAD_COUNT_CTRL_MASK 0x0000000F /* Total wait to settle ph_ctrl and load_ch */ | ||
| 511 | #define chipcHw_REG_DDR_TOTAL_LOAD_COUNT_CTRL_SHIFT 16 | ||
| 512 | #define chipcHw_REG_DDR_PHASE_TIMEOUT_COUNT_MASK 0x0000FFFF /* Time out value for DDR HW phase alignment */ | ||
| 513 | #define chipcHw_REG_DDR_PHASE_TIMEOUT_COUNT_SHIFT 0 | ||
| 514 | /* VPMPhaseCtrl2 register definitions */ | ||
| 515 | #define chipcHw_REG_VPM_INTR_SELECT_MASK 0x00000003 /* Interrupt select */ | ||
| 516 | #define chipcHw_REG_VPM_INTR_SELECT_SHIFT 26 | ||
| 517 | #define chipcHw_REG_VPM_INTR_DISABLE 0x00000000 | ||
| 518 | #define chipcHw_REG_VPM_INTR_FAST (0x1 << chipcHw_REG_VPM_INTR_SELECT_SHIFT) | ||
| 519 | #define chipcHw_REG_VPM_INTR_MEDIUM (0x2 << chipcHw_REG_VPM_INTR_SELECT_SHIFT) | ||
| 520 | #define chipcHw_REG_VPM_INTR_SLOW (0x3 << chipcHw_REG_VPM_INTR_SELECT_SHIFT) | ||
| 521 | #define chipcHw_REG_VPM_INTR_SERVICED 0x02000000 /* Acknowledge that interrupt was serviced */ | ||
| 522 | #define chipcHw_REG_VPM_TIMEOUT_INTR_ENABLE 0x01000000 /* Enable time out interrupt */ | ||
| 523 | #define chipcHw_REG_VPM_LOAD_COUNT_PHASE_CTRL_MASK 0x0000000F /* Wait before toggling load_ch */ | ||
| 524 | #define chipcHw_REG_VPM_LOAD_COUNT_PHASE_CTRL_SHIFT 20 | ||
| 525 | #define chipcHw_REG_VPM_TOTAL_LOAD_COUNT_CTRL_MASK 0x0000000F /* Total wait cycle to settle ph_ctrl and load_ch */ | ||
| 526 | #define chipcHw_REG_VPM_TOTAL_LOAD_COUNT_CTRL_SHIFT 16 | ||
| 527 | #define chipcHw_REG_VPM_PHASE_TIMEOUT_COUNT_MASK 0x0000FFFF /* Time out value for VPM HW phase alignment */ | ||
| 528 | #define chipcHw_REG_VPM_PHASE_TIMEOUT_COUNT_SHIFT 0 | ||
| 529 | |||
| 530 | #endif /* CHIPCHW_REG_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/ddrcReg.h b/arch/arm/mach-bcmring/include/mach/csp/ddrcReg.h new file mode 100644 index 00000000000..f1b68e26fa6 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/ddrcReg.h | |||
| @@ -0,0 +1,872 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file ddrcReg.h | ||
| 18 | * | ||
| 19 | * @brief Register definitions for BCMRING DDR2 Controller and PHY | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | |||
| 24 | #ifndef DDRC_REG_H | ||
| 25 | #define DDRC_REG_H | ||
| 26 | |||
| 27 | #ifdef __cplusplus | ||
| 28 | extern "C" { | ||
| 29 | #endif | ||
| 30 | |||
| 31 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 32 | |||
| 33 | #include <csp/reg.h> | ||
| 34 | #include <csp/stdint.h> | ||
| 35 | |||
| 36 | #include <mach/csp/mm_io.h> | ||
| 37 | |||
| 38 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 39 | |||
| 40 | /*********************************************************************/ | ||
| 41 | /* DDR2 Controller (ARM PL341) register definitions */ | ||
| 42 | /*********************************************************************/ | ||
| 43 | |||
| 44 | /* -------------------------------------------------------------------- */ | ||
| 45 | /* -------------------------------------------------------------------- */ | ||
| 46 | /* ARM PL341 DDR2 configuration registers, offset 0x000 */ | ||
| 47 | /* -------------------------------------------------------------------- */ | ||
| 48 | /* -------------------------------------------------------------------- */ | ||
| 49 | |||
| 50 | typedef struct { | ||
| 51 | uint32_t memcStatus; | ||
| 52 | uint32_t memcCmd; | ||
| 53 | uint32_t directCmd; | ||
| 54 | uint32_t memoryCfg; | ||
| 55 | uint32_t refreshPrd; | ||
| 56 | uint32_t casLatency; | ||
| 57 | uint32_t writeLatency; | ||
| 58 | uint32_t tMrd; | ||
| 59 | uint32_t tRas; | ||
| 60 | uint32_t tRc; | ||
| 61 | uint32_t tRcd; | ||
| 62 | uint32_t tRfc; | ||
| 63 | uint32_t tRp; | ||
| 64 | uint32_t tRrd; | ||
| 65 | uint32_t tWr; | ||
| 66 | uint32_t tWtr; | ||
| 67 | uint32_t tXp; | ||
| 68 | uint32_t tXsr; | ||
| 69 | uint32_t tEsr; | ||
| 70 | uint32_t memoryCfg2; | ||
| 71 | uint32_t memoryCfg3; | ||
| 72 | uint32_t tFaw; | ||
| 73 | } ddrcReg_CTLR_MEMC_REG_t; | ||
| 74 | |||
| 75 | #define ddrcReg_CTLR_MEMC_REG_OFFSET 0x0000 | ||
| 76 | #define ddrcReg_CTLR_MEMC_REGP ((volatile ddrcReg_CTLR_MEMC_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_CTLR_MEMC_REG_OFFSET)) | ||
| 77 | |||
| 78 | /* ----------------------------------------------------- */ | ||
| 79 | |||
| 80 | #define ddrcReg_CTLR_MEMC_STATUS_BANKS_MASK (0x3 << 12) | ||
| 81 | #define ddrcReg_CTLR_MEMC_STATUS_BANKS_4 (0x0 << 12) | ||
| 82 | #define ddrcReg_CTLR_MEMC_STATUS_BANKS_8 (0x3 << 12) | ||
| 83 | |||
| 84 | #define ddrcReg_CTLR_MEMC_STATUS_MONITORS_MASK (0x3 << 10) | ||
| 85 | #define ddrcReg_CTLR_MEMC_STATUS_MONITORS_0 (0x0 << 10) | ||
| 86 | #define ddrcReg_CTLR_MEMC_STATUS_MONITORS_1 (0x1 << 10) | ||
| 87 | #define ddrcReg_CTLR_MEMC_STATUS_MONITORS_2 (0x2 << 10) | ||
| 88 | #define ddrcReg_CTLR_MEMC_STATUS_MONITORS_4 (0x3 << 10) | ||
| 89 | |||
| 90 | #define ddrcReg_CTLR_MEMC_STATUS_CHIPS_MASK (0x3 << 7) | ||
| 91 | #define ddrcReg_CTLR_MEMC_STATUS_CHIPS_1 (0x0 << 7) | ||
| 92 | #define ddrcReg_CTLR_MEMC_STATUS_CHIPS_2 (0x1 << 7) | ||
| 93 | #define ddrcReg_CTLR_MEMC_STATUS_CHIPS_3 (0x2 << 7) | ||
| 94 | #define ddrcReg_CTLR_MEMC_STATUS_CHIPS_4 (0x3 << 7) | ||
| 95 | |||
| 96 | #define ddrcReg_CTLR_MEMC_STATUS_TYPE_MASK (0x7 << 4) | ||
| 97 | #define ddrcReg_CTLR_MEMC_STATUS_TYPE_DDR2 (0x5 << 4) | ||
| 98 | |||
| 99 | #define ddrcReg_CTLR_MEMC_STATUS_WIDTH_MASK (0x3 << 2) | ||
| 100 | #define ddrcReg_CTLR_MEMC_STATUS_WIDTH_16 (0x0 << 2) | ||
| 101 | #define ddrcReg_CTLR_MEMC_STATUS_WIDTH_32 (0x1 << 2) | ||
| 102 | #define ddrcReg_CTLR_MEMC_STATUS_WIDTH_64 (0x2 << 2) | ||
| 103 | #define ddrcReg_CTLR_MEMC_STATUS_WIDTH_128 (0x3 << 2) | ||
| 104 | |||
| 105 | #define ddrcReg_CTLR_MEMC_STATUS_STATE_MASK (0x3 << 0) | ||
| 106 | #define ddrcReg_CTLR_MEMC_STATUS_STATE_CONFIG (0x0 << 0) | ||
| 107 | #define ddrcReg_CTLR_MEMC_STATUS_STATE_READY (0x1 << 0) | ||
| 108 | #define ddrcReg_CTLR_MEMC_STATUS_STATE_PAUSED (0x2 << 0) | ||
| 109 | #define ddrcReg_CTLR_MEMC_STATUS_STATE_LOWPWR (0x3 << 0) | ||
| 110 | |||
| 111 | /* ----------------------------------------------------- */ | ||
| 112 | |||
| 113 | #define ddrcReg_CTLR_MEMC_CMD_MASK (0x7 << 0) | ||
| 114 | #define ddrcReg_CTLR_MEMC_CMD_GO (0x0 << 0) | ||
| 115 | #define ddrcReg_CTLR_MEMC_CMD_SLEEP (0x1 << 0) | ||
| 116 | #define ddrcReg_CTLR_MEMC_CMD_WAKEUP (0x2 << 0) | ||
| 117 | #define ddrcReg_CTLR_MEMC_CMD_PAUSE (0x3 << 0) | ||
| 118 | #define ddrcReg_CTLR_MEMC_CMD_CONFIGURE (0x4 << 0) | ||
| 119 | #define ddrcReg_CTLR_MEMC_CMD_ACTIVE_PAUSE (0x7 << 0) | ||
| 120 | |||
| 121 | /* ----------------------------------------------------- */ | ||
| 122 | |||
| 123 | #define ddrcReg_CTLR_DIRECT_CMD_CHIP_SHIFT 20 | ||
| 124 | #define ddrcReg_CTLR_DIRECT_CMD_CHIP_MASK (0x3 << ddrcReg_CTLR_DIRECT_CMD_CHIP_SHIFT) | ||
| 125 | |||
| 126 | #define ddrcReg_CTLR_DIRECT_CMD_TYPE_PRECHARGEALL (0x0 << 18) | ||
| 127 | #define ddrcReg_CTLR_DIRECT_CMD_TYPE_AUTOREFRESH (0x1 << 18) | ||
| 128 | #define ddrcReg_CTLR_DIRECT_CMD_TYPE_MODEREG (0x2 << 18) | ||
| 129 | #define ddrcReg_CTLR_DIRECT_CMD_TYPE_NOP (0x3 << 18) | ||
| 130 | |||
| 131 | #define ddrcReg_CTLR_DIRECT_CMD_BANK_SHIFT 16 | ||
| 132 | #define ddrcReg_CTLR_DIRECT_CMD_BANK_MASK (0x3 << ddrcReg_CTLR_DIRECT_CMD_BANK_SHIFT) | ||
| 133 | |||
| 134 | #define ddrcReg_CTLR_DIRECT_CMD_ADDR_SHIFT 0 | ||
| 135 | #define ddrcReg_CTLR_DIRECT_CMD_ADDR_MASK (0x1ffff << ddrcReg_CTLR_DIRECT_CMD_ADDR_SHIFT) | ||
| 136 | |||
| 137 | /* ----------------------------------------------------- */ | ||
| 138 | |||
| 139 | #define ddrcReg_CTLR_MEMORY_CFG_CHIP_CNT_MASK (0x3 << 21) | ||
| 140 | #define ddrcReg_CTLR_MEMORY_CFG_CHIP_CNT_1 (0x0 << 21) | ||
| 141 | #define ddrcReg_CTLR_MEMORY_CFG_CHIP_CNT_2 (0x1 << 21) | ||
| 142 | #define ddrcReg_CTLR_MEMORY_CFG_CHIP_CNT_3 (0x2 << 21) | ||
| 143 | #define ddrcReg_CTLR_MEMORY_CFG_CHIP_CNT_4 (0x3 << 21) | ||
| 144 | |||
| 145 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_MASK (0x7 << 18) | ||
| 146 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_3_0 (0x0 << 18) | ||
| 147 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_4_1 (0x1 << 18) | ||
| 148 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_5_2 (0x2 << 18) | ||
| 149 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_6_3 (0x3 << 18) | ||
| 150 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_7_4 (0x4 << 18) | ||
| 151 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_8_5 (0x5 << 18) | ||
| 152 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_9_6 (0x6 << 18) | ||
| 153 | #define ddrcReg_CTLR_MEMORY_CFG_QOS_ARID_10_7 (0x7 << 18) | ||
| 154 | |||
| 155 | #define ddrcReg_CTLR_MEMORY_CFG_BURST_LEN_MASK (0x7 << 15) | ||
| 156 | #define ddrcReg_CTLR_MEMORY_CFG_BURST_LEN_4 (0x2 << 15) | ||
| 157 | #define ddrcReg_CTLR_MEMORY_CFG_BURST_LEN_8 (0x3 << 15) /* @note Not supported in PL341 */ | ||
| 158 | |||
| 159 | #define ddrcReg_CTLR_MEMORY_CFG_PWRDOWN_ENABLE (0x1 << 13) | ||
| 160 | |||
| 161 | #define ddrcReg_CTLR_MEMORY_CFG_PWRDOWN_CYCLES_SHIFT 7 | ||
| 162 | #define ddrcReg_CTLR_MEMORY_CFG_PWRDOWN_CYCLES_MASK (0x3f << ddrcReg_CTLR_MEMORY_CFG_PWRDOWN_CYCLES_SHIFT) | ||
| 163 | |||
| 164 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_ROW_BITS_MASK (0x7 << 3) | ||
| 165 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_ROW_BITS_11 (0x0 << 3) | ||
| 166 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_ROW_BITS_12 (0x1 << 3) | ||
| 167 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_ROW_BITS_13 (0x2 << 3) | ||
| 168 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_ROW_BITS_14 (0x3 << 3) | ||
| 169 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_ROW_BITS_15 (0x4 << 3) | ||
| 170 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_ROW_BITS_16 (0x5 << 3) | ||
| 171 | |||
| 172 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_COL_BITS_MASK (0x7 << 0) | ||
| 173 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_COL_BITS_9 (0x1 << 0) | ||
| 174 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_COL_BITS_10 (0x2 << 0) | ||
| 175 | #define ddrcReg_CTLR_MEMORY_CFG_AXI_COL_BITS_11 (0x3 << 0) | ||
| 176 | |||
| 177 | /* ----------------------------------------------------- */ | ||
| 178 | |||
| 179 | #define ddrcReg_CTLR_REFRESH_PRD_SHIFT 0 | ||
| 180 | #define ddrcReg_CTLR_REFRESH_PRD_MASK (0x7fff << ddrcReg_CTLR_REFRESH_PRD_SHIFT) | ||
| 181 | |||
| 182 | /* ----------------------------------------------------- */ | ||
| 183 | |||
| 184 | #define ddrcReg_CTLR_CAS_LATENCY_SHIFT 1 | ||
| 185 | #define ddrcReg_CTLR_CAS_LATENCY_MASK (0x7 << ddrcReg_CTLR_CAS_LATENCY_SHIFT) | ||
| 186 | |||
| 187 | /* ----------------------------------------------------- */ | ||
| 188 | |||
| 189 | #define ddrcReg_CTLR_WRITE_LATENCY_SHIFT 0 | ||
| 190 | #define ddrcReg_CTLR_WRITE_LATENCY_MASK (0x7 << ddrcReg_CTLR_WRITE_LATENCY_SHIFT) | ||
| 191 | |||
| 192 | /* ----------------------------------------------------- */ | ||
| 193 | |||
| 194 | #define ddrcReg_CTLR_T_MRD_SHIFT 0 | ||
| 195 | #define ddrcReg_CTLR_T_MRD_MASK (0x7f << ddrcReg_CTLR_T_MRD_SHIFT) | ||
| 196 | |||
| 197 | /* ----------------------------------------------------- */ | ||
| 198 | |||
| 199 | #define ddrcReg_CTLR_T_RAS_SHIFT 0 | ||
| 200 | #define ddrcReg_CTLR_T_RAS_MASK (0x1f << ddrcReg_CTLR_T_RAS_SHIFT) | ||
| 201 | |||
| 202 | /* ----------------------------------------------------- */ | ||
| 203 | |||
| 204 | #define ddrcReg_CTLR_T_RC_SHIFT 0 | ||
| 205 | #define ddrcReg_CTLR_T_RC_MASK (0x1f << ddrcReg_CTLR_T_RC_SHIFT) | ||
| 206 | |||
| 207 | /* ----------------------------------------------------- */ | ||
| 208 | |||
| 209 | #define ddrcReg_CTLR_T_RCD_SCHEDULE_DELAY_SHIFT 8 | ||
| 210 | #define ddrcReg_CTLR_T_RCD_SCHEDULE_DELAY_MASK (0x7 << ddrcReg_CTLR_T_RCD_SCHEDULE_DELAY_SHIFT) | ||
| 211 | |||
| 212 | #define ddrcReg_CTLR_T_RCD_SHIFT 0 | ||
| 213 | #define ddrcReg_CTLR_T_RCD_MASK (0x7 << ddrcReg_CTLR_T_RCD_SHIFT) | ||
| 214 | |||
| 215 | /* ----------------------------------------------------- */ | ||
| 216 | |||
| 217 | #define ddrcReg_CTLR_T_RFC_SCHEDULE_DELAY_SHIFT 8 | ||
| 218 | #define ddrcReg_CTLR_T_RFC_SCHEDULE_DELAY_MASK (0x7f << ddrcReg_CTLR_T_RFC_SCHEDULE_DELAY_SHIFT) | ||
| 219 | |||
| 220 | #define ddrcReg_CTLR_T_RFC_SHIFT 0 | ||
| 221 | #define ddrcReg_CTLR_T_RFC_MASK (0x7f << ddrcReg_CTLR_T_RFC_SHIFT) | ||
| 222 | |||
| 223 | /* ----------------------------------------------------- */ | ||
| 224 | |||
| 225 | #define ddrcReg_CTLR_T_RP_SCHEDULE_DELAY_SHIFT 8 | ||
| 226 | #define ddrcReg_CTLR_T_RP_SCHEDULE_DELAY_MASK (0x7 << ddrcReg_CTLR_T_RP_SCHEDULE_DELAY_SHIFT) | ||
| 227 | |||
| 228 | #define ddrcReg_CTLR_T_RP_SHIFT 0 | ||
| 229 | #define ddrcReg_CTLR_T_RP_MASK (0xf << ddrcReg_CTLR_T_RP_SHIFT) | ||
| 230 | |||
| 231 | /* ----------------------------------------------------- */ | ||
| 232 | |||
| 233 | #define ddrcReg_CTLR_T_RRD_SHIFT 0 | ||
| 234 | #define ddrcReg_CTLR_T_RRD_MASK (0xf << ddrcReg_CTLR_T_RRD_SHIFT) | ||
| 235 | |||
| 236 | /* ----------------------------------------------------- */ | ||
| 237 | |||
| 238 | #define ddrcReg_CTLR_T_WR_SHIFT 0 | ||
| 239 | #define ddrcReg_CTLR_T_WR_MASK (0x7 << ddrcReg_CTLR_T_WR_SHIFT) | ||
| 240 | |||
| 241 | /* ----------------------------------------------------- */ | ||
| 242 | |||
| 243 | #define ddrcReg_CTLR_T_WTR_SHIFT 0 | ||
| 244 | #define ddrcReg_CTLR_T_WTR_MASK (0x7 << ddrcReg_CTLR_T_WTR_SHIFT) | ||
| 245 | |||
| 246 | /* ----------------------------------------------------- */ | ||
| 247 | |||
| 248 | #define ddrcReg_CTLR_T_XP_SHIFT 0 | ||
| 249 | #define ddrcReg_CTLR_T_XP_MASK (0xff << ddrcReg_CTLR_T_XP_SHIFT) | ||
| 250 | |||
| 251 | /* ----------------------------------------------------- */ | ||
| 252 | |||
| 253 | #define ddrcReg_CTLR_T_XSR_SHIFT 0 | ||
| 254 | #define ddrcReg_CTLR_T_XSR_MASK (0xff << ddrcReg_CTLR_T_XSR_SHIFT) | ||
| 255 | |||
| 256 | /* ----------------------------------------------------- */ | ||
| 257 | |||
| 258 | #define ddrcReg_CTLR_T_ESR_SHIFT 0 | ||
| 259 | #define ddrcReg_CTLR_T_ESR_MASK (0xff << ddrcReg_CTLR_T_ESR_SHIFT) | ||
| 260 | |||
| 261 | /* ----------------------------------------------------- */ | ||
| 262 | |||
| 263 | #define ddrcReg_CTLR_MEMORY_CFG2_WIDTH_MASK (0x3 << 6) | ||
| 264 | #define ddrcReg_CTLR_MEMORY_CFG2_WIDTH_16BITS (0 << 6) | ||
| 265 | #define ddrcReg_CTLR_MEMORY_CFG2_WIDTH_32BITS (1 << 6) | ||
| 266 | #define ddrcReg_CTLR_MEMORY_CFG2_WIDTH_64BITS (2 << 6) | ||
| 267 | |||
| 268 | #define ddrcReg_CTLR_MEMORY_CFG2_AXI_BANK_BITS_MASK (0x3 << 4) | ||
| 269 | #define ddrcReg_CTLR_MEMORY_CFG2_AXI_BANK_BITS_2 (0 << 4) | ||
| 270 | #define ddrcReg_CTLR_MEMORY_CFG2_AXI_BANK_BITS_3 (3 << 4) | ||
| 271 | |||
| 272 | #define ddrcReg_CTLR_MEMORY_CFG2_CKE_INIT_STATE_LOW (0 << 3) | ||
| 273 | #define ddrcReg_CTLR_MEMORY_CFG2_CKE_INIT_STATE_HIGH (1 << 3) | ||
| 274 | |||
| 275 | #define ddrcReg_CTLR_MEMORY_CFG2_DQM_INIT_STATE_LOW (0 << 2) | ||
| 276 | #define ddrcReg_CTLR_MEMORY_CFG2_DQM_INIT_STATE_HIGH (1 << 2) | ||
| 277 | |||
| 278 | #define ddrcReg_CTLR_MEMORY_CFG2_CLK_MASK (0x3 << 0) | ||
| 279 | #define ddrcReg_CTLR_MEMORY_CFG2_CLK_ASYNC (0 << 0) | ||
| 280 | #define ddrcReg_CTLR_MEMORY_CFG2_CLK_SYNC_A_LE_M (1 << 0) | ||
| 281 | #define ddrcReg_CTLR_MEMORY_CFG2_CLK_SYNC_A_GT_M (3 << 0) | ||
| 282 | |||
| 283 | /* ----------------------------------------------------- */ | ||
| 284 | |||
| 285 | #define ddrcReg_CTLR_MEMORY_CFG3_REFRESH_TO_SHIFT 0 | ||
| 286 | #define ddrcReg_CTLR_MEMORY_CFG3_REFRESH_TO_MASK (0x7 << ddrcReg_CTLR_MEMORY_CFG3_REFRESH_TO_SHIFT) | ||
| 287 | |||
| 288 | /* ----------------------------------------------------- */ | ||
| 289 | |||
| 290 | #define ddrcReg_CTLR_T_FAW_SCHEDULE_DELAY_SHIFT 8 | ||
| 291 | #define ddrcReg_CTLR_T_FAW_SCHEDULE_DELAY_MASK (0x1f << ddrcReg_CTLR_T_FAW_SCHEDULE_DELAY_SHIFT) | ||
| 292 | |||
| 293 | #define ddrcReg_CTLR_T_FAW_PERIOD_SHIFT 0 | ||
| 294 | #define ddrcReg_CTLR_T_FAW_PERIOD_MASK (0x1f << ddrcReg_CTLR_T_FAW_PERIOD_SHIFT) | ||
| 295 | |||
| 296 | /* -------------------------------------------------------------------- */ | ||
| 297 | /* -------------------------------------------------------------------- */ | ||
| 298 | /* ARM PL341 AXI ID QOS configuration registers, offset 0x100 */ | ||
| 299 | /* -------------------------------------------------------------------- */ | ||
| 300 | /* -------------------------------------------------------------------- */ | ||
| 301 | |||
| 302 | #define ddrcReg_CTLR_QOS_CNT 16 | ||
| 303 | #define ddrcReg_CTLR_QOS_MAX (ddrcReg_CTLR_QOS_CNT - 1) | ||
| 304 | |||
| 305 | typedef struct { | ||
| 306 | uint32_t cfg[ddrcReg_CTLR_QOS_CNT]; | ||
| 307 | } ddrcReg_CTLR_QOS_REG_t; | ||
| 308 | |||
| 309 | #define ddrcReg_CTLR_QOS_REG_OFFSET 0x100 | ||
| 310 | #define ddrcReg_CTLR_QOS_REGP ((volatile ddrcReg_CTLR_QOS_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_CTLR_QOS_REG_OFFSET)) | ||
| 311 | |||
| 312 | /* ----------------------------------------------------- */ | ||
| 313 | |||
| 314 | #define ddrcReg_CTLR_QOS_CFG_MAX_SHIFT 2 | ||
| 315 | #define ddrcReg_CTLR_QOS_CFG_MAX_MASK (0xff << ddrcReg_CTLR_QOS_CFG_MAX_SHIFT) | ||
| 316 | |||
| 317 | #define ddrcReg_CTLR_QOS_CFG_MIN_SHIFT 1 | ||
| 318 | #define ddrcReg_CTLR_QOS_CFG_MIN_MASK (1 << ddrcReg_CTLR_QOS_CFG_MIN_SHIFT) | ||
| 319 | |||
| 320 | #define ddrcReg_CTLR_QOS_CFG_ENABLE (1 << 0) | ||
| 321 | |||
| 322 | /* -------------------------------------------------------------------- */ | ||
| 323 | /* -------------------------------------------------------------------- */ | ||
| 324 | /* ARM PL341 Memory chip configuration registers, offset 0x200 */ | ||
| 325 | /* -------------------------------------------------------------------- */ | ||
| 326 | /* -------------------------------------------------------------------- */ | ||
| 327 | |||
| 328 | #define ddrcReg_CTLR_CHIP_CNT 4 | ||
| 329 | #define ddrcReg_CTLR_CHIP_MAX (ddrcReg_CTLR_CHIP_CNT - 1) | ||
| 330 | |||
| 331 | typedef struct { | ||
| 332 | uint32_t cfg[ddrcReg_CTLR_CHIP_CNT]; | ||
| 333 | } ddrcReg_CTLR_CHIP_REG_t; | ||
| 334 | |||
| 335 | #define ddrcReg_CTLR_CHIP_REG_OFFSET 0x200 | ||
| 336 | #define ddrcReg_CTLR_CHIP_REGP ((volatile ddrcReg_CTLR_CHIP_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_CTLR_CHIP_REG_OFFSET)) | ||
| 337 | |||
| 338 | /* ----------------------------------------------------- */ | ||
| 339 | |||
| 340 | #define ddrcReg_CTLR_CHIP_CFG_MEM_ORG_MASK (1 << 16) | ||
| 341 | #define ddrcReg_CTLR_CHIP_CFG_MEM_ORG_ROW_BANK_COL (0 << 16) | ||
| 342 | #define ddrcReg_CTLR_CHIP_CFG_MEM_ORG_BANK_ROW_COL (1 << 16) | ||
| 343 | |||
| 344 | #define ddrcReg_CTLR_CHIP_CFG_AXI_ADDR_MATCH_SHIFT 8 | ||
| 345 | #define ddrcReg_CTLR_CHIP_CFG_AXI_ADDR_MATCH_MASK (0xff << ddrcReg_CTLR_CHIP_CFG_AXI_ADDR_MATCH_SHIFT) | ||
| 346 | |||
| 347 | #define ddrcReg_CTLR_CHIP_CFG_AXI_ADDR_MASK_SHIFT 0 | ||
| 348 | #define ddrcReg_CTLR_CHIP_CFG_AXI_ADDR_MASK_MASK (0xff << ddrcReg_CTLR_CHIP_CFG_AXI_ADDR_MASK_SHIFT) | ||
| 349 | |||
| 350 | /* -------------------------------------------------------------------- */ | ||
| 351 | /* -------------------------------------------------------------------- */ | ||
| 352 | /* ARM PL341 User configuration registers, offset 0x300 */ | ||
| 353 | /* -------------------------------------------------------------------- */ | ||
| 354 | /* -------------------------------------------------------------------- */ | ||
| 355 | |||
| 356 | #define ddrcReg_CTLR_USER_OUTPUT_CNT 2 | ||
| 357 | |||
| 358 | typedef struct { | ||
| 359 | uint32_t input; | ||
| 360 | uint32_t output[ddrcReg_CTLR_USER_OUTPUT_CNT]; | ||
| 361 | uint32_t feature; | ||
| 362 | } ddrcReg_CTLR_USER_REG_t; | ||
| 363 | |||
| 364 | #define ddrcReg_CTLR_USER_REG_OFFSET 0x300 | ||
| 365 | #define ddrcReg_CTLR_USER_REGP ((volatile ddrcReg_CTLR_USER_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_CTLR_USER_REG_OFFSET)) | ||
| 366 | |||
| 367 | /* ----------------------------------------------------- */ | ||
| 368 | |||
| 369 | #define ddrcReg_CTLR_USER_INPUT_STATUS_SHIFT 0 | ||
| 370 | #define ddrcReg_CTLR_USER_INPUT_STATUS_MASK (0xff << ddrcReg_CTLR_USER_INPUT_STATUS_SHIFT) | ||
| 371 | |||
| 372 | /* ----------------------------------------------------- */ | ||
| 373 | |||
| 374 | #define ddrcReg_CTLR_USER_OUTPUT_CFG_SHIFT 0 | ||
| 375 | #define ddrcReg_CTLR_USER_OUTPUT_CFG_MASK (0xff << ddrcReg_CTLR_USER_OUTPUT_CFG_SHIFT) | ||
| 376 | |||
| 377 | #define ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_SHIFT 1 | ||
| 378 | #define ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_MASK (1 << ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_SHIFT) | ||
| 379 | #define ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_BP134 (0 << ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_SHIFT) | ||
| 380 | #define ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_PL301 (1 << ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_SHIFT) | ||
| 381 | #define ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_REGISTERED ddrcReg_CTLR_USER_OUTPUT_0_CFG_SYNC_BRIDGE_PL301 | ||
| 382 | |||
| 383 | /* ----------------------------------------------------- */ | ||
| 384 | |||
| 385 | #define ddrcReg_CTLR_FEATURE_WRITE_BLOCK_DISABLE (1 << 2) | ||
| 386 | #define ddrcReg_CTLR_FEATURE_EARLY_BURST_RSP_DISABLE (1 << 0) | ||
| 387 | |||
| 388 | /*********************************************************************/ | ||
| 389 | /* Broadcom DDR23 PHY register definitions */ | ||
| 390 | /*********************************************************************/ | ||
| 391 | |||
| 392 | /* -------------------------------------------------------------------- */ | ||
| 393 | /* -------------------------------------------------------------------- */ | ||
| 394 | /* Broadcom DDR23 PHY Address and Control register definitions */ | ||
| 395 | /* -------------------------------------------------------------------- */ | ||
| 396 | /* -------------------------------------------------------------------- */ | ||
| 397 | |||
| 398 | typedef struct { | ||
| 399 | uint32_t revision; | ||
| 400 | uint32_t pmCtl; | ||
| 401 | REG32_RSVD(0x0008, 0x0010); | ||
| 402 | uint32_t pllStatus; | ||
| 403 | uint32_t pllCfg; | ||
| 404 | uint32_t pllPreDiv; | ||
| 405 | uint32_t pllDiv; | ||
| 406 | uint32_t pllCtl1; | ||
| 407 | uint32_t pllCtl2; | ||
| 408 | uint32_t ssCtl; | ||
| 409 | uint32_t ssCfg; | ||
| 410 | uint32_t vdlStatic; | ||
| 411 | uint32_t vdlDynamic; | ||
| 412 | uint32_t padIdle; | ||
| 413 | uint32_t pvtComp; | ||
| 414 | uint32_t padDrive; | ||
| 415 | uint32_t clkRgltrCtl; | ||
| 416 | } ddrcReg_PHY_ADDR_CTL_REG_t; | ||
| 417 | |||
| 418 | #define ddrcReg_PHY_ADDR_CTL_REG_OFFSET 0x0400 | ||
| 419 | #define ddrcReg_PHY_ADDR_CTL_REGP ((volatile ddrcReg_PHY_ADDR_CTL_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_PHY_ADDR_CTL_REG_OFFSET)) | ||
| 420 | |||
| 421 | /* @todo These SS definitions are duplicates of ones below */ | ||
| 422 | |||
| 423 | #define ddrcReg_PHY_ADDR_SS_CTRL_ENABLE 0x00000001 | ||
| 424 | #define ddrcReg_PHY_ADDR_SS_CFG_CYCLE_PER_TICK_MASK 0xFFFF0000 | ||
| 425 | #define ddrcReg_PHY_ADDR_SS_CFG_CYCLE_PER_TICK_SHIFT 16 | ||
| 426 | #define ddrcReg_PHY_ADDR_SS_CFG_MIN_CYCLE_PER_TICK 10 /* Higher the value, lower the SS modulation frequency */ | ||
| 427 | #define ddrcReg_PHY_ADDR_SS_CFG_NDIV_AMPLITUDE_MASK 0x0000FFFF | ||
| 428 | #define ddrcReg_PHY_ADDR_SS_CFG_NDIV_AMPLITUDE_SHIFT 0 | ||
| 429 | |||
| 430 | /* ----------------------------------------------------- */ | ||
| 431 | |||
| 432 | #define ddrcReg_PHY_ADDR_CTL_REVISION_MAJOR_SHIFT 8 | ||
| 433 | #define ddrcReg_PHY_ADDR_CTL_REVISION_MAJOR_MASK (0xff << ddrcReg_PHY_ADDR_CTL_REVISION_MAJOR_SHIFT) | ||
| 434 | |||
| 435 | #define ddrcReg_PHY_ADDR_CTL_REVISION_MINOR_SHIFT 0 | ||
| 436 | #define ddrcReg_PHY_ADDR_CTL_REVISION_MINOR_MASK (0xff << ddrcReg_PHY_ADDR_CTL_REVISION_MINOR_SHIFT) | ||
| 437 | |||
| 438 | /* ----------------------------------------------------- */ | ||
| 439 | |||
| 440 | #define ddrcReg_PHY_ADDR_CTL_CLK_PM_CTL_DDR_CLK_DISABLE (1 << 0) | ||
| 441 | |||
| 442 | /* ----------------------------------------------------- */ | ||
| 443 | |||
| 444 | #define ddrcReg_PHY_ADDR_CTL_PLL_STATUS_LOCKED (1 << 0) | ||
| 445 | |||
| 446 | /* ----------------------------------------------------- */ | ||
| 447 | |||
| 448 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_DIV2_CLK_RESET (1 << 31) | ||
| 449 | |||
| 450 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_TEST_SEL_SHIFT 17 | ||
| 451 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_TEST_SEL_MASK (0x1f << ddrcReg_PHY_ADDR_CTL_PLL_CFG_TEST_SEL_SHIFT) | ||
| 452 | |||
| 453 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_TEST_ENABLE (1 << 16) | ||
| 454 | |||
| 455 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_BGAP_ADJ_SHIFT 12 | ||
| 456 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_BGAP_ADJ_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PLL_CFG_BGAP_ADJ_SHIFT) | ||
| 457 | |||
| 458 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_VCO_RNG (1 << 7) | ||
| 459 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_CH1_PWRDWN (1 << 6) | ||
| 460 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_BYPASS_ENABLE (1 << 5) | ||
| 461 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_CLKOUT_ENABLE (1 << 4) | ||
| 462 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_D_RESET (1 << 3) | ||
| 463 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_A_RESET (1 << 2) | ||
| 464 | #define ddrcReg_PHY_ADDR_CTL_PLL_CFG_PWRDWN (1 << 0) | ||
| 465 | |||
| 466 | /* ----------------------------------------------------- */ | ||
| 467 | |||
| 468 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_DITHER_MFB (1 << 26) | ||
| 469 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_PWRDWN (1 << 25) | ||
| 470 | |||
| 471 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_MODE_SHIFT 20 | ||
| 472 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_MODE_MASK (0x7 << ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_MODE_SHIFT) | ||
| 473 | |||
| 474 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_INT_SHIFT 8 | ||
| 475 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_INT_MASK (0x1ff << ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_INT_SHIFT) | ||
| 476 | |||
| 477 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_P2_SHIFT 4 | ||
| 478 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_P2_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_P2_SHIFT) | ||
| 479 | |||
| 480 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_P1_SHIFT 0 | ||
| 481 | #define ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_P1_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PLL_PRE_DIV_P1_SHIFT) | ||
| 482 | |||
| 483 | /* ----------------------------------------------------- */ | ||
| 484 | |||
| 485 | #define ddrcReg_PHY_ADDR_CTL_PLL_DIV_M1_SHIFT 24 | ||
| 486 | #define ddrcReg_PHY_ADDR_CTL_PLL_DIV_M1_MASK (0xff << ddrcReg_PHY_ADDR_CTL_PLL_DIV_M1_SHIFT) | ||
| 487 | |||
| 488 | #define ddrcReg_PHY_ADDR_CTL_PLL_DIV_FRAC_SHIFT 0 | ||
| 489 | #define ddrcReg_PHY_ADDR_CTL_PLL_DIV_FRAC_MASK (0xffffff << ddrcReg_PHY_ADDR_CTL_PLL_DIV_FRAC_SHIFT) | ||
| 490 | |||
| 491 | /* ----------------------------------------------------- */ | ||
| 492 | |||
| 493 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_TESTA_SHIFT 30 | ||
| 494 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_TESTA_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_TESTA_SHIFT) | ||
| 495 | |||
| 496 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_KVCO_XS_SHIFT 27 | ||
| 497 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_KVCO_XS_MASK (0x7 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_KVCO_XS_SHIFT) | ||
| 498 | |||
| 499 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_KVCO_XF_SHIFT 24 | ||
| 500 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_KVCO_XF_MASK (0x7 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_KVCO_XF_SHIFT) | ||
| 501 | |||
| 502 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_LPF_BW_SHIFT 22 | ||
| 503 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_LPF_BW_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_LPF_BW_SHIFT) | ||
| 504 | |||
| 505 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_LF_ORDER (0x1 << 21) | ||
| 506 | |||
| 507 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CN_SHIFT 19 | ||
| 508 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CN_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CN_SHIFT) | ||
| 509 | |||
| 510 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_RN_SHIFT 17 | ||
| 511 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_RN_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_RN_SHIFT) | ||
| 512 | |||
| 513 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CP_SHIFT 15 | ||
| 514 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CP_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CP_SHIFT) | ||
| 515 | |||
| 516 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CZ_SHIFT 13 | ||
| 517 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CZ_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_CZ_SHIFT) | ||
| 518 | |||
| 519 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_RZ_SHIFT 10 | ||
| 520 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_RZ_MASK (0x7 << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_RZ_SHIFT) | ||
| 521 | |||
| 522 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_ICPX_SHIFT 5 | ||
| 523 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_ICPX_MASK (0x1f << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_ICPX_SHIFT) | ||
| 524 | |||
| 525 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_ICP_OFF_SHIFT 0 | ||
| 526 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL1_ICP_OFF_MASK (0x1f << ddrcReg_PHY_ADDR_CTL_PLL_CTL1_ICP_OFF_SHIFT) | ||
| 527 | |||
| 528 | /* ----------------------------------------------------- */ | ||
| 529 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL2_PTAP_ADJ_SHIFT 4 | ||
| 530 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL2_PTAP_ADJ_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL2_PTAP_ADJ_SHIFT) | ||
| 531 | |||
| 532 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL2_CTAP_ADJ_SHIFT 2 | ||
| 533 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL2_CTAP_ADJ_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_PLL_CTL2_CTAP_ADJ_SHIFT) | ||
| 534 | |||
| 535 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL2_LOWCUR_ENABLE (0x1 << 1) | ||
| 536 | #define ddrcReg_PHY_ADDR_CTL_PLL_CTL2_BIASIN_ENABLE (0x1 << 0) | ||
| 537 | |||
| 538 | /* ----------------------------------------------------- */ | ||
| 539 | |||
| 540 | #define ddrcReg_PHY_ADDR_CTL_PLL_SS_EN_ENABLE (0x1 << 0) | ||
| 541 | |||
| 542 | /* ----------------------------------------------------- */ | ||
| 543 | |||
| 544 | #define ddrcReg_PHY_ADDR_CTL_PLL_SS_CFG_CYC_PER_TICK_SHIFT 16 | ||
| 545 | #define ddrcReg_PHY_ADDR_CTL_PLL_SS_CFG_CYC_PER_TICK_MASK (0xffff << ddrcReg_PHY_ADDR_CTL_PLL_SS_CFG_CYC_PER_TICK_SHIFT) | ||
| 546 | |||
| 547 | #define ddrcReg_PHY_ADDR_CTL_PLL_SS_CFG_NDIV_AMP_SHIFT 0 | ||
| 548 | #define ddrcReg_PHY_ADDR_CTL_PLL_SS_CFG_NDIV_AMP_MASK (0xffff << ddrcReg_PHY_ADDR_CTL_PLL_SS_CFG_NDIV_AMP_SHIFT) | ||
| 549 | |||
| 550 | /* ----------------------------------------------------- */ | ||
| 551 | |||
| 552 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_FORCE (1 << 20) | ||
| 553 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_ENABLE (1 << 16) | ||
| 554 | |||
| 555 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_FALL_SHIFT 12 | ||
| 556 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_FALL_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_FALL_SHIFT) | ||
| 557 | |||
| 558 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_RISE_SHIFT 8 | ||
| 559 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_RISE_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_RISE_SHIFT) | ||
| 560 | |||
| 561 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_STEP_SHIFT 0 | ||
| 562 | #define ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_STEP_MASK (0x3f << ddrcReg_PHY_ADDR_CTL_VDL_STATIC_OVR_STEP_SHIFT) | ||
| 563 | |||
| 564 | /* ----------------------------------------------------- */ | ||
| 565 | |||
| 566 | #define ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_ENABLE (1 << 16) | ||
| 567 | |||
| 568 | #define ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_FALL_SHIFT 12 | ||
| 569 | #define ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_FALL_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_FALL_SHIFT) | ||
| 570 | |||
| 571 | #define ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_RISE_SHIFT 8 | ||
| 572 | #define ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_RISE_MASK (0x3 << ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_RISE_SHIFT) | ||
| 573 | |||
| 574 | #define ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_STEP_SHIFT 0 | ||
| 575 | #define ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_STEP_MASK (0x3f << ddrcReg_PHY_ADDR_CTL_VDL_DYNAMIC_OVR_STEP_SHIFT) | ||
| 576 | |||
| 577 | /* ----------------------------------------------------- */ | ||
| 578 | |||
| 579 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_ENABLE (1u << 31) | ||
| 580 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_RXENB_DISABLE (1 << 8) | ||
| 581 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_CTL_IDDQ_DISABLE (1 << 6) | ||
| 582 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_CTL_REB_DISABLE (1 << 5) | ||
| 583 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_CTL_OEB_DISABLE (1 << 4) | ||
| 584 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_CKE_IDDQ_DISABLE (1 << 2) | ||
| 585 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_CKE_REB_DISABLE (1 << 1) | ||
| 586 | #define ddrcReg_PHY_ADDR_CTL_PAD_IDLE_CKE_OEB_DISABLE (1 << 0) | ||
| 587 | |||
| 588 | /* ----------------------------------------------------- */ | ||
| 589 | |||
| 590 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_PD_DONE (1 << 30) | ||
| 591 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ND_DONE (1 << 29) | ||
| 592 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_SAMPLE_DONE (1 << 28) | ||
| 593 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_SAMPLE_AUTO_ENABLE (1 << 27) | ||
| 594 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_SAMPLE_ENABLE (1 << 26) | ||
| 595 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ADDR_OVR_ENABLE (1 << 25) | ||
| 596 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_DQ_OVR_ENABLE (1 << 24) | ||
| 597 | |||
| 598 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_PD_SHIFT 20 | ||
| 599 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_PD_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PVT_COMP_PD_SHIFT) | ||
| 600 | |||
| 601 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ND_SHIFT 16 | ||
| 602 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ND_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PVT_COMP_ND_SHIFT) | ||
| 603 | |||
| 604 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ADDR_PD_SHIFT 12 | ||
| 605 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ADDR_PD_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PVT_COMP_ADDR_PD_SHIFT) | ||
| 606 | |||
| 607 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ADDR_ND_SHIFT 8 | ||
| 608 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_ADDR_ND_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PVT_COMP_ADDR_ND_SHIFT) | ||
| 609 | |||
| 610 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_DQ_PD_SHIFT 4 | ||
| 611 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_DQ_PD_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PVT_COMP_DQ_PD_SHIFT) | ||
| 612 | |||
| 613 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_DQ_ND_SHIFT 0 | ||
| 614 | #define ddrcReg_PHY_ADDR_CTL_PVT_COMP_DQ_ND_MASK (0xf << ddrcReg_PHY_ADDR_CTL_PVT_COMP_DQ_ND_SHIFT) | ||
| 615 | |||
| 616 | /* ----------------------------------------------------- */ | ||
| 617 | |||
| 618 | #define ddrcReg_PHY_ADDR_CTL_PAD_DRIVE_RT60B (1 << 4) | ||
| 619 | #define ddrcReg_PHY_ADDR_CTL_PAD_DRIVE_SEL_SSTL18 (1 << 3) | ||
| 620 | #define ddrcReg_PHY_ADDR_CTL_PAD_DRIVE_SELTXDRV_CI (1 << 2) | ||
| 621 | #define ddrcReg_PHY_ADDR_CTL_PAD_DRIVE_SELRXDRV (1 << 1) | ||
| 622 | #define ddrcReg_PHY_ADDR_CTL_PAD_DRIVE_SLEW (1 << 0) | ||
| 623 | |||
| 624 | /* ----------------------------------------------------- */ | ||
| 625 | |||
| 626 | #define ddrcReg_PHY_ADDR_CTL_CLK_RGLTR_CTL_PWR_HALF (1 << 1) | ||
| 627 | #define ddrcReg_PHY_ADDR_CTL_CLK_RGLTR_CTL_PWR_OFF (1 << 0) | ||
| 628 | |||
| 629 | /* -------------------------------------------------------------------- */ | ||
| 630 | /* -------------------------------------------------------------------- */ | ||
| 631 | /* Broadcom DDR23 PHY Byte Lane register definitions */ | ||
| 632 | /* -------------------------------------------------------------------- */ | ||
| 633 | /* -------------------------------------------------------------------- */ | ||
| 634 | |||
| 635 | #define ddrcReg_PHY_BYTE_LANE_CNT 2 | ||
| 636 | #define ddrcReg_PHY_BYTE_LANE_MAX (ddrcReg_CTLR_BYTE_LANE_CNT - 1) | ||
| 637 | |||
| 638 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_CNT 8 | ||
| 639 | |||
| 640 | typedef struct { | ||
| 641 | uint32_t revision; | ||
| 642 | uint32_t vdlCalibrate; | ||
| 643 | uint32_t vdlStatus; | ||
| 644 | REG32_RSVD(0x000c, 0x0010); | ||
| 645 | uint32_t vdlOverride[ddrcReg_PHY_BYTE_LANE_VDL_OVR_CNT]; | ||
| 646 | uint32_t readCtl; | ||
| 647 | uint32_t readStatus; | ||
| 648 | uint32_t readClear; | ||
| 649 | uint32_t padIdleCtl; | ||
| 650 | uint32_t padDriveCtl; | ||
| 651 | uint32_t padClkCtl; | ||
| 652 | uint32_t writeCtl; | ||
| 653 | uint32_t clkRegCtl; | ||
| 654 | } ddrcReg_PHY_BYTE_LANE_REG_t; | ||
| 655 | |||
| 656 | /* There are 2 instances of the byte Lane registers, one for each byte lane. */ | ||
| 657 | #define ddrcReg_PHY_BYTE_LANE_1_REG_OFFSET 0x0500 | ||
| 658 | #define ddrcReg_PHY_BYTE_LANE_2_REG_OFFSET 0x0600 | ||
| 659 | |||
| 660 | #define ddrcReg_PHY_BYTE_LANE_1_REGP ((volatile ddrcReg_PHY_BYTE_LANE_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_PHY_BYTE_LANE_1_REG_OFFSET)) | ||
| 661 | #define ddrcReg_PHY_BYTE_LANE_2_REGP ((volatile ddrcReg_PHY_BYTE_LANE_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_PHY_BYTE_LANE_2_REG_OFFSET)) | ||
| 662 | |||
| 663 | /* ----------------------------------------------------- */ | ||
| 664 | |||
| 665 | #define ddrcReg_PHY_BYTE_LANE_REVISION_MAJOR_SHIFT 8 | ||
| 666 | #define ddrcReg_PHY_BYTE_LANE_REVISION_MAJOR_MASK (0xff << ddrcReg_PHY_BYTE_LANE_REVISION_MAJOR_SHIFT) | ||
| 667 | |||
| 668 | #define ddrcReg_PHY_BYTE_LANE_REVISION_MINOR_SHIFT 0 | ||
| 669 | #define ddrcReg_PHY_BYTE_LANE_REVISION_MINOR_MASK (0xff << ddrcReg_PHY_BYTE_LANE_REVISION_MINOR_SHIFT) | ||
| 670 | |||
| 671 | /* ----------------------------------------------------- */ | ||
| 672 | |||
| 673 | #define ddrcReg_PHY_BYTE_LANE_VDL_CALIB_CLK_2CYCLE (1 << 4) | ||
| 674 | #define ddrcReg_PHY_BYTE_LANE_VDL_CALIB_CLK_1CYCLE (0 << 4) | ||
| 675 | |||
| 676 | #define ddrcReg_PHY_BYTE_LANE_VDL_CALIB_TEST (1 << 3) | ||
| 677 | #define ddrcReg_PHY_BYTE_LANE_VDL_CALIB_ALWAYS (1 << 2) | ||
| 678 | #define ddrcReg_PHY_BYTE_LANE_VDL_CALIB_ONCE (1 << 1) | ||
| 679 | #define ddrcReg_PHY_BYTE_LANE_VDL_CALIB_FAST (1 << 0) | ||
| 680 | |||
| 681 | /* ----------------------------------------------------- */ | ||
| 682 | |||
| 683 | /* The byte lane VDL status calibTotal[9:0] is comprised of [9:4] step value, [3:2] fine fall */ | ||
| 684 | /* and [1:0] fine rise. Note that calibTotal[9:0] is located at bit 4 in the VDL status */ | ||
| 685 | /* register. The fine rise and fall are no longer used, so add some definitions for just */ | ||
| 686 | /* the step setting to simplify things. */ | ||
| 687 | |||
| 688 | #define ddrcReg_PHY_BYTE_LANE_VDL_STATUS_STEP_SHIFT 8 | ||
| 689 | #define ddrcReg_PHY_BYTE_LANE_VDL_STATUS_STEP_MASK (0x3f << ddrcReg_PHY_BYTE_LANE_VDL_STATUS_STEP_SHIFT) | ||
| 690 | |||
| 691 | #define ddrcReg_PHY_BYTE_LANE_VDL_STATUS_TOTAL_SHIFT 4 | ||
| 692 | #define ddrcReg_PHY_BYTE_LANE_VDL_STATUS_TOTAL_MASK (0x3ff << ddrcReg_PHY_BYTE_LANE_VDL_STATUS_TOTAL_SHIFT) | ||
| 693 | |||
| 694 | #define ddrcReg_PHY_BYTE_LANE_VDL_STATUS_LOCK (1 << 1) | ||
| 695 | #define ddrcReg_PHY_BYTE_LANE_VDL_STATUS_IDLE (1 << 0) | ||
| 696 | |||
| 697 | /* ----------------------------------------------------- */ | ||
| 698 | |||
| 699 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_ENABLE (1 << 16) | ||
| 700 | |||
| 701 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_FALL_SHIFT 12 | ||
| 702 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_FALL_MASK (0x3 << ddrcReg_PHY_BYTE_LANE_VDL_OVR_FALL_SHIFT) | ||
| 703 | |||
| 704 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_RISE_SHIFT 8 | ||
| 705 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_RISE_MASK (0x3 << ddrcReg_PHY_BYTE_LANE_VDL_OVR_RISE_SHIFT) | ||
| 706 | |||
| 707 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_STEP_SHIFT 0 | ||
| 708 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_STEP_MASK (0x3f << ddrcReg_PHY_BYTE_LANE_VDL_OVR_STEP_SHIFT) | ||
| 709 | |||
| 710 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_STATIC_READ_DQS_P 0 | ||
| 711 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_STATIC_READ_DQS_N 1 | ||
| 712 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_STATIC_READ_EN 2 | ||
| 713 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_STATIC_WRITE_DQ_DQM 3 | ||
| 714 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_DYNAMIC_READ_DQS_P 4 | ||
| 715 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_DYNAMIC_READ_DQS_N 5 | ||
| 716 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_DYNAMIC_READ_EN 6 | ||
| 717 | #define ddrcReg_PHY_BYTE_LANE_VDL_OVR_IDX_DYNAMIC_WRITE_DQ_DQM 7 | ||
| 718 | |||
| 719 | /* ----------------------------------------------------- */ | ||
| 720 | |||
| 721 | #define ddrcReg_PHY_BYTE_LANE_READ_CTL_DELAY_SHIFT 8 | ||
| 722 | #define ddrcReg_PHY_BYTE_LANE_READ_CTL_DELAY_MASK (0x3 << ddrcReg_PHY_BYTE_LANE_READ_CTL_DELAY_SHIFT) | ||
| 723 | |||
| 724 | #define ddrcReg_PHY_BYTE_LANE_READ_CTL_DQ_ODT_ENABLE (1 << 3) | ||
| 725 | #define ddrcReg_PHY_BYTE_LANE_READ_CTL_DQ_ODT_ADJUST (1 << 2) | ||
| 726 | #define ddrcReg_PHY_BYTE_LANE_READ_CTL_RD_ODT_ENABLE (1 << 1) | ||
| 727 | #define ddrcReg_PHY_BYTE_LANE_READ_CTL_RD_ODT_ADJUST (1 << 0) | ||
| 728 | |||
| 729 | /* ----------------------------------------------------- */ | ||
| 730 | |||
| 731 | #define ddrcReg_PHY_BYTE_LANE_READ_STATUS_ERROR_SHIFT 0 | ||
| 732 | #define ddrcReg_PHY_BYTE_LANE_READ_STATUS_ERROR_MASK (0xf << ddrcReg_PHY_BYTE_LANE_READ_STATUS_ERROR_SHIFT) | ||
| 733 | |||
| 734 | /* ----------------------------------------------------- */ | ||
| 735 | |||
| 736 | #define ddrcReg_PHY_BYTE_LANE_READ_CLEAR_STATUS (1 << 0) | ||
| 737 | |||
| 738 | /* ----------------------------------------------------- */ | ||
| 739 | |||
| 740 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_ENABLE (1u << 31) | ||
| 741 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DM_RXENB_DISABLE (1 << 19) | ||
| 742 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DM_IDDQ_DISABLE (1 << 18) | ||
| 743 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DM_REB_DISABLE (1 << 17) | ||
| 744 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DM_OEB_DISABLE (1 << 16) | ||
| 745 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQ_RXENB_DISABLE (1 << 15) | ||
| 746 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQ_IDDQ_DISABLE (1 << 14) | ||
| 747 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQ_REB_DISABLE (1 << 13) | ||
| 748 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQ_OEB_DISABLE (1 << 12) | ||
| 749 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_READ_ENB_RXENB_DISABLE (1 << 11) | ||
| 750 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_READ_ENB_IDDQ_DISABLE (1 << 10) | ||
| 751 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_READ_ENB_REB_DISABLE (1 << 9) | ||
| 752 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_READ_ENB_OEB_DISABLE (1 << 8) | ||
| 753 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQS_RXENB_DISABLE (1 << 7) | ||
| 754 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQS_IDDQ_DISABLE (1 << 6) | ||
| 755 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQS_REB_DISABLE (1 << 5) | ||
| 756 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_DQS_OEB_DISABLE (1 << 4) | ||
| 757 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_CLK_RXENB_DISABLE (1 << 3) | ||
| 758 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_CLK_IDDQ_DISABLE (1 << 2) | ||
| 759 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_CLK_REB_DISABLE (1 << 1) | ||
| 760 | #define ddrcReg_PHY_BYTE_LANE_PAD_IDLE_CTL_CLK_OEB_DISABLE (1 << 0) | ||
| 761 | |||
| 762 | /* ----------------------------------------------------- */ | ||
| 763 | |||
| 764 | #define ddrcReg_PHY_BYTE_LANE_PAD_DRIVE_CTL_RT60B_DDR_READ_ENB (1 << 5) | ||
| 765 | #define ddrcReg_PHY_BYTE_LANE_PAD_DRIVE_CTL_RT60B (1 << 4) | ||
| 766 | #define ddrcReg_PHY_BYTE_LANE_PAD_DRIVE_CTL_SEL_SSTL18 (1 << 3) | ||
| 767 | #define ddrcReg_PHY_BYTE_LANE_PAD_DRIVE_CTL_SELTXDRV_CI (1 << 2) | ||
| 768 | #define ddrcReg_PHY_BYTE_LANE_PAD_DRIVE_CTL_SELRXDRV (1 << 1) | ||
| 769 | #define ddrcReg_PHY_BYTE_LANE_PAD_DRIVE_CTL_SLEW (1 << 0) | ||
| 770 | |||
| 771 | /* ----------------------------------------------------- */ | ||
| 772 | |||
| 773 | #define ddrcReg_PHY_BYTE_LANE_PAD_CLK_CTL_DISABLE (1 << 0) | ||
| 774 | |||
| 775 | /* ----------------------------------------------------- */ | ||
| 776 | |||
| 777 | #define ddrcReg_PHY_BYTE_LANE_WRITE_CTL_PREAMBLE_DDR3 (1 << 0) | ||
| 778 | |||
| 779 | /* ----------------------------------------------------- */ | ||
| 780 | |||
| 781 | #define ddrcReg_PHY_BYTE_LANE_CLK_REG_CTL_PWR_HALF (1 << 1) | ||
| 782 | #define ddrcReg_PHY_BYTE_LANE_CLK_REG_CTL_PWR_OFF (1 << 0) | ||
| 783 | |||
| 784 | /*********************************************************************/ | ||
| 785 | /* ARM PL341 DDRC to Broadcom DDR23 PHY glue register definitions */ | ||
| 786 | /*********************************************************************/ | ||
| 787 | |||
| 788 | typedef struct { | ||
| 789 | uint32_t cfg; | ||
| 790 | uint32_t actMonCnt; | ||
| 791 | uint32_t ctl; | ||
| 792 | uint32_t lbistCtl; | ||
| 793 | uint32_t lbistSeed; | ||
| 794 | uint32_t lbistStatus; | ||
| 795 | uint32_t tieOff; | ||
| 796 | uint32_t actMonClear; | ||
| 797 | uint32_t status; | ||
| 798 | uint32_t user; | ||
| 799 | } ddrcReg_CTLR_PHY_GLUE_REG_t; | ||
| 800 | |||
| 801 | #define ddrcReg_CTLR_PHY_GLUE_OFFSET 0x0700 | ||
| 802 | #define ddrcReg_CTLR_PHY_GLUE_REGP ((volatile ddrcReg_CTLR_PHY_GLUE_REG_t *) (MM_IO_BASE_DDRC + ddrcReg_CTLR_PHY_GLUE_OFFSET)) | ||
| 803 | |||
| 804 | /* ----------------------------------------------------- */ | ||
| 805 | |||
| 806 | /* DDR2 / AXI block phase alignment interrupt control */ | ||
| 807 | #define ddrcReg_CTLR_PHY_GLUE_CFG_INT_SHIFT 18 | ||
| 808 | #define ddrcReg_CTLR_PHY_GLUE_CFG_INT_MASK (0x3 << ddrcReg_CTLR_PHY_GLUE_CFG_INT_SHIFT) | ||
| 809 | #define ddrcReg_CTLR_PHY_GLUE_CFG_INT_OFF (0 << ddrcReg_CTLR_PHY_GLUE_CFG_INT_SHIFT) | ||
| 810 | #define ddrcReg_CTLR_PHY_GLUE_CFG_INT_ON_TIGHT (1 << ddrcReg_CTLR_PHY_GLUE_CFG_INT_SHIFT) | ||
| 811 | #define ddrcReg_CTLR_PHY_GLUE_CFG_INT_ON_MEDIUM (2 << ddrcReg_CTLR_PHY_GLUE_CFG_INT_SHIFT) | ||
| 812 | #define ddrcReg_CTLR_PHY_GLUE_CFG_INT_ON_LOOSE (3 << ddrcReg_CTLR_PHY_GLUE_CFG_INT_SHIFT) | ||
| 813 | |||
| 814 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PLL_REFCLK_SHIFT 17 | ||
| 815 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PLL_REFCLK_MASK (1 << ddrcReg_CTLR_PHY_GLUE_CFG_PLL_REFCLK_SHIFT) | ||
| 816 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PLL_REFCLK_DIFFERENTIAL (0 << ddrcReg_CTLR_PHY_GLUE_CFG_PLL_REFCLK_SHIFT) | ||
| 817 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PLL_REFCLK_CMOS (1 << ddrcReg_CTLR_PHY_GLUE_CFG_PLL_REFCLK_SHIFT) | ||
| 818 | |||
| 819 | #define ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_SHIFT 16 | ||
| 820 | #define ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_MASK (1 << ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_SHIFT) | ||
| 821 | #define ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_DEEP (0 << ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_SHIFT) | ||
| 822 | #define ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_SHALLOW (1 << ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_SHIFT) | ||
| 823 | #define ddrcReg_CTLR_PHY_GLUE_CFG_HW_FIXED_ALIGNMENT_DISABLED ddrcReg_CTLR_PHY_GLUE_CFG_DIV2CLK_TREE_SHALLOW | ||
| 824 | |||
| 825 | #define ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_SHIFT 15 | ||
| 826 | #define ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_MASK (1 << ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_SHIFT) | ||
| 827 | #define ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_BP134 (0 << ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_SHIFT) | ||
| 828 | #define ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_PL301 (1 << ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_SHIFT) | ||
| 829 | #define ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_REGISTERED ddrcReg_CTLR_PHY_GLUE_CFG_SYNC_BRIDGE_PL301 | ||
| 830 | |||
| 831 | /* Software control of PHY VDL updates from control register settings. Bit 13 enables the use of Bit 14. */ | ||
| 832 | /* If software control is not enabled, then updates occur when a refresh command is issued by the hardware */ | ||
| 833 | /* controller. If 2 chips selects are being used, then software control must be enabled. */ | ||
| 834 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PHY_VDL_UPDATE_SW_CTL_LOAD (1 << 14) | ||
| 835 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PHY_VDL_UPDATE_SW_CTL_ENABLE (1 << 13) | ||
| 836 | |||
| 837 | /* Use these to bypass a pipeline stage. By default the ADDR is off but the BYTE LANE in / out are on. */ | ||
| 838 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PHY_ADDR_CTL_IN_BYPASS_PIPELINE_STAGE (1 << 12) | ||
| 839 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PHY_BYTE_LANE_IN_BYPASS_PIPELINE_STAGE (1 << 11) | ||
| 840 | #define ddrcReg_CTLR_PHY_GLUE_CFG_PHY_BYTE_LANE_OUT_BYPASS_PIPELINE_STAGE (1 << 10) | ||
| 841 | |||
| 842 | /* Chip select count */ | ||
| 843 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CS_CNT_SHIFT 9 | ||
| 844 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CS_CNT_MASK (1 << ddrcReg_CTLR_PHY_GLUE_CFG_CS_CNT_SHIFT) | ||
| 845 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CS_CNT_1 (0 << ddrcReg_CTLR_PHY_GLUE_CFG_CS_CNT_SHIFT) | ||
| 846 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CS_CNT_2 (1 << ddrcReg_CTLR_PHY_GLUE_CFG_CS_CNT_SHIFT) | ||
| 847 | |||
| 848 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CLK_SHIFT 8 | ||
| 849 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CLK_ASYNC (0 << ddrcReg_CTLR_PHY_GLUE_CFG_CLK_SHIFT) | ||
| 850 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CLK_SYNC (1 << ddrcReg_CTLR_PHY_GLUE_CFG_CLK_SHIFT) | ||
| 851 | |||
| 852 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CKE_INIT_SHIFT 7 | ||
| 853 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CKE_INIT_LOW (0 << ddrcReg_CTLR_PHY_GLUE_CFG_CKE_INIT_SHIFT) | ||
| 854 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CKE_INIT_HIGH (1 << ddrcReg_CTLR_PHY_GLUE_CFG_CKE_INIT_SHIFT) | ||
| 855 | |||
| 856 | #define ddrcReg_CTLR_PHY_GLUE_CFG_DQM_INIT_SHIFT 6 | ||
| 857 | #define ddrcReg_CTLR_PHY_GLUE_CFG_DQM_INIT_LOW (0 << ddrcReg_CTLR_PHY_GLUE_CFG_DQM_INIT_SHIFT) | ||
| 858 | #define ddrcReg_CTLR_PHY_GLUE_CFG_DQM_INIT_HIGH (1 << ddrcReg_CTLR_PHY_GLUE_CFG_DQM_INIT_SHIFT) | ||
| 859 | |||
| 860 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CAS_LATENCY_SHIFT 0 | ||
| 861 | #define ddrcReg_CTLR_PHY_GLUE_CFG_CAS_LATENCY_MASK (0x7 << ddrcReg_CTLR_PHY_GLUE_CFG_CAS_LATENCY_SHIFT) | ||
| 862 | |||
| 863 | /* ----------------------------------------------------- */ | ||
| 864 | #define ddrcReg_CTLR_PHY_GLUE_STATUS_PHASE_SHIFT 0 | ||
| 865 | #define ddrcReg_CTLR_PHY_GLUE_STATUS_PHASE_MASK (0x7f << ddrcReg_CTLR_PHY_GLUE_STATUS_PHASE_SHIFT) | ||
| 866 | |||
| 867 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 868 | |||
| 869 | #ifdef __cplusplus | ||
| 870 | } /* end extern "C" */ | ||
| 871 | #endif | ||
| 872 | #endif /* DDRC_REG_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/dmacHw_priv.h b/arch/arm/mach-bcmring/include/mach/csp/dmacHw_priv.h new file mode 100644 index 00000000000..d67e2f8c22d --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/dmacHw_priv.h | |||
| @@ -0,0 +1,145 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file dmacHw_priv.h | ||
| 18 | * | ||
| 19 | * @brief Private Definitions for low level DMA driver | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | |||
| 24 | #ifndef _DMACHW_PRIV_H | ||
| 25 | #define _DMACHW_PRIV_H | ||
| 26 | |||
| 27 | #include <csp/stdint.h> | ||
| 28 | |||
| 29 | /* Data type for DMA Link List Item */ | ||
| 30 | typedef struct { | ||
| 31 | uint32_t sar; /* Source Address Register. | ||
| 32 | Address must be aligned to CTLx.SRC_TR_WIDTH. */ | ||
| 33 | uint32_t dar; /* Destination Address Register. | ||
| 34 | Address must be aligned to CTLx.DST_TR_WIDTH. */ | ||
| 35 | uint32_t llpPhy; /* LLP contains the physical address of the next descriptor for block chaining using linked lists. | ||
| 36 | Address MUST be aligned to a 32-bit boundary. */ | ||
| 37 | dmacHw_REG64_t ctl; /* Control Register. 64 bits */ | ||
| 38 | uint32_t sstat; /* Source Status Register */ | ||
| 39 | uint32_t dstat; /* Destination Status Register */ | ||
| 40 | uint32_t devCtl; /* Device specific control information */ | ||
| 41 | uint32_t llp; /* LLP contains the virtual address of the next descriptor for block chaining using linked lists. */ | ||
| 42 | } dmacHw_DESC_t; | ||
| 43 | |||
| 44 | /* | ||
| 45 | * Descriptor ring pointers | ||
| 46 | */ | ||
| 47 | typedef struct { | ||
| 48 | int num; /* Number of link items */ | ||
| 49 | dmacHw_DESC_t *pHead; /* Head of descriptor ring (for writing) */ | ||
| 50 | dmacHw_DESC_t *pTail; /* Tail of descriptor ring (for reading) */ | ||
| 51 | dmacHw_DESC_t *pProg; /* Descriptor to program the channel (for programming the channel register) */ | ||
| 52 | dmacHw_DESC_t *pEnd; /* End of current descriptor chain */ | ||
| 53 | dmacHw_DESC_t *pFree; /* Descriptor to free memory (freeing dynamic memory) */ | ||
| 54 | uint32_t virt2PhyOffset; /* Virtual to physical address offset for the descriptor ring */ | ||
| 55 | } dmacHw_DESC_RING_t; | ||
| 56 | |||
| 57 | /* | ||
| 58 | * DMA channel control block | ||
| 59 | */ | ||
| 60 | typedef struct { | ||
| 61 | uint32_t module; /* DMA controller module (0-1) */ | ||
| 62 | uint32_t channel; /* DMA channel (0-7) */ | ||
| 63 | volatile uint32_t varDataStarted; /* Flag indicating variable data channel is enabled */ | ||
| 64 | volatile uint32_t descUpdated; /* Flag to indicate descriptor update is complete */ | ||
| 65 | void *userData; /* Channel specifc user data */ | ||
| 66 | } dmacHw_CBLK_t; | ||
| 67 | |||
| 68 | #define dmacHw_ASSERT(a) if (!(a)) while (1) | ||
| 69 | #define dmacHw_MAX_CHANNEL_COUNT 16 | ||
| 70 | #define dmacHw_FREE_USER_MEMORY 0xFFFFFFFF | ||
| 71 | #define dmacHw_DESC_FREE dmacHw_REG_CTL_DONE | ||
| 72 | #define dmacHw_DESC_INIT ((dmacHw_DESC_t *) 0xFFFFFFFF) | ||
| 73 | #define dmacHw_MAX_BLOCKSIZE 4064 | ||
| 74 | #define dmacHw_GET_DESC_RING(addr) (dmacHw_DESC_RING_t *)(addr) | ||
| 75 | #define dmacHw_ADDRESS_MASK(byte) ((byte) - 1) | ||
| 76 | #define dmacHw_NEXT_DESC(rp, dp) ((rp)->dp = (dmacHw_DESC_t *)(rp)->dp->llp) | ||
| 77 | #define dmacHw_HANDLE_TO_CBLK(handle) ((dmacHw_CBLK_t *) (handle)) | ||
| 78 | #define dmacHw_CBLK_TO_HANDLE(cblkp) ((dmacHw_HANDLE_t) (cblkp)) | ||
| 79 | #define dmacHw_DST_IS_MEMORY(tt) (((tt) == dmacHw_TRANSFER_TYPE_PERIPHERAL_TO_MEM) || ((tt) == dmacHw_TRANSFER_TYPE_MEM_TO_MEM)) ? 1 : 0 | ||
| 80 | |||
| 81 | /****************************************************************************/ | ||
| 82 | /** | ||
| 83 | * @brief Get next available transaction width | ||
| 84 | * | ||
| 85 | * | ||
| 86 | * @return On success : Next available transaction width | ||
| 87 | * On failure : dmacHw_TRANSACTION_WIDTH_8 | ||
| 88 | * | ||
| 89 | * @note | ||
| 90 | * None | ||
| 91 | */ | ||
| 92 | /****************************************************************************/ | ||
| 93 | static inline dmacHw_TRANSACTION_WIDTH_e dmacHw_GetNextTrWidth(dmacHw_TRANSACTION_WIDTH_e tw /* [ IN ] Current transaction width */ | ||
| 94 | ) { | ||
| 95 | if (tw & dmacHw_REG_CTL_SRC_TR_WIDTH_MASK) { | ||
| 96 | return ((tw >> dmacHw_REG_CTL_SRC_TR_WIDTH_SHIFT) - | ||
| 97 | 1) << dmacHw_REG_CTL_SRC_TR_WIDTH_SHIFT; | ||
| 98 | } else if (tw & dmacHw_REG_CTL_DST_TR_WIDTH_MASK) { | ||
| 99 | return ((tw >> dmacHw_REG_CTL_DST_TR_WIDTH_SHIFT) - | ||
| 100 | 1) << dmacHw_REG_CTL_DST_TR_WIDTH_SHIFT; | ||
| 101 | } | ||
| 102 | |||
| 103 | /* Default return */ | ||
| 104 | return dmacHw_SRC_TRANSACTION_WIDTH_8; | ||
| 105 | } | ||
| 106 | |||
| 107 | /****************************************************************************/ | ||
| 108 | /** | ||
| 109 | * @brief Get number of bytes per transaction | ||
| 110 | * | ||
| 111 | * @return Number of bytes per transaction | ||
| 112 | * | ||
| 113 | * | ||
| 114 | * @note | ||
| 115 | * None | ||
| 116 | */ | ||
| 117 | /****************************************************************************/ | ||
| 118 | static inline int dmacHw_GetTrWidthInBytes(dmacHw_TRANSACTION_WIDTH_e tw /* [ IN ] Transaction width */ | ||
| 119 | ) { | ||
| 120 | int width = 1; | ||
| 121 | switch (tw) { | ||
| 122 | case dmacHw_SRC_TRANSACTION_WIDTH_8: | ||
| 123 | width = 1; | ||
| 124 | break; | ||
| 125 | case dmacHw_SRC_TRANSACTION_WIDTH_16: | ||
| 126 | case dmacHw_DST_TRANSACTION_WIDTH_16: | ||
| 127 | width = 2; | ||
| 128 | break; | ||
| 129 | case dmacHw_SRC_TRANSACTION_WIDTH_32: | ||
| 130 | case dmacHw_DST_TRANSACTION_WIDTH_32: | ||
| 131 | width = 4; | ||
| 132 | break; | ||
| 133 | case dmacHw_SRC_TRANSACTION_WIDTH_64: | ||
| 134 | case dmacHw_DST_TRANSACTION_WIDTH_64: | ||
| 135 | width = 8; | ||
| 136 | break; | ||
| 137 | default: | ||
| 138 | dmacHw_ASSERT(0); | ||
| 139 | } | ||
| 140 | |||
| 141 | /* Default transaction width */ | ||
| 142 | return width; | ||
| 143 | } | ||
| 144 | |||
| 145 | #endif /* _DMACHW_PRIV_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/dmacHw_reg.h b/arch/arm/mach-bcmring/include/mach/csp/dmacHw_reg.h new file mode 100644 index 00000000000..f1ecf96f2da --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/dmacHw_reg.h | |||
| @@ -0,0 +1,406 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file dmacHw_reg.h | ||
| 18 | * | ||
| 19 | * @brief Definitions for low level DMA registers | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | |||
| 24 | #ifndef _DMACHW_REG_H | ||
| 25 | #define _DMACHW_REG_H | ||
| 26 | |||
| 27 | #include <csp/stdint.h> | ||
| 28 | #include <mach/csp/mm_io.h> | ||
| 29 | |||
| 30 | /* Data type for 64 bit little endian register */ | ||
| 31 | typedef struct { | ||
| 32 | volatile uint32_t lo; /* Lower 32 bit in little endian mode */ | ||
| 33 | volatile uint32_t hi; /* Upper 32 bit in little endian mode */ | ||
| 34 | } dmacHw_REG64_t; | ||
| 35 | |||
| 36 | /* Data type representing DMA channel registers */ | ||
| 37 | typedef struct { | ||
| 38 | dmacHw_REG64_t ChannelSar; /* Source Address Register. 64 bits (upper 32 bits are reserved) | ||
| 39 | Address must be aligned to CTLx.SRC_TR_WIDTH. | ||
| 40 | */ | ||
| 41 | dmacHw_REG64_t ChannelDar; /* Destination Address Register.64 bits (upper 32 bits are reserved) | ||
| 42 | Address must be aligned to CTLx.DST_TR_WIDTH. | ||
| 43 | */ | ||
| 44 | dmacHw_REG64_t ChannelLlp; /* Link List Pointer.64 bits (upper 32 bits are reserved) | ||
| 45 | LLP contains the pointer to the next LLI for block chaining using linked lists. | ||
| 46 | If LLPis set to 0x0, then transfers using linked lists are not enabled. | ||
| 47 | Address MUST be aligned to a 32-bit boundary. | ||
| 48 | */ | ||
| 49 | dmacHw_REG64_t ChannelCtl; /* Control Register. 64 bits */ | ||
| 50 | dmacHw_REG64_t ChannelSstat; /* Source Status Register */ | ||
| 51 | dmacHw_REG64_t ChannelDstat; /* Destination Status Register */ | ||
| 52 | dmacHw_REG64_t ChannelSstatAddr; /* Source Status Address Register */ | ||
| 53 | dmacHw_REG64_t ChannelDstatAddr; /* Destination Status Address Register */ | ||
| 54 | dmacHw_REG64_t ChannelConfig; /* Channel Configuration Register */ | ||
| 55 | dmacHw_REG64_t SrcGather; /* Source gather register */ | ||
| 56 | dmacHw_REG64_t DstScatter; /* Destination scatter register */ | ||
| 57 | } dmacHw_CH_REG_t; | ||
| 58 | |||
| 59 | /* Data type for RAW interrupt status registers */ | ||
| 60 | typedef struct { | ||
| 61 | dmacHw_REG64_t RawTfr; /* Raw Status for IntTfr Interrupt */ | ||
| 62 | dmacHw_REG64_t RawBlock; /* Raw Status for IntBlock Interrupt */ | ||
| 63 | dmacHw_REG64_t RawSrcTran; /* Raw Status for IntSrcTran Interrupt */ | ||
| 64 | dmacHw_REG64_t RawDstTran; /* Raw Status for IntDstTran Interrupt */ | ||
| 65 | dmacHw_REG64_t RawErr; /* Raw Status for IntErr Interrupt */ | ||
| 66 | } dmacHw_INT_RAW_t; | ||
| 67 | |||
| 68 | /* Data type for interrupt status registers */ | ||
| 69 | typedef struct { | ||
| 70 | dmacHw_REG64_t StatusTfr; /* Status for IntTfr Interrupt */ | ||
| 71 | dmacHw_REG64_t StatusBlock; /* Status for IntBlock Interrupt */ | ||
| 72 | dmacHw_REG64_t StatusSrcTran; /* Status for IntSrcTran Interrupt */ | ||
| 73 | dmacHw_REG64_t StatusDstTran; /* Status for IntDstTran Interrupt */ | ||
| 74 | dmacHw_REG64_t StatusErr; /* Status for IntErr Interrupt */ | ||
| 75 | } dmacHw_INT_STATUS_t; | ||
| 76 | |||
| 77 | /* Data type for interrupt mask registers*/ | ||
| 78 | typedef struct { | ||
| 79 | dmacHw_REG64_t MaskTfr; /* Mask for IntTfr Interrupt */ | ||
| 80 | dmacHw_REG64_t MaskBlock; /* Mask for IntBlock Interrupt */ | ||
| 81 | dmacHw_REG64_t MaskSrcTran; /* Mask for IntSrcTran Interrupt */ | ||
| 82 | dmacHw_REG64_t MaskDstTran; /* Mask for IntDstTran Interrupt */ | ||
| 83 | dmacHw_REG64_t MaskErr; /* Mask for IntErr Interrupt */ | ||
| 84 | } dmacHw_INT_MASK_t; | ||
| 85 | |||
| 86 | /* Data type for interrupt clear registers */ | ||
| 87 | typedef struct { | ||
| 88 | dmacHw_REG64_t ClearTfr; /* Clear for IntTfr Interrupt */ | ||
| 89 | dmacHw_REG64_t ClearBlock; /* Clear for IntBlock Interrupt */ | ||
| 90 | dmacHw_REG64_t ClearSrcTran; /* Clear for IntSrcTran Interrupt */ | ||
| 91 | dmacHw_REG64_t ClearDstTran; /* Clear for IntDstTran Interrupt */ | ||
| 92 | dmacHw_REG64_t ClearErr; /* Clear for IntErr Interrupt */ | ||
| 93 | dmacHw_REG64_t StatusInt; /* Status for each interrupt type */ | ||
| 94 | } dmacHw_INT_CLEAR_t; | ||
| 95 | |||
| 96 | /* Data type for software handshaking registers */ | ||
| 97 | typedef struct { | ||
| 98 | dmacHw_REG64_t ReqSrcReg; /* Source Software Transaction Request Register */ | ||
| 99 | dmacHw_REG64_t ReqDstReg; /* Destination Software Transaction Request Register */ | ||
| 100 | dmacHw_REG64_t SglReqSrcReg; /* Single Source Transaction Request Register */ | ||
| 101 | dmacHw_REG64_t SglReqDstReg; /* Single Destination Transaction Request Register */ | ||
| 102 | dmacHw_REG64_t LstSrcReg; /* Last Source Transaction Request Register */ | ||
| 103 | dmacHw_REG64_t LstDstReg; /* Last Destination Transaction Request Register */ | ||
| 104 | } dmacHw_SW_HANDSHAKE_t; | ||
| 105 | |||
| 106 | /* Data type for misc. registers */ | ||
| 107 | typedef struct { | ||
| 108 | dmacHw_REG64_t DmaCfgReg; /* DMA Configuration Register */ | ||
| 109 | dmacHw_REG64_t ChEnReg; /* DMA Channel Enable Register */ | ||
| 110 | dmacHw_REG64_t DmaIdReg; /* DMA ID Register */ | ||
| 111 | dmacHw_REG64_t DmaTestReg; /* DMA Test Register */ | ||
| 112 | dmacHw_REG64_t Reserved0; /* Reserved */ | ||
| 113 | dmacHw_REG64_t Reserved1; /* Reserved */ | ||
| 114 | dmacHw_REG64_t CompParm6; /* Component Parameter 6 */ | ||
| 115 | dmacHw_REG64_t CompParm5; /* Component Parameter 5 */ | ||
| 116 | dmacHw_REG64_t CompParm4; /* Component Parameter 4 */ | ||
| 117 | dmacHw_REG64_t CompParm3; /* Component Parameter 3 */ | ||
| 118 | dmacHw_REG64_t CompParm2; /* Component Parameter 2 */ | ||
| 119 | dmacHw_REG64_t CompParm1; /* Component Parameter 1 */ | ||
| 120 | dmacHw_REG64_t CompId; /* Compoent ID */ | ||
| 121 | } dmacHw_MISC_t; | ||
| 122 | |||
| 123 | /* Base registers */ | ||
| 124 | #define dmacHw_0_MODULE_BASE_ADDR (char *) MM_IO_BASE_DMA0 /* DMAC 0 module's base address */ | ||
| 125 | #define dmacHw_1_MODULE_BASE_ADDR (char *) MM_IO_BASE_DMA1 /* DMAC 1 module's base address */ | ||
| 126 | |||
| 127 | extern uint32_t dmaChannelCount_0; | ||
| 128 | extern uint32_t dmaChannelCount_1; | ||
| 129 | |||
| 130 | /* Define channel specific registers */ | ||
| 131 | #define dmacHw_CHAN_BASE(module, chan) ((dmacHw_CH_REG_t *) ((char *)((module) ? dmacHw_1_MODULE_BASE_ADDR : dmacHw_0_MODULE_BASE_ADDR) + ((chan) * sizeof(dmacHw_CH_REG_t)))) | ||
| 132 | |||
| 133 | /* Raw interrupt status registers */ | ||
| 134 | #define dmacHw_REG_INT_RAW_BASE(module) ((char *)dmacHw_CHAN_BASE((module), ((module) ? dmaChannelCount_1 : dmaChannelCount_0))) | ||
| 135 | #define dmacHw_REG_INT_RAW_TRAN(module) (((dmacHw_INT_RAW_t *) dmacHw_REG_INT_RAW_BASE((module)))->RawTfr.lo) | ||
| 136 | #define dmacHw_REG_INT_RAW_BLOCK(module) (((dmacHw_INT_RAW_t *) dmacHw_REG_INT_RAW_BASE((module)))->RawBlock.lo) | ||
| 137 | #define dmacHw_REG_INT_RAW_STRAN(module) (((dmacHw_INT_RAW_t *) dmacHw_REG_INT_RAW_BASE((module)))->RawSrcTran.lo) | ||
| 138 | #define dmacHw_REG_INT_RAW_DTRAN(module) (((dmacHw_INT_RAW_t *) dmacHw_REG_INT_RAW_BASE((module)))->RawDstTran.lo) | ||
| 139 | #define dmacHw_REG_INT_RAW_ERROR(module) (((dmacHw_INT_RAW_t *) dmacHw_REG_INT_RAW_BASE((module)))->RawErr.lo) | ||
| 140 | |||
| 141 | /* Interrupt status registers */ | ||
| 142 | #define dmacHw_REG_INT_STAT_BASE(module) ((char *)(dmacHw_REG_INT_RAW_BASE((module)) + sizeof(dmacHw_INT_RAW_t))) | ||
| 143 | #define dmacHw_REG_INT_STAT_TRAN(module) (((dmacHw_INT_STATUS_t *) dmacHw_REG_INT_STAT_BASE((module)))->StatusTfr.lo) | ||
| 144 | #define dmacHw_REG_INT_STAT_BLOCK(module) (((dmacHw_INT_STATUS_t *) dmacHw_REG_INT_STAT_BASE((module)))->StatusBlock.lo) | ||
| 145 | #define dmacHw_REG_INT_STAT_STRAN(module) (((dmacHw_INT_STATUS_t *) dmacHw_REG_INT_STAT_BASE((module)))->StatusSrcTran.lo) | ||
| 146 | #define dmacHw_REG_INT_STAT_DTRAN(module) (((dmacHw_INT_STATUS_t *) dmacHw_REG_INT_STAT_BASE((module)))->StatusDstTran.lo) | ||
| 147 | #define dmacHw_REG_INT_STAT_ERROR(module) (((dmacHw_INT_STATUS_t *) dmacHw_REG_INT_STAT_BASE((module)))->StatusErr.lo) | ||
| 148 | |||
| 149 | /* Interrupt status registers */ | ||
| 150 | #define dmacHw_REG_INT_MASK_BASE(module) ((char *)(dmacHw_REG_INT_STAT_BASE((module)) + sizeof(dmacHw_INT_STATUS_t))) | ||
| 151 | #define dmacHw_REG_INT_MASK_TRAN(module) (((dmacHw_INT_MASK_t *) dmacHw_REG_INT_MASK_BASE((module)))->MaskTfr.lo) | ||
| 152 | #define dmacHw_REG_INT_MASK_BLOCK(module) (((dmacHw_INT_MASK_t *) dmacHw_REG_INT_MASK_BASE((module)))->MaskBlock.lo) | ||
| 153 | #define dmacHw_REG_INT_MASK_STRAN(module) (((dmacHw_INT_MASK_t *) dmacHw_REG_INT_MASK_BASE((module)))->MaskSrcTran.lo) | ||
| 154 | #define dmacHw_REG_INT_MASK_DTRAN(module) (((dmacHw_INT_MASK_t *) dmacHw_REG_INT_MASK_BASE((module)))->MaskDstTran.lo) | ||
| 155 | #define dmacHw_REG_INT_MASK_ERROR(module) (((dmacHw_INT_MASK_t *) dmacHw_REG_INT_MASK_BASE((module)))->MaskErr.lo) | ||
| 156 | |||
| 157 | /* Interrupt clear registers */ | ||
| 158 | #define dmacHw_REG_INT_CLEAR_BASE(module) ((char *)(dmacHw_REG_INT_MASK_BASE((module)) + sizeof(dmacHw_INT_MASK_t))) | ||
| 159 | #define dmacHw_REG_INT_CLEAR_TRAN(module) (((dmacHw_INT_CLEAR_t *) dmacHw_REG_INT_CLEAR_BASE((module)))->ClearTfr.lo) | ||
| 160 | #define dmacHw_REG_INT_CLEAR_BLOCK(module) (((dmacHw_INT_CLEAR_t *) dmacHw_REG_INT_CLEAR_BASE((module)))->ClearBlock.lo) | ||
| 161 | #define dmacHw_REG_INT_CLEAR_STRAN(module) (((dmacHw_INT_CLEAR_t *) dmacHw_REG_INT_CLEAR_BASE((module)))->ClearSrcTran.lo) | ||
| 162 | #define dmacHw_REG_INT_CLEAR_DTRAN(module) (((dmacHw_INT_CLEAR_t *) dmacHw_REG_INT_CLEAR_BASE((module)))->ClearDstTran.lo) | ||
| 163 | #define dmacHw_REG_INT_CLEAR_ERROR(module) (((dmacHw_INT_CLEAR_t *) dmacHw_REG_INT_CLEAR_BASE((module)))->ClearErr.lo) | ||
| 164 | #define dmacHw_REG_INT_STATUS(module) (((dmacHw_INT_CLEAR_t *) dmacHw_REG_INT_CLEAR_BASE((module)))->StatusInt.lo) | ||
| 165 | |||
| 166 | /* Software handshaking registers */ | ||
| 167 | #define dmacHw_REG_SW_HS_BASE(module) ((char *)(dmacHw_REG_INT_CLEAR_BASE((module)) + sizeof(dmacHw_INT_CLEAR_t))) | ||
| 168 | #define dmacHw_REG_SW_HS_SRC_REQ(module) (((dmacHw_SW_HANDSHAKE_t *) dmacHw_REG_SW_HS_BASE((module)))->ReqSrcReg.lo) | ||
| 169 | #define dmacHw_REG_SW_HS_DST_REQ(module) (((dmacHw_SW_HANDSHAKE_t *) dmacHw_REG_SW_HS_BASE((module)))->ReqDstReg.lo) | ||
| 170 | #define dmacHw_REG_SW_HS_SRC_SGL_REQ(module) (((dmacHw_SW_HANDSHAKE_t *) dmacHw_REG_SW_HS_BASE((module)))->SglReqSrcReg.lo) | ||
| 171 | #define dmacHw_REG_SW_HS_DST_SGL_REQ(module) (((dmacHw_SW_HANDSHAKE_t *) dmacHw_REG_SW_HS_BASE((module)))->SglReqDstReg.lo) | ||
| 172 | #define dmacHw_REG_SW_HS_SRC_LST_REQ(module) (((dmacHw_SW_HANDSHAKE_t *) dmacHw_REG_SW_HS_BASE((module)))->LstSrcReg.lo) | ||
| 173 | #define dmacHw_REG_SW_HS_DST_LST_REQ(module) (((dmacHw_SW_HANDSHAKE_t *) dmacHw_REG_SW_HS_BASE((module)))->LstDstReg.lo) | ||
| 174 | |||
| 175 | /* Miscellaneous registers */ | ||
| 176 | #define dmacHw_REG_MISC_BASE(module) ((char *)(dmacHw_REG_SW_HS_BASE((module)) + sizeof(dmacHw_SW_HANDSHAKE_t))) | ||
| 177 | #define dmacHw_REG_MISC_CFG(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->DmaCfgReg.lo) | ||
| 178 | #define dmacHw_REG_MISC_CH_ENABLE(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->ChEnReg.lo) | ||
| 179 | #define dmacHw_REG_MISC_ID(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->DmaIdReg.lo) | ||
| 180 | #define dmacHw_REG_MISC_TEST(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->DmaTestReg.lo) | ||
| 181 | #define dmacHw_REG_MISC_COMP_PARAM1_LO(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm1.lo) | ||
| 182 | #define dmacHw_REG_MISC_COMP_PARAM1_HI(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm1.hi) | ||
| 183 | #define dmacHw_REG_MISC_COMP_PARAM2_LO(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm2.lo) | ||
| 184 | #define dmacHw_REG_MISC_COMP_PARAM2_HI(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm2.hi) | ||
| 185 | #define dmacHw_REG_MISC_COMP_PARAM3_LO(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm3.lo) | ||
| 186 | #define dmacHw_REG_MISC_COMP_PARAM3_HI(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm3.hi) | ||
| 187 | #define dmacHw_REG_MISC_COMP_PARAM4_LO(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm4.lo) | ||
| 188 | #define dmacHw_REG_MISC_COMP_PARAM4_HI(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm4.hi) | ||
| 189 | #define dmacHw_REG_MISC_COMP_PARAM5_LO(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm5.lo) | ||
| 190 | #define dmacHw_REG_MISC_COMP_PARAM5_HI(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm5.hi) | ||
| 191 | #define dmacHw_REG_MISC_COMP_PARAM6_LO(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm6.lo) | ||
| 192 | #define dmacHw_REG_MISC_COMP_PARAM6_HI(module) (((dmacHw_MISC_t *) dmacHw_REG_MISC_BASE((module)))->CompParm6.hi) | ||
| 193 | |||
| 194 | /* Channel control registers */ | ||
| 195 | #define dmacHw_REG_SAR(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelSar.lo) | ||
| 196 | #define dmacHw_REG_DAR(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelDar.lo) | ||
| 197 | #define dmacHw_REG_LLP(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelLlp.lo) | ||
| 198 | |||
| 199 | #define dmacHw_REG_CTL_LO(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelCtl.lo) | ||
| 200 | #define dmacHw_REG_CTL_HI(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelCtl.hi) | ||
| 201 | |||
| 202 | #define dmacHw_REG_SSTAT(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelSstat.lo) | ||
| 203 | #define dmacHw_REG_DSTAT(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelDstat.lo) | ||
| 204 | #define dmacHw_REG_SSTATAR(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelSstatAddr.lo) | ||
| 205 | #define dmacHw_REG_DSTATAR(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelDstatAddr.lo) | ||
| 206 | |||
| 207 | #define dmacHw_REG_CFG_LO(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelConfig.lo) | ||
| 208 | #define dmacHw_REG_CFG_HI(module, chan) (dmacHw_CHAN_BASE((module), (chan))->ChannelConfig.hi) | ||
| 209 | |||
| 210 | #define dmacHw_REG_SGR_LO(module, chan) (dmacHw_CHAN_BASE((module), (chan))->SrcGather.lo) | ||
| 211 | #define dmacHw_REG_SGR_HI(module, chan) (dmacHw_CHAN_BASE((module), (chan))->SrcGather.hi) | ||
| 212 | |||
| 213 | #define dmacHw_REG_DSR_LO(module, chan) (dmacHw_CHAN_BASE((module), (chan))->DstScatter.lo) | ||
| 214 | #define dmacHw_REG_DSR_HI(module, chan) (dmacHw_CHAN_BASE((module), (chan))->DstScatter.hi) | ||
| 215 | |||
| 216 | #define INT_STATUS_MASK(channel) (0x00000001 << (channel)) | ||
| 217 | #define CHANNEL_BUSY(mod, channel) (dmacHw_REG_MISC_CH_ENABLE((mod)) & (0x00000001 << (channel))) | ||
| 218 | |||
| 219 | /* Bit mask for REG_DMACx_CTL_LO */ | ||
| 220 | |||
| 221 | #define dmacHw_REG_CTL_INT_EN 0x00000001 /* Channel interrupt enable */ | ||
| 222 | |||
| 223 | #define dmacHw_REG_CTL_DST_TR_WIDTH_MASK 0x0000000E /* Destination transaction width mask */ | ||
| 224 | #define dmacHw_REG_CTL_DST_TR_WIDTH_SHIFT 1 | ||
| 225 | #define dmacHw_REG_CTL_DST_TR_WIDTH_8 0x00000000 /* Destination transaction width 8 bit */ | ||
| 226 | #define dmacHw_REG_CTL_DST_TR_WIDTH_16 0x00000002 /* Destination transaction width 16 bit */ | ||
| 227 | #define dmacHw_REG_CTL_DST_TR_WIDTH_32 0x00000004 /* Destination transaction width 32 bit */ | ||
| 228 | #define dmacHw_REG_CTL_DST_TR_WIDTH_64 0x00000006 /* Destination transaction width 64 bit */ | ||
| 229 | |||
| 230 | #define dmacHw_REG_CTL_SRC_TR_WIDTH_MASK 0x00000070 /* Source transaction width mask */ | ||
| 231 | #define dmacHw_REG_CTL_SRC_TR_WIDTH_SHIFT 4 | ||
| 232 | #define dmacHw_REG_CTL_SRC_TR_WIDTH_8 0x00000000 /* Source transaction width 8 bit */ | ||
| 233 | #define dmacHw_REG_CTL_SRC_TR_WIDTH_16 0x00000010 /* Source transaction width 16 bit */ | ||
| 234 | #define dmacHw_REG_CTL_SRC_TR_WIDTH_32 0x00000020 /* Source transaction width 32 bit */ | ||
| 235 | #define dmacHw_REG_CTL_SRC_TR_WIDTH_64 0x00000030 /* Source transaction width 64 bit */ | ||
| 236 | |||
| 237 | #define dmacHw_REG_CTL_DS_ENABLE 0x00040000 /* Destination scatter enable */ | ||
| 238 | #define dmacHw_REG_CTL_SG_ENABLE 0x00020000 /* Source gather enable */ | ||
| 239 | |||
| 240 | #define dmacHw_REG_CTL_DINC_MASK 0x00000180 /* Destination address inc/dec mask */ | ||
| 241 | #define dmacHw_REG_CTL_DINC_INC 0x00000000 /* Destination address increment */ | ||
| 242 | #define dmacHw_REG_CTL_DINC_DEC 0x00000080 /* Destination address decrement */ | ||
| 243 | #define dmacHw_REG_CTL_DINC_NC 0x00000100 /* Destination address no change */ | ||
| 244 | |||
| 245 | #define dmacHw_REG_CTL_SINC_MASK 0x00000600 /* Source address inc/dec mask */ | ||
| 246 | #define dmacHw_REG_CTL_SINC_INC 0x00000000 /* Source address increment */ | ||
| 247 | #define dmacHw_REG_CTL_SINC_DEC 0x00000200 /* Source address decrement */ | ||
| 248 | #define dmacHw_REG_CTL_SINC_NC 0x00000400 /* Source address no change */ | ||
| 249 | |||
| 250 | #define dmacHw_REG_CTL_DST_MSIZE_MASK 0x00003800 /* Destination burst transaction length */ | ||
| 251 | #define dmacHw_REG_CTL_DST_MSIZE_0 0x00000000 /* No Destination burst */ | ||
| 252 | #define dmacHw_REG_CTL_DST_MSIZE_4 0x00000800 /* Destination burst transaction length 4 */ | ||
| 253 | #define dmacHw_REG_CTL_DST_MSIZE_8 0x00001000 /* Destination burst transaction length 8 */ | ||
| 254 | #define dmacHw_REG_CTL_DST_MSIZE_16 0x00001800 /* Destination burst transaction length 16 */ | ||
| 255 | |||
| 256 | #define dmacHw_REG_CTL_SRC_MSIZE_MASK 0x0001C000 /* Source burst transaction length */ | ||
| 257 | #define dmacHw_REG_CTL_SRC_MSIZE_0 0x00000000 /* No Source burst */ | ||
| 258 | #define dmacHw_REG_CTL_SRC_MSIZE_4 0x00004000 /* Source burst transaction length 4 */ | ||
| 259 | #define dmacHw_REG_CTL_SRC_MSIZE_8 0x00008000 /* Source burst transaction length 8 */ | ||
| 260 | #define dmacHw_REG_CTL_SRC_MSIZE_16 0x0000C000 /* Source burst transaction length 16 */ | ||
| 261 | |||
| 262 | #define dmacHw_REG_CTL_TTFC_MASK 0x00700000 /* Transfer type and flow controller */ | ||
| 263 | #define dmacHw_REG_CTL_TTFC_MM_DMAC 0x00000000 /* Memory to Memory with DMAC as flow controller */ | ||
| 264 | #define dmacHw_REG_CTL_TTFC_MP_DMAC 0x00100000 /* Memory to Peripheral with DMAC as flow controller */ | ||
| 265 | #define dmacHw_REG_CTL_TTFC_PM_DMAC 0x00200000 /* Peripheral to Memory with DMAC as flow controller */ | ||
| 266 | #define dmacHw_REG_CTL_TTFC_PP_DMAC 0x00300000 /* Peripheral to Peripheral with DMAC as flow controller */ | ||
| 267 | #define dmacHw_REG_CTL_TTFC_PM_PERI 0x00400000 /* Peripheral to Memory with Peripheral as flow controller */ | ||
| 268 | #define dmacHw_REG_CTL_TTFC_PP_SPERI 0x00500000 /* Peripheral to Peripheral with Source Peripheral as flow controller */ | ||
| 269 | #define dmacHw_REG_CTL_TTFC_MP_PERI 0x00600000 /* Memory to Peripheral with Peripheral as flow controller */ | ||
| 270 | #define dmacHw_REG_CTL_TTFC_PP_DPERI 0x00700000 /* Peripheral to Peripheral with Destination Peripheral as flow controller */ | ||
| 271 | |||
| 272 | #define dmacHw_REG_CTL_DMS_MASK 0x01800000 /* Destination AHB master interface */ | ||
| 273 | #define dmacHw_REG_CTL_DMS_1 0x00000000 /* Destination AHB master interface 1 */ | ||
| 274 | #define dmacHw_REG_CTL_DMS_2 0x00800000 /* Destination AHB master interface 2 */ | ||
| 275 | |||
| 276 | #define dmacHw_REG_CTL_SMS_MASK 0x06000000 /* Source AHB master interface */ | ||
| 277 | #define dmacHw_REG_CTL_SMS_1 0x00000000 /* Source AHB master interface 1 */ | ||
| 278 | #define dmacHw_REG_CTL_SMS_2 0x02000000 /* Source AHB master interface 2 */ | ||
| 279 | |||
| 280 | #define dmacHw_REG_CTL_LLP_DST_EN 0x08000000 /* Block chaining enable for destination side */ | ||
| 281 | #define dmacHw_REG_CTL_LLP_SRC_EN 0x10000000 /* Block chaining enable for source side */ | ||
| 282 | |||
| 283 | /* Bit mask for REG_DMACx_CTL_HI */ | ||
| 284 | #define dmacHw_REG_CTL_BLOCK_TS_MASK 0x00000FFF /* Block transfer size */ | ||
| 285 | #define dmacHw_REG_CTL_DONE 0x00001000 /* Block trasnfer done */ | ||
| 286 | |||
| 287 | /* Bit mask for REG_DMACx_CFG_LO */ | ||
| 288 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_SHIFT 5 /* Channel priority shift */ | ||
| 289 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_MASK 0x000000E0 /* Channel priority mask */ | ||
| 290 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_0 0x00000000 /* Channel priority 0 */ | ||
| 291 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_1 0x00000020 /* Channel priority 1 */ | ||
| 292 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_2 0x00000040 /* Channel priority 2 */ | ||
| 293 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_3 0x00000060 /* Channel priority 3 */ | ||
| 294 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_4 0x00000080 /* Channel priority 4 */ | ||
| 295 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_5 0x000000A0 /* Channel priority 5 */ | ||
| 296 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_6 0x000000C0 /* Channel priority 6 */ | ||
| 297 | #define dmacHw_REG_CFG_LO_CH_PRIORITY_7 0x000000E0 /* Channel priority 7 */ | ||
| 298 | |||
| 299 | #define dmacHw_REG_CFG_LO_CH_SUSPEND 0x00000100 /* Channel suspend */ | ||
| 300 | #define dmacHw_REG_CFG_LO_CH_FIFO_EMPTY 0x00000200 /* Channel FIFO empty */ | ||
| 301 | #define dmacHw_REG_CFG_LO_DST_CH_SW_HS 0x00000400 /* Destination channel SW handshaking */ | ||
| 302 | #define dmacHw_REG_CFG_LO_SRC_CH_SW_HS 0x00000800 /* Source channel SW handshaking */ | ||
| 303 | |||
| 304 | #define dmacHw_REG_CFG_LO_CH_LOCK_MASK 0x00003000 /* Channel locking mask */ | ||
| 305 | #define dmacHw_REG_CFG_LO_CH_LOCK_DMA 0x00000000 /* Channel lock over the entire DMA transfer operation */ | ||
| 306 | #define dmacHw_REG_CFG_LO_CH_LOCK_BLOCK 0x00001000 /* Channel lock over the block transfer operation */ | ||
| 307 | #define dmacHw_REG_CFG_LO_CH_LOCK_TRANS 0x00002000 /* Channel lock over the transaction */ | ||
| 308 | #define dmacHw_REG_CFG_LO_CH_LOCK_ENABLE 0x00010000 /* Channel lock enable */ | ||
| 309 | |||
| 310 | #define dmacHw_REG_CFG_LO_BUS_LOCK_MASK 0x0000C000 /* Bus locking mask */ | ||
| 311 | #define dmacHw_REG_CFG_LO_BUS_LOCK_DMA 0x00000000 /* Bus lock over the entire DMA transfer operation */ | ||
| 312 | #define dmacHw_REG_CFG_LO_BUS_LOCK_BLOCK 0x00004000 /* Bus lock over the block transfer operation */ | ||
| 313 | #define dmacHw_REG_CFG_LO_BUS_LOCK_TRANS 0x00008000 /* Bus lock over the transaction */ | ||
| 314 | #define dmacHw_REG_CFG_LO_BUS_LOCK_ENABLE 0x00020000 /* Bus lock enable */ | ||
| 315 | |||
| 316 | #define dmacHw_REG_CFG_LO_DST_HS_POLARITY_LOW 0x00040000 /* Destination channel handshaking signal polarity low */ | ||
| 317 | #define dmacHw_REG_CFG_LO_SRC_HS_POLARITY_LOW 0x00080000 /* Source channel handshaking signal polarity low */ | ||
| 318 | |||
| 319 | #define dmacHw_REG_CFG_LO_MAX_AMBA_BURST_LEN_MASK 0x3FF00000 /* Maximum AMBA burst length */ | ||
| 320 | |||
| 321 | #define dmacHw_REG_CFG_LO_AUTO_RELOAD_SRC 0x40000000 /* Source address auto reload */ | ||
| 322 | #define dmacHw_REG_CFG_LO_AUTO_RELOAD_DST 0x80000000 /* Destination address auto reload */ | ||
| 323 | |||
| 324 | /* Bit mask for REG_DMACx_CFG_HI */ | ||
| 325 | #define dmacHw_REG_CFG_HI_FC_DST_READY 0x00000001 /* Source transaction request is serviced when destination is ready */ | ||
| 326 | #define dmacHw_REG_CFG_HI_FIFO_ENOUGH 0x00000002 /* Initiate burst transaction when enough data in available in FIFO */ | ||
| 327 | |||
| 328 | #define dmacHw_REG_CFG_HI_AHB_HPROT_MASK 0x0000001C /* AHB protection mask */ | ||
| 329 | #define dmacHw_REG_CFG_HI_AHB_HPROT_1 0x00000004 /* AHB protection 1 */ | ||
| 330 | #define dmacHw_REG_CFG_HI_AHB_HPROT_2 0x00000008 /* AHB protection 2 */ | ||
| 331 | #define dmacHw_REG_CFG_HI_AHB_HPROT_3 0x00000010 /* AHB protection 3 */ | ||
| 332 | |||
| 333 | #define dmacHw_REG_CFG_HI_UPDATE_DST_STAT 0x00000020 /* Destination status update enable */ | ||
| 334 | #define dmacHw_REG_CFG_HI_UPDATE_SRC_STAT 0x00000040 /* Source status update enable */ | ||
| 335 | |||
| 336 | #define dmacHw_REG_CFG_HI_SRC_PERI_INTF_MASK 0x00000780 /* Source peripheral hardware interface mask */ | ||
| 337 | #define dmacHw_REG_CFG_HI_DST_PERI_INTF_MASK 0x00007800 /* Destination peripheral hardware interface mask */ | ||
| 338 | |||
| 339 | /* DMA Configuration Parameters */ | ||
| 340 | #define dmacHw_REG_COMP_PARAM_NUM_CHANNELS 0x00000700 /* Number of channels */ | ||
| 341 | #define dmacHw_REG_COMP_PARAM_NUM_INTERFACE 0x00001800 /* Number of master interface */ | ||
| 342 | #define dmacHw_REG_COMP_PARAM_MAX_BLK_SIZE 0x0000000f /* Maximum brust size */ | ||
| 343 | #define dmacHw_REG_COMP_PARAM_DATA_WIDTH 0x00006000 /* Data transfer width */ | ||
| 344 | |||
| 345 | /* Define GET/SET macros to program the registers */ | ||
| 346 | #define dmacHw_SET_SAR(module, channel, addr) (dmacHw_REG_SAR((module), (channel)) = (uint32_t) (addr)) | ||
| 347 | #define dmacHw_SET_DAR(module, channel, addr) (dmacHw_REG_DAR((module), (channel)) = (uint32_t) (addr)) | ||
| 348 | #define dmacHw_SET_LLP(module, channel, ptr) (dmacHw_REG_LLP((module), (channel)) = (uint32_t) (ptr)) | ||
| 349 | |||
| 350 | #define dmacHw_GET_SSTAT(module, channel) (dmacHw_REG_SSTAT((module), (channel))) | ||
| 351 | #define dmacHw_GET_DSTAT(module, channel) (dmacHw_REG_DSTAT((module), (channel))) | ||
| 352 | |||
| 353 | #define dmacHw_SET_SSTATAR(module, channel, addr) (dmacHw_REG_SSTATAR((module), (channel)) = (uint32_t) (addr)) | ||
| 354 | #define dmacHw_SET_DSTATAR(module, channel, addr) (dmacHw_REG_DSTATAR((module), (channel)) = (uint32_t) (addr)) | ||
| 355 | |||
| 356 | #define dmacHw_SET_CONTROL_LO(module, channel, ctl) (dmacHw_REG_CTL_LO((module), (channel)) |= (ctl)) | ||
| 357 | #define dmacHw_RESET_CONTROL_LO(module, channel) (dmacHw_REG_CTL_LO((module), (channel)) = 0) | ||
| 358 | #define dmacHw_GET_CONTROL_LO(module, channel) (dmacHw_REG_CTL_LO((module), (channel))) | ||
| 359 | |||
| 360 | #define dmacHw_SET_CONTROL_HI(module, channel, ctl) (dmacHw_REG_CTL_HI((module), (channel)) |= (ctl)) | ||
| 361 | #define dmacHw_RESET_CONTROL_HI(module, channel) (dmacHw_REG_CTL_HI((module), (channel)) = 0) | ||
| 362 | #define dmacHw_GET_CONTROL_HI(module, channel) (dmacHw_REG_CTL_HI((module), (channel))) | ||
| 363 | |||
| 364 | #define dmacHw_GET_BLOCK_SIZE(module, channel) (dmacHw_REG_CTL_HI((module), (channel)) & dmacHw_REG_CTL_BLOCK_TS_MASK) | ||
| 365 | #define dmacHw_DMA_COMPLETE(module, channel) (dmacHw_REG_CTL_HI((module), (channel)) & dmacHw_REG_CTL_DONE) | ||
| 366 | |||
| 367 | #define dmacHw_SET_CONFIG_LO(module, channel, cfg) (dmacHw_REG_CFG_LO((module), (channel)) |= (cfg)) | ||
| 368 | #define dmacHw_RESET_CONFIG_LO(module, channel) (dmacHw_REG_CFG_LO((module), (channel)) = 0) | ||
| 369 | #define dmacHw_GET_CONFIG_LO(module, channel) (dmacHw_REG_CFG_LO((module), (channel))) | ||
| 370 | #define dmacHw_SET_AMBA_BUSRT_LEN(module, channel, len) (dmacHw_REG_CFG_LO((module), (channel)) = (dmacHw_REG_CFG_LO((module), (channel)) & ~(dmacHw_REG_CFG_LO_MAX_AMBA_BURST_LEN_MASK)) | (((len) << 20) & dmacHw_REG_CFG_LO_MAX_AMBA_BURST_LEN_MASK)) | ||
| 371 | #define dmacHw_SET_CHANNEL_PRIORITY(module, channel, prio) (dmacHw_REG_CFG_LO((module), (channel)) = (dmacHw_REG_CFG_LO((module), (channel)) & ~(dmacHw_REG_CFG_LO_CH_PRIORITY_MASK)) | (prio)) | ||
| 372 | #define dmacHw_SET_AHB_HPROT(module, channel, protect) (dmacHw_REG_CFG_HI(module, channel) = (dmacHw_REG_CFG_HI((module), (channel)) & ~(dmacHw_REG_CFG_HI_AHB_HPROT_MASK)) | (protect)) | ||
| 373 | |||
| 374 | #define dmacHw_SET_CONFIG_HI(module, channel, cfg) (dmacHw_REG_CFG_HI((module), (channel)) |= (cfg)) | ||
| 375 | #define dmacHw_RESET_CONFIG_HI(module, channel) (dmacHw_REG_CFG_HI((module), (channel)) = 0) | ||
| 376 | #define dmacHw_GET_CONFIG_HI(module, channel) (dmacHw_REG_CFG_HI((module), (channel))) | ||
| 377 | #define dmacHw_SET_SRC_PERI_INTF(module, channel, intf) (dmacHw_REG_CFG_HI((module), (channel)) = (dmacHw_REG_CFG_HI((module), (channel)) & ~(dmacHw_REG_CFG_HI_SRC_PERI_INTF_MASK)) | (((intf) << 7) & dmacHw_REG_CFG_HI_SRC_PERI_INTF_MASK)) | ||
| 378 | #define dmacHw_SRC_PERI_INTF(intf) (((intf) << 7) & dmacHw_REG_CFG_HI_SRC_PERI_INTF_MASK) | ||
| 379 | #define dmacHw_SET_DST_PERI_INTF(module, channel, intf) (dmacHw_REG_CFG_HI((module), (channel)) = (dmacHw_REG_CFG_HI((module), (channel)) & ~(dmacHw_REG_CFG_HI_DST_PERI_INTF_MASK)) | (((intf) << 11) & dmacHw_REG_CFG_HI_DST_PERI_INTF_MASK)) | ||
| 380 | #define dmacHw_DST_PERI_INTF(intf) (((intf) << 11) & dmacHw_REG_CFG_HI_DST_PERI_INTF_MASK) | ||
| 381 | |||
| 382 | #define dmacHw_DMA_START(module, channel) (dmacHw_REG_MISC_CH_ENABLE((module)) = (0x00000001 << ((channel) + 8)) | (0x00000001 << (channel))) | ||
| 383 | #define dmacHw_DMA_STOP(module, channel) (dmacHw_REG_MISC_CH_ENABLE((module)) = (0x00000001 << ((channel) + 8))) | ||
| 384 | #define dmacHw_DMA_ENABLE(module) (dmacHw_REG_MISC_CFG((module)) = 1) | ||
| 385 | #define dmacHw_DMA_DISABLE(module) (dmacHw_REG_MISC_CFG((module)) = 0) | ||
| 386 | |||
| 387 | #define dmacHw_TRAN_INT_ENABLE(module, channel) (dmacHw_REG_INT_MASK_TRAN((module)) = (0x00000001 << ((channel) + 8)) | (0x00000001 << (channel))) | ||
| 388 | #define dmacHw_BLOCK_INT_ENABLE(module, channel) (dmacHw_REG_INT_MASK_BLOCK((module)) = (0x00000001 << ((channel) + 8)) | (0x00000001 << (channel))) | ||
| 389 | #define dmacHw_ERROR_INT_ENABLE(module, channel) (dmacHw_REG_INT_MASK_ERROR((module)) = (0x00000001 << ((channel) + 8)) | (0x00000001 << (channel))) | ||
| 390 | |||
| 391 | #define dmacHw_TRAN_INT_DISABLE(module, channel) (dmacHw_REG_INT_MASK_TRAN((module)) = (0x00000001 << ((channel) + 8))) | ||
| 392 | #define dmacHw_BLOCK_INT_DISABLE(module, channel) (dmacHw_REG_INT_MASK_BLOCK((module)) = (0x00000001 << ((channel) + 8))) | ||
| 393 | #define dmacHw_ERROR_INT_DISABLE(module, channel) (dmacHw_REG_INT_MASK_ERROR((module)) = (0x00000001 << ((channel) + 8))) | ||
| 394 | #define dmacHw_STRAN_INT_DISABLE(module, channel) (dmacHw_REG_INT_MASK_STRAN((module)) = (0x00000001 << ((channel) + 8))) | ||
| 395 | #define dmacHw_DTRAN_INT_DISABLE(module, channel) (dmacHw_REG_INT_MASK_DTRAN((module)) = (0x00000001 << ((channel) + 8))) | ||
| 396 | |||
| 397 | #define dmacHw_TRAN_INT_CLEAR(module, channel) (dmacHw_REG_INT_CLEAR_TRAN((module)) = (0x00000001 << (channel))) | ||
| 398 | #define dmacHw_BLOCK_INT_CLEAR(module, channel) (dmacHw_REG_INT_CLEAR_BLOCK((module)) = (0x00000001 << (channel))) | ||
| 399 | #define dmacHw_ERROR_INT_CLEAR(module, channel) (dmacHw_REG_INT_CLEAR_ERROR((module)) = (0x00000001 << (channel))) | ||
| 400 | |||
| 401 | #define dmacHw_GET_NUM_CHANNEL(module) (((dmacHw_REG_MISC_COMP_PARAM1_HI((module)) & dmacHw_REG_COMP_PARAM_NUM_CHANNELS) >> 8) + 1) | ||
| 402 | #define dmacHw_GET_NUM_INTERFACE(module) (((dmacHw_REG_MISC_COMP_PARAM1_HI((module)) & dmacHw_REG_COMP_PARAM_NUM_INTERFACE) >> 11) + 1) | ||
| 403 | #define dmacHw_GET_MAX_BLOCK_SIZE(module, channel) ((dmacHw_REG_MISC_COMP_PARAM1_LO((module)) >> (4 * (channel))) & dmacHw_REG_COMP_PARAM_MAX_BLK_SIZE) | ||
| 404 | #define dmacHw_GET_CHANNEL_DATA_WIDTH(module, channel) ((dmacHw_REG_MISC_COMP_PARAM1_HI((module)) & dmacHw_REG_COMP_PARAM_DATA_WIDTH) >> 13) | ||
| 405 | |||
| 406 | #endif /* _DMACHW_REG_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/hw_cfg.h b/arch/arm/mach-bcmring/include/mach/csp/hw_cfg.h new file mode 100644 index 00000000000..cfa91bed9d3 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/hw_cfg.h | |||
| @@ -0,0 +1,73 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | |||
| 16 | #ifndef CSP_HW_CFG_H | ||
| 17 | #define CSP_HW_CFG_H | ||
| 18 | |||
| 19 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 20 | |||
| 21 | #include <cfg_global.h> | ||
| 22 | #include <mach/csp/cap_inline.h> | ||
| 23 | |||
| 24 | #if defined(__KERNEL__) | ||
| 25 | #include <mach/memory_settings.h> | ||
| 26 | #else | ||
| 27 | #include <hw_cfg.h> | ||
| 28 | #endif | ||
| 29 | |||
| 30 | /* Some items that can be defined externally, but will be set to default values */ | ||
| 31 | /* if they are not defined. */ | ||
| 32 | /* HW_CFG_PLL_SPREAD_SPECTRUM_DISABLE Default undefined and SS is enabled. */ | ||
| 33 | /* HW_CFG_SDRAM_CAS_LATENCY 5 Default 5, Values [3..6] */ | ||
| 34 | /* HW_CFG_SDRAM_CHIP_SELECT_CNT 1 Default 1, Vaules [1..2] */ | ||
| 35 | /* HW_CFG_SDRAM_SPEED_GRADE 667 Default 667, Values [400,533,667,800] */ | ||
| 36 | /* HW_CFG_SDRAM_WIDTH_BITS 16 Default 16, Vaules [8,16] */ | ||
| 37 | /* HW_CFG_SDRAM_ADDR_BRC Default undefined and Row-Bank-Col (RBC) addressing used. Define to use Bank-Row-Col (BRC). */ | ||
| 38 | /* HW_CFG_SDRAM_CLK_ASYNC Default undefined and DDR clock is synchronous with AXI BUS clock. Define for ASYNC mode. */ | ||
| 39 | |||
| 40 | #if defined(CFG_GLOBAL_CHIP) | ||
| 41 | #if (CFG_GLOBAL_CHIP == FPGA11107) | ||
| 42 | #define HW_CFG_BUS_CLK_HZ 5000000 | ||
| 43 | #define HW_CFG_DDR_CTLR_CLK_HZ 10000000 | ||
| 44 | #define HW_CFG_DDR_PHY_OMIT | ||
| 45 | #define HW_CFG_UART_CLK_HZ 7500000 | ||
| 46 | #else | ||
| 47 | #define HW_CFG_PLL_VCO_HZ 2000000000 | ||
| 48 | #define HW_CFG_PLL2_VCO_HZ 1800000000 | ||
| 49 | #define HW_CFG_ARM_CLK_HZ CAP_HW_CFG_ARM_CLK_HZ | ||
| 50 | #define HW_CFG_BUS_CLK_HZ 166666666 | ||
| 51 | #define HW_CFG_DDR_CTLR_CLK_HZ 333333333 | ||
| 52 | #define HW_CFG_DDR_PHY_CLK_HZ (2 * HW_CFG_DDR_CTLR_CLK_HZ) | ||
| 53 | #define HW_CFG_UART_CLK_HZ 142857142 | ||
| 54 | #define HW_CFG_VPM_CLK_HZ CAP_HW_CFG_VPM_CLK_HZ | ||
| 55 | #endif | ||
| 56 | #else | ||
| 57 | #define HW_CFG_PLL_VCO_HZ 1800000000 | ||
| 58 | #define HW_CFG_PLL2_VCO_HZ 1800000000 | ||
| 59 | #define HW_CFG_ARM_CLK_HZ 450000000 | ||
| 60 | #define HW_CFG_BUS_CLK_HZ 150000000 | ||
| 61 | #define HW_CFG_DDR_CTLR_CLK_HZ 300000000 | ||
| 62 | #define HW_CFG_DDR_PHY_CLK_HZ (2 * HW_CFG_DDR_CTLR_CLK_HZ) | ||
| 63 | #define HW_CFG_UART_CLK_HZ 150000000 | ||
| 64 | #define HW_CFG_VPM_CLK_HZ 300000000 | ||
| 65 | #endif | ||
| 66 | |||
| 67 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 68 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 69 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 70 | |||
| 71 | |||
| 72 | #endif /* CSP_HW_CFG_H */ | ||
| 73 | |||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/intcHw_reg.h b/arch/arm/mach-bcmring/include/mach/csp/intcHw_reg.h new file mode 100644 index 00000000000..0aeb6a6fe7f --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/intcHw_reg.h | |||
| @@ -0,0 +1,246 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file intcHw_reg.h | ||
| 18 | * | ||
| 19 | * @brief platform specific interrupt controller bit assignments | ||
| 20 | * | ||
| 21 | * @note | ||
| 22 | * None | ||
| 23 | */ | ||
| 24 | /****************************************************************************/ | ||
| 25 | |||
| 26 | #ifndef _INTCHW_REG_H | ||
| 27 | #define _INTCHW_REG_H | ||
| 28 | |||
| 29 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 30 | #include <csp/stdint.h> | ||
| 31 | #include <csp/reg.h> | ||
| 32 | #include <mach/csp/mm_io.h> | ||
| 33 | |||
| 34 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 35 | |||
| 36 | #define INTCHW_NUM_IRQ_PER_INTC 32 /* Maximum number of interrupt controllers */ | ||
| 37 | #define INTCHW_NUM_INTC 3 | ||
| 38 | |||
| 39 | /* Defines for interrupt controllers. This simplifies and cleans up the function calls. */ | ||
| 40 | #define INTCHW_INTC0 ((void *)MM_IO_BASE_INTC0) | ||
| 41 | #define INTCHW_INTC1 ((void *)MM_IO_BASE_INTC1) | ||
| 42 | #define INTCHW_SINTC ((void *)MM_IO_BASE_SINTC) | ||
| 43 | |||
| 44 | /* INTC0 - interrupt controller 0 */ | ||
| 45 | #define INTCHW_INTC0_PIF_BITNUM 31 /* Peripheral interface interrupt */ | ||
| 46 | #define INTCHW_INTC0_CLCD_BITNUM 30 /* LCD Controller interrupt */ | ||
| 47 | #define INTCHW_INTC0_GE_BITNUM 29 /* Graphic engine interrupt */ | ||
| 48 | #define INTCHW_INTC0_APM_BITNUM 28 /* Audio process module interrupt */ | ||
| 49 | #define INTCHW_INTC0_ESW_BITNUM 27 /* Ethernet switch interrupt */ | ||
| 50 | #define INTCHW_INTC0_SPIH_BITNUM 26 /* SPI host interrupt */ | ||
| 51 | #define INTCHW_INTC0_TIMER3_BITNUM 25 /* Timer3 interrupt */ | ||
| 52 | #define INTCHW_INTC0_TIMER2_BITNUM 24 /* Timer2 interrupt */ | ||
| 53 | #define INTCHW_INTC0_TIMER1_BITNUM 23 /* Timer1 interrupt */ | ||
| 54 | #define INTCHW_INTC0_TIMER0_BITNUM 22 /* Timer0 interrupt */ | ||
| 55 | #define INTCHW_INTC0_SDIOH1_BITNUM 21 /* SDIO1 host interrupt */ | ||
| 56 | #define INTCHW_INTC0_SDIOH0_BITNUM 20 /* SDIO0 host interrupt */ | ||
| 57 | #define INTCHW_INTC0_USBD_BITNUM 19 /* USB device interrupt */ | ||
| 58 | #define INTCHW_INTC0_USBH1_BITNUM 18 /* USB1 host interrupt */ | ||
| 59 | #define INTCHW_INTC0_USBHD2_BITNUM 17 /* USB host2/device2 interrupt */ | ||
| 60 | #define INTCHW_INTC0_VPM_BITNUM 16 /* Voice process module interrupt */ | ||
| 61 | #define INTCHW_INTC0_DMA1C7_BITNUM 15 /* DMA1 channel 7 interrupt */ | ||
| 62 | #define INTCHW_INTC0_DMA1C6_BITNUM 14 /* DMA1 channel 6 interrupt */ | ||
| 63 | #define INTCHW_INTC0_DMA1C5_BITNUM 13 /* DMA1 channel 5 interrupt */ | ||
| 64 | #define INTCHW_INTC0_DMA1C4_BITNUM 12 /* DMA1 channel 4 interrupt */ | ||
| 65 | #define INTCHW_INTC0_DMA1C3_BITNUM 11 /* DMA1 channel 3 interrupt */ | ||
| 66 | #define INTCHW_INTC0_DMA1C2_BITNUM 10 /* DMA1 channel 2 interrupt */ | ||
| 67 | #define INTCHW_INTC0_DMA1C1_BITNUM 9 /* DMA1 channel 1 interrupt */ | ||
| 68 | #define INTCHW_INTC0_DMA1C0_BITNUM 8 /* DMA1 channel 0 interrupt */ | ||
| 69 | #define INTCHW_INTC0_DMA0C7_BITNUM 7 /* DMA0 channel 7 interrupt */ | ||
| 70 | #define INTCHW_INTC0_DMA0C6_BITNUM 6 /* DMA0 channel 6 interrupt */ | ||
| 71 | #define INTCHW_INTC0_DMA0C5_BITNUM 5 /* DMA0 channel 5 interrupt */ | ||
| 72 | #define INTCHW_INTC0_DMA0C4_BITNUM 4 /* DMA0 channel 4 interrupt */ | ||
| 73 | #define INTCHW_INTC0_DMA0C3_BITNUM 3 /* DMA0 channel 3 interrupt */ | ||
| 74 | #define INTCHW_INTC0_DMA0C2_BITNUM 2 /* DMA0 channel 2 interrupt */ | ||
| 75 | #define INTCHW_INTC0_DMA0C1_BITNUM 1 /* DMA0 channel 1 interrupt */ | ||
| 76 | #define INTCHW_INTC0_DMA0C0_BITNUM 0 /* DMA0 channel 0 interrupt */ | ||
| 77 | |||
| 78 | #define INTCHW_INTC0_PIF (1<<INTCHW_INTC0_PIF_BITNUM) | ||
| 79 | #define INTCHW_INTC0_CLCD (1<<INTCHW_INTC0_CLCD_BITNUM) | ||
| 80 | #define INTCHW_INTC0_GE (1<<INTCHW_INTC0_GE_BITNUM) | ||
| 81 | #define INTCHW_INTC0_APM (1<<INTCHW_INTC0_APM_BITNUM) | ||
| 82 | #define INTCHW_INTC0_ESW (1<<INTCHW_INTC0_ESW_BITNUM) | ||
| 83 | #define INTCHW_INTC0_SPIH (1<<INTCHW_INTC0_SPIH_BITNUM) | ||
| 84 | #define INTCHW_INTC0_TIMER3 (1<<INTCHW_INTC0_TIMER3_BITNUM) | ||
| 85 | #define INTCHW_INTC0_TIMER2 (1<<INTCHW_INTC0_TIMER2_BITNUM) | ||
| 86 | #define INTCHW_INTC0_TIMER1 (1<<INTCHW_INTC0_TIMER1_BITNUM) | ||
| 87 | #define INTCHW_INTC0_TIMER0 (1<<INTCHW_INTC0_TIMER0_BITNUM) | ||
| 88 | #define INTCHW_INTC0_SDIOH1 (1<<INTCHW_INTC0_SDIOH1_BITNUM) | ||
| 89 | #define INTCHW_INTC0_SDIOH0 (1<<INTCHW_INTC0_SDIOH0_BITNUM) | ||
| 90 | #define INTCHW_INTC0_USBD (1<<INTCHW_INTC0_USBD_BITNUM) | ||
| 91 | #define INTCHW_INTC0_USBH1 (1<<INTCHW_INTC0_USBH1_BITNUM) | ||
| 92 | #define INTCHW_INTC0_USBHD2 (1<<INTCHW_INTC0_USBHD2_BITNUM) | ||
| 93 | #define INTCHW_INTC0_VPM (1<<INTCHW_INTC0_VPM_BITNUM) | ||
| 94 | #define INTCHW_INTC0_DMA1C7 (1<<INTCHW_INTC0_DMA1C7_BITNUM) | ||
| 95 | #define INTCHW_INTC0_DMA1C6 (1<<INTCHW_INTC0_DMA1C6_BITNUM) | ||
| 96 | #define INTCHW_INTC0_DMA1C5 (1<<INTCHW_INTC0_DMA1C5_BITNUM) | ||
| 97 | #define INTCHW_INTC0_DMA1C4 (1<<INTCHW_INTC0_DMA1C4_BITNUM) | ||
| 98 | #define INTCHW_INTC0_DMA1C3 (1<<INTCHW_INTC0_DMA1C3_BITNUM) | ||
| 99 | #define INTCHW_INTC0_DMA1C2 (1<<INTCHW_INTC0_DMA1C2_BITNUM) | ||
| 100 | #define INTCHW_INTC0_DMA1C1 (1<<INTCHW_INTC0_DMA1C1_BITNUM) | ||
| 101 | #define INTCHW_INTC0_DMA1C0 (1<<INTCHW_INTC0_DMA1C0_BITNUM) | ||
| 102 | #define INTCHW_INTC0_DMA0C7 (1<<INTCHW_INTC0_DMA0C7_BITNUM) | ||
| 103 | #define INTCHW_INTC0_DMA0C6 (1<<INTCHW_INTC0_DMA0C6_BITNUM) | ||
| 104 | #define INTCHW_INTC0_DMA0C5 (1<<INTCHW_INTC0_DMA0C5_BITNUM) | ||
| 105 | #define INTCHW_INTC0_DMA0C4 (1<<INTCHW_INTC0_DMA0C4_BITNUM) | ||
| 106 | #define INTCHW_INTC0_DMA0C3 (1<<INTCHW_INTC0_DMA0C3_BITNUM) | ||
| 107 | #define INTCHW_INTC0_DMA0C2 (1<<INTCHW_INTC0_DMA0C2_BITNUM) | ||
| 108 | #define INTCHW_INTC0_DMA0C1 (1<<INTCHW_INTC0_DMA0C1_BITNUM) | ||
| 109 | #define INTCHW_INTC0_DMA0C0 (1<<INTCHW_INTC0_DMA0C0_BITNUM) | ||
| 110 | |||
| 111 | /* INTC1 - interrupt controller 1 */ | ||
| 112 | #define INTCHW_INTC1_DDRVPMP_BITNUM 27 /* DDR and VPM PLL clock phase relationship interrupt (Not for A0) */ | ||
| 113 | #define INTCHW_INTC1_DDRVPMT_BITNUM 26 /* DDR and VPM HW phase align timeout interrupt (Not for A0) */ | ||
| 114 | #define INTCHW_INTC1_DDRP_BITNUM 26 /* DDR and PLL clock phase relationship interrupt (For A0 only)) */ | ||
| 115 | #define INTCHW_INTC1_RTC2_BITNUM 25 /* Real time clock tamper interrupt */ | ||
| 116 | #define INTCHW_INTC1_VDEC_BITNUM 24 /* Hantro Video Decoder interrupt */ | ||
| 117 | /* Bits 13-23 are non-secure versions of the corresponding secure bits in SINTC bits 0-10. */ | ||
| 118 | #define INTCHW_INTC1_SPUM_BITNUM 23 /* Secure process module interrupt */ | ||
| 119 | #define INTCHW_INTC1_RTC1_BITNUM 22 /* Real time clock one-shot interrupt */ | ||
| 120 | #define INTCHW_INTC1_RTC0_BITNUM 21 /* Real time clock periodic interrupt */ | ||
| 121 | #define INTCHW_INTC1_RNG_BITNUM 20 /* Random number generator interrupt */ | ||
| 122 | #define INTCHW_INTC1_FMPU_BITNUM 19 /* Flash memory parition unit interrupt */ | ||
| 123 | #define INTCHW_INTC1_VMPU_BITNUM 18 /* VRAM memory partition interrupt */ | ||
| 124 | #define INTCHW_INTC1_DMPU_BITNUM 17 /* DDR2 memory partition interrupt */ | ||
| 125 | #define INTCHW_INTC1_KEYC_BITNUM 16 /* Key pad controller interrupt */ | ||
| 126 | #define INTCHW_INTC1_TSC_BITNUM 15 /* Touch screen controller interrupt */ | ||
| 127 | #define INTCHW_INTC1_UART0_BITNUM 14 /* UART 0 */ | ||
| 128 | #define INTCHW_INTC1_WDOG_BITNUM 13 /* Watchdog timer interrupt */ | ||
| 129 | |||
| 130 | #define INTCHW_INTC1_UART1_BITNUM 12 /* UART 1 */ | ||
| 131 | #define INTCHW_INTC1_PMUIRQ_BITNUM 11 /* ARM performance monitor interrupt */ | ||
| 132 | #define INTCHW_INTC1_COMMRX_BITNUM 10 /* ARM DDC receive interrupt */ | ||
| 133 | #define INTCHW_INTC1_COMMTX_BITNUM 9 /* ARM DDC transmit interrupt */ | ||
| 134 | #define INTCHW_INTC1_FLASHC_BITNUM 8 /* Flash controller interrupt */ | ||
| 135 | #define INTCHW_INTC1_GPHY_BITNUM 7 /* Gigabit Phy interrupt */ | ||
| 136 | #define INTCHW_INTC1_SPIS_BITNUM 6 /* SPI slave interrupt */ | ||
| 137 | #define INTCHW_INTC1_I2CS_BITNUM 5 /* I2C slave interrupt */ | ||
| 138 | #define INTCHW_INTC1_I2CH_BITNUM 4 /* I2C host interrupt */ | ||
| 139 | #define INTCHW_INTC1_I2S1_BITNUM 3 /* I2S1 interrupt */ | ||
| 140 | #define INTCHW_INTC1_I2S0_BITNUM 2 /* I2S0 interrupt */ | ||
| 141 | #define INTCHW_INTC1_GPIO1_BITNUM 1 /* GPIO bit 64//32 combined interrupt */ | ||
| 142 | #define INTCHW_INTC1_GPIO0_BITNUM 0 /* GPIO bit 31//0 combined interrupt */ | ||
| 143 | |||
| 144 | #define INTCHW_INTC1_DDRVPMT (1<<INTCHW_INTC1_DDRVPMT_BITNUM) | ||
| 145 | #define INTCHW_INTC1_DDRVPMP (1<<INTCHW_INTC1_DDRVPMP_BITNUM) | ||
| 146 | #define INTCHW_INTC1_DDRP (1<<INTCHW_INTC1_DDRP_BITNUM) | ||
| 147 | #define INTCHW_INTC1_VDEC (1<<INTCHW_INTC1_VDEC_BITNUM) | ||
| 148 | #define INTCHW_INTC1_SPUM (1<<INTCHW_INTC1_SPUM_BITNUM) | ||
| 149 | #define INTCHW_INTC1_RTC2 (1<<INTCHW_INTC1_RTC2_BITNUM) | ||
| 150 | #define INTCHW_INTC1_RTC1 (1<<INTCHW_INTC1_RTC1_BITNUM) | ||
| 151 | #define INTCHW_INTC1_RTC0 (1<<INTCHW_INTC1_RTC0_BITNUM) | ||
| 152 | #define INTCHW_INTC1_RNG (1<<INTCHW_INTC1_RNG_BITNUM) | ||
| 153 | #define INTCHW_INTC1_FMPU (1<<INTCHW_INTC1_FMPU_BITNUM) | ||
| 154 | #define INTCHW_INTC1_IMPU (1<<INTCHW_INTC1_IMPU_BITNUM) | ||
| 155 | #define INTCHW_INTC1_DMPU (1<<INTCHW_INTC1_DMPU_BITNUM) | ||
| 156 | #define INTCHW_INTC1_KEYC (1<<INTCHW_INTC1_KEYC_BITNUM) | ||
| 157 | #define INTCHW_INTC1_TSC (1<<INTCHW_INTC1_TSC_BITNUM) | ||
| 158 | #define INTCHW_INTC1_UART0 (1<<INTCHW_INTC1_UART0_BITNUM) | ||
| 159 | #define INTCHW_INTC1_WDOG (1<<INTCHW_INTC1_WDOG_BITNUM) | ||
| 160 | #define INTCHW_INTC1_UART1 (1<<INTCHW_INTC1_UART1_BITNUM) | ||
| 161 | #define INTCHW_INTC1_PMUIRQ (1<<INTCHW_INTC1_PMUIRQ_BITNUM) | ||
| 162 | #define INTCHW_INTC1_COMMRX (1<<INTCHW_INTC1_COMMRX_BITNUM) | ||
| 163 | #define INTCHW_INTC1_COMMTX (1<<INTCHW_INTC1_COMMTX_BITNUM) | ||
| 164 | #define INTCHW_INTC1_FLASHC (1<<INTCHW_INTC1_FLASHC_BITNUM) | ||
| 165 | #define INTCHW_INTC1_GPHY (1<<INTCHW_INTC1_GPHY_BITNUM) | ||
| 166 | #define INTCHW_INTC1_SPIS (1<<INTCHW_INTC1_SPIS_BITNUM) | ||
| 167 | #define INTCHW_INTC1_I2CS (1<<INTCHW_INTC1_I2CS_BITNUM) | ||
| 168 | #define INTCHW_INTC1_I2CH (1<<INTCHW_INTC1_I2CH_BITNUM) | ||
| 169 | #define INTCHW_INTC1_I2S1 (1<<INTCHW_INTC1_I2S1_BITNUM) | ||
| 170 | #define INTCHW_INTC1_I2S0 (1<<INTCHW_INTC1_I2S0_BITNUM) | ||
| 171 | #define INTCHW_INTC1_GPIO1 (1<<INTCHW_INTC1_GPIO1_BITNUM) | ||
| 172 | #define INTCHW_INTC1_GPIO0 (1<<INTCHW_INTC1_GPIO0_BITNUM) | ||
| 173 | |||
| 174 | /* SINTC secure int controller */ | ||
| 175 | #define INTCHW_SINTC_RTC2_BITNUM 15 /* Real time clock tamper interrupt */ | ||
| 176 | #define INTCHW_SINTC_TIMER3_BITNUM 14 /* Secure timer3 interrupt */ | ||
| 177 | #define INTCHW_SINTC_TIMER2_BITNUM 13 /* Secure timer2 interrupt */ | ||
| 178 | #define INTCHW_SINTC_TIMER1_BITNUM 12 /* Secure timer1 interrupt */ | ||
| 179 | #define INTCHW_SINTC_TIMER0_BITNUM 11 /* Secure timer0 interrupt */ | ||
| 180 | #define INTCHW_SINTC_SPUM_BITNUM 10 /* Secure process module interrupt */ | ||
| 181 | #define INTCHW_SINTC_RTC1_BITNUM 9 /* Real time clock one-shot interrupt */ | ||
| 182 | #define INTCHW_SINTC_RTC0_BITNUM 8 /* Real time clock periodic interrupt */ | ||
| 183 | #define INTCHW_SINTC_RNG_BITNUM 7 /* Random number generator interrupt */ | ||
| 184 | #define INTCHW_SINTC_FMPU_BITNUM 6 /* Flash memory parition unit interrupt */ | ||
| 185 | #define INTCHW_SINTC_VMPU_BITNUM 5 /* VRAM memory partition interrupt */ | ||
| 186 | #define INTCHW_SINTC_DMPU_BITNUM 4 /* DDR2 memory partition interrupt */ | ||
| 187 | #define INTCHW_SINTC_KEYC_BITNUM 3 /* Key pad controller interrupt */ | ||
| 188 | #define INTCHW_SINTC_TSC_BITNUM 2 /* Touch screen controller interrupt */ | ||
| 189 | #define INTCHW_SINTC_UART0_BITNUM 1 /* UART0 interrupt */ | ||
| 190 | #define INTCHW_SINTC_WDOG_BITNUM 0 /* Watchdog timer interrupt */ | ||
| 191 | |||
| 192 | #define INTCHW_SINTC_TIMER3 (1<<INTCHW_SINTC_TIMER3_BITNUM) | ||
| 193 | #define INTCHW_SINTC_TIMER2 (1<<INTCHW_SINTC_TIMER2_BITNUM) | ||
| 194 | #define INTCHW_SINTC_TIMER1 (1<<INTCHW_SINTC_TIMER1_BITNUM) | ||
| 195 | #define INTCHW_SINTC_TIMER0 (1<<INTCHW_SINTC_TIMER0_BITNUM) | ||
| 196 | #define INTCHW_SINTC_SPUM (1<<INTCHW_SINTC_SPUM_BITNUM) | ||
| 197 | #define INTCHW_SINTC_RTC2 (1<<INTCHW_SINTC_RTC2_BITNUM) | ||
| 198 | #define INTCHW_SINTC_RTC1 (1<<INTCHW_SINTC_RTC1_BITNUM) | ||
| 199 | #define INTCHW_SINTC_RTC0 (1<<INTCHW_SINTC_RTC0_BITNUM) | ||
| 200 | #define INTCHW_SINTC_RNG (1<<INTCHW_SINTC_RNG_BITNUM) | ||
| 201 | #define INTCHW_SINTC_FMPU (1<<INTCHW_SINTC_FMPU_BITNUM) | ||
| 202 | #define INTCHW_SINTC_IMPU (1<<INTCHW_SINTC_IMPU_BITNUM) | ||
| 203 | #define INTCHW_SINTC_DMPU (1<<INTCHW_SINTC_DMPU_BITNUM) | ||
| 204 | #define INTCHW_SINTC_KEYC (1<<INTCHW_SINTC_KEYC_BITNUM) | ||
| 205 | #define INTCHW_SINTC_TSC (1<<INTCHW_SINTC_TSC_BITNUM) | ||
| 206 | #define INTCHW_SINTC_UART0 (1<<INTCHW_SINTC_UART0_BITNUM) | ||
| 207 | #define INTCHW_SINTC_WDOG (1<<INTCHW_SINTC_WDOG_BITNUM) | ||
| 208 | |||
| 209 | /* PL192 Vectored Interrupt Controller (VIC) layout */ | ||
| 210 | #define INTCHW_IRQSTATUS 0x00 /* IRQ status register */ | ||
| 211 | #define INTCHW_FIQSTATUS 0x04 /* FIQ status register */ | ||
| 212 | #define INTCHW_RAWINTR 0x08 /* Raw Interrupt Status register */ | ||
| 213 | #define INTCHW_INTSELECT 0x0c /* Interrupt Select Register */ | ||
| 214 | #define INTCHW_INTENABLE 0x10 /* Interrupt Enable Register */ | ||
| 215 | #define INTCHW_INTENCLEAR 0x14 /* Interrupt Enable Clear Register */ | ||
| 216 | #define INTCHW_SOFTINT 0x18 /* Soft Interrupt Register */ | ||
| 217 | #define INTCHW_SOFTINTCLEAR 0x1c /* Soft Interrupt Clear Register */ | ||
| 218 | #define INTCHW_PROTECTION 0x20 /* Protection Enable Register */ | ||
| 219 | #define INTCHW_SWPRIOMASK 0x24 /* Software Priority Mask Register */ | ||
| 220 | #define INTCHW_PRIODAISY 0x28 /* Priority Daisy Chain Register */ | ||
| 221 | #define INTCHW_VECTADDR0 0x100 /* Vector Address Registers */ | ||
| 222 | #define INTCHW_VECTPRIO0 0x200 /* Vector Priority Registers 0-31 */ | ||
| 223 | #define INTCHW_ADDRESS 0xf00 /* Vector Address Register 0-31 */ | ||
| 224 | #define INTCHW_PID 0xfe0 /* Peripheral ID Register 0-3 */ | ||
| 225 | #define INTCHW_PCELLID 0xff0 /* PrimeCell ID Register 0-3 */ | ||
| 226 | |||
| 227 | /* Example Usage: intcHw_irq_enable(INTCHW_INTC0, INTCHW_INTC0_TIMER0); */ | ||
| 228 | /* intcHw_irq_clear(INTCHW_INTC0, INTCHW_INTC0_TIMER0); */ | ||
| 229 | /* uint32_t bits = intcHw_irq_status(INTCHW_INTC0); */ | ||
| 230 | /* uint32_t bits = intcHw_irq_raw_status(INTCHW_INTC0); */ | ||
| 231 | |||
| 232 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 233 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 234 | /* Clear one or more IRQ interrupts. */ | ||
| 235 | static inline void intcHw_irq_disable(void *basep, uint32_t mask) | ||
| 236 | { | ||
| 237 | __REG32(basep + INTCHW_INTENCLEAR) = mask; | ||
| 238 | } | ||
| 239 | |||
| 240 | /* Enables one or more IRQ interrupts. */ | ||
| 241 | static inline void intcHw_irq_enable(void *basep, uint32_t mask) | ||
| 242 | { | ||
| 243 | __REG32(basep + INTCHW_INTENABLE) = mask; | ||
| 244 | } | ||
| 245 | |||
| 246 | #endif /* _INTCHW_REG_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/mm_addr.h b/arch/arm/mach-bcmring/include/mach/csp/mm_addr.h new file mode 100644 index 00000000000..ad58cf87337 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/mm_addr.h | |||
| @@ -0,0 +1,101 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file mm_addr.h | ||
| 18 | * | ||
| 19 | * @brief Memory Map address definitions | ||
| 20 | * | ||
| 21 | * @note | ||
| 22 | * None | ||
| 23 | */ | ||
| 24 | /****************************************************************************/ | ||
| 25 | |||
| 26 | #ifndef _MM_ADDR_H | ||
| 27 | #define _MM_ADDR_H | ||
| 28 | |||
| 29 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 30 | |||
| 31 | #if !defined(CSP_SIMULATION) | ||
| 32 | #include <cfg_global.h> | ||
| 33 | #endif | ||
| 34 | |||
| 35 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 36 | |||
| 37 | /* Memory Map address definitions */ | ||
| 38 | |||
| 39 | #define MM_ADDR_DDR 0x00000000 | ||
| 40 | |||
| 41 | #define MM_ADDR_IO_VPM_EXTMEM_RSVD 0x0F000000 /* 16 MB - Reserved external memory for VPM use */ | ||
| 42 | |||
| 43 | #define MM_ADDR_IO_FLASHC 0x20000000 | ||
| 44 | #define MM_ADDR_IO_BROM 0x30000000 | ||
| 45 | #define MM_ADDR_IO_ARAM 0x30100000 /* 64 KB - extra cycle latency - WS switch */ | ||
| 46 | #define MM_ADDR_IO_DMA0 0x30200000 | ||
| 47 | #define MM_ADDR_IO_DMA1 0x30300000 | ||
| 48 | #define MM_ADDR_IO_ESW 0x30400000 | ||
| 49 | #define MM_ADDR_IO_CLCD 0x30500000 | ||
| 50 | #define MM_ADDR_IO_PIF 0x30580000 | ||
| 51 | #define MM_ADDR_IO_APM 0x30600000 | ||
| 52 | #define MM_ADDR_IO_SPUM 0x30700000 | ||
| 53 | #define MM_ADDR_IO_VPM_PROG 0x30800000 | ||
| 54 | #define MM_ADDR_IO_VPM_DATA 0x30A00000 | ||
| 55 | #define MM_ADDR_IO_VRAM 0x40000000 /* 64 KB - security block in front of it */ | ||
| 56 | #define MM_ADDR_IO_CHIPC 0x80000000 | ||
| 57 | #define MM_ADDR_IO_UMI 0x80001000 | ||
| 58 | #define MM_ADDR_IO_NAND 0x80001800 | ||
| 59 | #define MM_ADDR_IO_LEDM 0x80002000 | ||
| 60 | #define MM_ADDR_IO_PWM 0x80002040 | ||
| 61 | #define MM_ADDR_IO_VINTC 0x80003000 | ||
| 62 | #define MM_ADDR_IO_GPIO0 0x80004000 | ||
| 63 | #define MM_ADDR_IO_GPIO1 0x80004800 | ||
| 64 | #define MM_ADDR_IO_I2CS 0x80005000 | ||
| 65 | #define MM_ADDR_IO_SPIS 0x80006000 | ||
| 66 | #define MM_ADDR_IO_HPM 0x80007400 | ||
| 67 | #define MM_ADDR_IO_HPM_REMAP 0x80007800 | ||
| 68 | #define MM_ADDR_IO_TZPC 0x80008000 | ||
| 69 | #define MM_ADDR_IO_MPU 0x80009000 | ||
| 70 | #define MM_ADDR_IO_SPUMP 0x8000a000 | ||
| 71 | #define MM_ADDR_IO_PKA 0x8000b000 | ||
| 72 | #define MM_ADDR_IO_RNG 0x8000c000 | ||
| 73 | #define MM_ADDR_IO_KEYC 0x8000d000 | ||
| 74 | #define MM_ADDR_IO_BBL 0x8000e000 | ||
| 75 | #define MM_ADDR_IO_OTP 0x8000f000 | ||
| 76 | #define MM_ADDR_IO_I2S0 0x80010000 | ||
| 77 | #define MM_ADDR_IO_I2S1 0x80011000 | ||
| 78 | #define MM_ADDR_IO_UARTA 0x80012000 | ||
| 79 | #define MM_ADDR_IO_UARTB 0x80013000 | ||
| 80 | #define MM_ADDR_IO_I2CH 0x80014020 | ||
| 81 | #define MM_ADDR_IO_SPIH 0x80015000 | ||
| 82 | #define MM_ADDR_IO_TSC 0x80016000 | ||
| 83 | #define MM_ADDR_IO_TMR 0x80017000 | ||
| 84 | #define MM_ADDR_IO_WATCHDOG 0x80017800 | ||
| 85 | #define MM_ADDR_IO_ETM 0x80018000 | ||
| 86 | #define MM_ADDR_IO_DDRC 0x80019000 | ||
| 87 | #define MM_ADDR_IO_SINTC 0x80100000 | ||
| 88 | #define MM_ADDR_IO_INTC0 0x80200000 | ||
| 89 | #define MM_ADDR_IO_INTC1 0x80201000 | ||
| 90 | #define MM_ADDR_IO_GE 0x80300000 | ||
| 91 | #define MM_ADDR_IO_USB_CTLR0 0x80400000 | ||
| 92 | #define MM_ADDR_IO_USB_CTLR1 0x80410000 | ||
| 93 | #define MM_ADDR_IO_USB_PHY 0x80420000 | ||
| 94 | #define MM_ADDR_IO_SDIOH0 0x80500000 | ||
| 95 | #define MM_ADDR_IO_SDIOH1 0x80600000 | ||
| 96 | #define MM_ADDR_IO_VDEC 0x80700000 | ||
| 97 | |||
| 98 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 99 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 100 | |||
| 101 | #endif /* _MM_ADDR_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/mm_io.h b/arch/arm/mach-bcmring/include/mach/csp/mm_io.h new file mode 100644 index 00000000000..de92ec6a01a --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/mm_io.h | |||
| @@ -0,0 +1,147 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file mm_io.h | ||
| 18 | * | ||
| 19 | * @brief Memory Map I/O definitions | ||
| 20 | * | ||
| 21 | * @note | ||
| 22 | * None | ||
| 23 | */ | ||
| 24 | /****************************************************************************/ | ||
| 25 | |||
| 26 | #ifndef _MM_IO_H | ||
| 27 | #define _MM_IO_H | ||
| 28 | |||
| 29 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 30 | #include <mach/csp/mm_addr.h> | ||
| 31 | |||
| 32 | #if !defined(CSP_SIMULATION) | ||
| 33 | #include <cfg_global.h> | ||
| 34 | #endif | ||
| 35 | |||
| 36 | /* ---- Public Constants and Types --------------------------------------- */ | ||
| 37 | |||
| 38 | #if defined(CONFIG_MMU) | ||
| 39 | |||
| 40 | /* This macro is referenced in <mach/io.h> | ||
| 41 | * Phys to Virtual 0xNyxxxxxx => 0xFNxxxxxx | ||
| 42 | * This macro is referenced in <asm/arch/io.h> | ||
| 43 | * | ||
| 44 | * Assume VPM address is the last x MB of memory. For VPM, map to | ||
| 45 | * 0xf0000000 and up. | ||
| 46 | */ | ||
| 47 | |||
| 48 | #ifndef MM_IO_PHYS_TO_VIRT | ||
| 49 | #ifdef __ASSEMBLY__ | ||
| 50 | #define MM_IO_PHYS_TO_VIRT(phys) (0xF0000000 | (((phys) >> 4) & 0x0F000000) | ((phys) & 0xFFFFFF)) | ||
| 51 | #else | ||
| 52 | #define MM_IO_PHYS_TO_VIRT(phys) (((phys) == MM_ADDR_IO_VPM_EXTMEM_RSVD) ? 0xF0000000 : \ | ||
| 53 | (0xF0000000 | (((phys) >> 4) & 0x0F000000) | ((phys) & 0xFFFFFF))) | ||
| 54 | #endif | ||
| 55 | #endif | ||
| 56 | |||
| 57 | /* Virtual to Physical 0xFNxxxxxx => 0xN0xxxxxx */ | ||
| 58 | |||
| 59 | #ifndef MM_IO_VIRT_TO_PHYS | ||
| 60 | #ifdef __ASSEMBLY__ | ||
| 61 | #define MM_IO_VIRT_TO_PHYS(virt) ((((virt) & 0x0F000000) << 4) | ((virt) & 0xFFFFFF)) | ||
| 62 | #else | ||
| 63 | #define MM_IO_VIRT_TO_PHYS(virt) (((virt) == 0xF0000000) ? MM_ADDR_IO_VPM_EXTMEM_RSVD : \ | ||
| 64 | ((((virt) & 0x0F000000) << 4) | ((virt) & 0xFFFFFF))) | ||
| 65 | #endif | ||
| 66 | #endif | ||
| 67 | |||
| 68 | #else | ||
| 69 | |||
| 70 | #ifndef MM_IO_PHYS_TO_VIRT | ||
| 71 | #define MM_IO_PHYS_TO_VIRT(phys) (phys) | ||
| 72 | #endif | ||
| 73 | |||
| 74 | #ifndef MM_IO_VIRT_TO_PHYS | ||
| 75 | #define MM_IO_VIRT_TO_PHYS(virt) (virt) | ||
| 76 | #endif | ||
| 77 | |||
| 78 | #endif | ||
| 79 | |||
| 80 | /* Registers in 0xExxxxxxx that should be moved to 0xFxxxxxxx */ | ||
| 81 | #define MM_IO_BASE_FLASHC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_FLASHC) | ||
| 82 | #define MM_IO_BASE_NAND MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_NAND) | ||
| 83 | #define MM_IO_BASE_UMI MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_UMI) | ||
| 84 | |||
| 85 | #define MM_IO_START MM_ADDR_IO_FLASHC /* Physical beginning of IO mapped memory */ | ||
| 86 | #define MM_IO_BASE MM_IO_BASE_FLASHC /* Virtual beginning of IO mapped memory */ | ||
| 87 | |||
| 88 | #define MM_IO_BASE_BROM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_BROM) | ||
| 89 | #define MM_IO_BASE_ARAM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_ARAM) | ||
| 90 | #define MM_IO_BASE_DMA0 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_DMA0) | ||
| 91 | #define MM_IO_BASE_DMA1 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_DMA1) | ||
| 92 | #define MM_IO_BASE_ESW MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_ESW) | ||
| 93 | #define MM_IO_BASE_CLCD MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_CLCD) | ||
| 94 | #define MM_IO_BASE_PIF MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_PIF) | ||
| 95 | #define MM_IO_BASE_APM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_APM) | ||
| 96 | #define MM_IO_BASE_SPUM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_SPUM) | ||
| 97 | #define MM_IO_BASE_VPM_PROG MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_VPM_PROG) | ||
| 98 | #define MM_IO_BASE_VPM_DATA MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_VPM_DATA) | ||
| 99 | |||
| 100 | #define MM_IO_BASE_VRAM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_VRAM) | ||
| 101 | |||
| 102 | #define MM_IO_BASE_CHIPC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_CHIPC) | ||
| 103 | #define MM_IO_BASE_DDRC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_DDRC) | ||
| 104 | #define MM_IO_BASE_LEDM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_LEDM) | ||
| 105 | #define MM_IO_BASE_PWM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_PWM) | ||
| 106 | #define MM_IO_BASE_VINTC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_VINTC) | ||
| 107 | #define MM_IO_BASE_GPIO0 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_GPIO0) | ||
| 108 | #define MM_IO_BASE_GPIO1 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_GPIO1) | ||
| 109 | #define MM_IO_BASE_TMR MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_TMR) | ||
| 110 | #define MM_IO_BASE_WATCHDOG MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_WATCHDOG) | ||
| 111 | #define MM_IO_BASE_ETM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_ETM) | ||
| 112 | #define MM_IO_BASE_HPM MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_HPM) | ||
| 113 | #define MM_IO_BASE_HPM_REMAP MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_HPM_REMAP) | ||
| 114 | #define MM_IO_BASE_TZPC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_TZPC) | ||
| 115 | #define MM_IO_BASE_MPU MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_MPU) | ||
| 116 | #define MM_IO_BASE_SPUMP MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_SPUMP) | ||
| 117 | #define MM_IO_BASE_PKA MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_PKA) | ||
| 118 | #define MM_IO_BASE_RNG MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_RNG) | ||
| 119 | #define MM_IO_BASE_KEYC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_KEYC) | ||
| 120 | #define MM_IO_BASE_BBL MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_BBL) | ||
| 121 | #define MM_IO_BASE_OTP MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_OTP) | ||
| 122 | #define MM_IO_BASE_I2S0 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_I2S0) | ||
| 123 | #define MM_IO_BASE_I2S1 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_I2S1) | ||
| 124 | #define MM_IO_BASE_UARTA MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_UARTA) | ||
| 125 | #define MM_IO_BASE_UARTB MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_UARTB) | ||
| 126 | #define MM_IO_BASE_I2CH MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_I2CH) | ||
| 127 | #define MM_IO_BASE_SPIH MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_SPIH) | ||
| 128 | #define MM_IO_BASE_TSC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_TSC) | ||
| 129 | #define MM_IO_BASE_I2CS MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_I2CS) | ||
| 130 | #define MM_IO_BASE_SPIS MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_SPIS) | ||
| 131 | #define MM_IO_BASE_SINTC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_SINTC) | ||
| 132 | #define MM_IO_BASE_INTC0 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_INTC0) | ||
| 133 | #define MM_IO_BASE_INTC1 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_INTC1) | ||
| 134 | #define MM_IO_BASE_GE MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_GE) | ||
| 135 | #define MM_IO_BASE_USB_CTLR0 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_USB_CTLR0) | ||
| 136 | #define MM_IO_BASE_USB_CTLR1 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_USB_CTLR1) | ||
| 137 | #define MM_IO_BASE_USB_PHY MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_USB_PHY) | ||
| 138 | #define MM_IO_BASE_SDIOH0 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_SDIOH0) | ||
| 139 | #define MM_IO_BASE_SDIOH1 MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_SDIOH1) | ||
| 140 | #define MM_IO_BASE_VDEC MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_VDEC) | ||
| 141 | |||
| 142 | #define MM_IO_BASE_VPM_EXTMEM_RSVD MM_IO_PHYS_TO_VIRT(MM_ADDR_IO_VPM_EXTMEM_RSVD) | ||
| 143 | |||
| 144 | /* ---- Public Variable Externs ------------------------------------------ */ | ||
| 145 | /* ---- Public Function Prototypes --------------------------------------- */ | ||
| 146 | |||
| 147 | #endif /* _MM_IO_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/secHw_def.h b/arch/arm/mach-bcmring/include/mach/csp/secHw_def.h new file mode 100644 index 00000000000..d15f5f3ec2d --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/secHw_def.h | |||
| @@ -0,0 +1,100 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file secHw_def.h | ||
| 18 | * | ||
| 19 | * @brief Definitions for configuring/testing secure blocks | ||
| 20 | * | ||
| 21 | * @note | ||
| 22 | * None | ||
| 23 | */ | ||
| 24 | /****************************************************************************/ | ||
| 25 | |||
| 26 | #ifndef SECHW_DEF_H | ||
| 27 | #define SECHW_DEF_H | ||
| 28 | |||
| 29 | #include <mach/csp/mm_io.h> | ||
| 30 | |||
| 31 | /* Bit mask for various secure device */ | ||
| 32 | #define secHw_BLK_MASK_CHIP_CONTROL 0x00000001 | ||
| 33 | #define secHw_BLK_MASK_KEY_SCAN 0x00000002 | ||
| 34 | #define secHw_BLK_MASK_TOUCH_SCREEN 0x00000004 | ||
| 35 | #define secHw_BLK_MASK_UART0 0x00000008 | ||
| 36 | #define secHw_BLK_MASK_UART1 0x00000010 | ||
| 37 | #define secHw_BLK_MASK_WATCHDOG 0x00000020 | ||
| 38 | #define secHw_BLK_MASK_SPUM 0x00000040 | ||
| 39 | #define secHw_BLK_MASK_DDR2 0x00000080 | ||
| 40 | #define secHw_BLK_MASK_EXT_MEM 0x00000100 | ||
| 41 | #define secHw_BLK_MASK_ESW 0x00000200 | ||
| 42 | #define secHw_BLK_MASK_SPU 0x00010000 | ||
| 43 | #define secHw_BLK_MASK_PKA 0x00020000 | ||
| 44 | #define secHw_BLK_MASK_RNG 0x00040000 | ||
| 45 | #define secHw_BLK_MASK_RTC 0x00080000 | ||
| 46 | #define secHw_BLK_MASK_OTP 0x00100000 | ||
| 47 | #define secHw_BLK_MASK_BOOT 0x00200000 | ||
| 48 | #define secHw_BLK_MASK_MPU 0x00400000 | ||
| 49 | #define secHw_BLK_MASK_TZCTRL 0x00800000 | ||
| 50 | #define secHw_BLK_MASK_INTR 0x01000000 | ||
| 51 | |||
| 52 | /* Trustzone register set */ | ||
| 53 | typedef struct { | ||
| 54 | volatile uint32_t status; /* read only - reflects status of writes of 2 write registers */ | ||
| 55 | volatile uint32_t setUnsecure; /* write only. reads back as 0 */ | ||
| 56 | volatile uint32_t setSecure; /* write only. reads back as 0 */ | ||
| 57 | } secHw_TZREG_t; | ||
| 58 | |||
| 59 | /* There are 2 register sets. The first is for the lower 16 bits, the 2nd */ | ||
| 60 | /* is for the higher 16 bits. */ | ||
| 61 | |||
| 62 | typedef enum { | ||
| 63 | secHw_IDX_LS = 0, | ||
| 64 | secHw_IDX_MS = 1, | ||
| 65 | secHw_IDX_NUM | ||
| 66 | } secHw_IDX_e; | ||
| 67 | |||
| 68 | typedef struct { | ||
| 69 | volatile secHw_TZREG_t reg[secHw_IDX_NUM]; | ||
| 70 | } secHw_REGS_t; | ||
| 71 | |||
| 72 | /****************************************************************************/ | ||
| 73 | /** | ||
| 74 | * @brief Configures a device as a secure device | ||
| 75 | * | ||
| 76 | */ | ||
| 77 | /****************************************************************************/ | ||
| 78 | static inline void secHw_setSecure(uint32_t mask /* mask of type secHw_BLK_MASK_XXXXXX */ | ||
| 79 | ); | ||
| 80 | |||
| 81 | /****************************************************************************/ | ||
| 82 | /** | ||
| 83 | * @brief Configures a device as a non-secure device | ||
| 84 | * | ||
| 85 | */ | ||
| 86 | /****************************************************************************/ | ||
| 87 | static inline void secHw_setUnsecure(uint32_t mask /* mask of type secHw_BLK_MASK_XXXXXX */ | ||
| 88 | ); | ||
| 89 | |||
| 90 | /****************************************************************************/ | ||
| 91 | /** | ||
| 92 | * @brief Get the trustzone status for all components. 1 = non-secure, 0 = secure | ||
| 93 | * | ||
| 94 | */ | ||
| 95 | /****************************************************************************/ | ||
| 96 | static inline uint32_t secHw_getStatus(void); | ||
| 97 | |||
| 98 | #include <mach/csp/secHw_inline.h> | ||
| 99 | |||
| 100 | #endif /* SECHW_DEF_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/secHw_inline.h b/arch/arm/mach-bcmring/include/mach/csp/secHw_inline.h new file mode 100644 index 00000000000..9cd6a032ab7 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/secHw_inline.h | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2003 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file secHw_inline.h | ||
| 18 | * | ||
| 19 | * @brief Definitions for configuring/testing secure blocks | ||
| 20 | * | ||
| 21 | * @note | ||
| 22 | * None | ||
| 23 | */ | ||
| 24 | /****************************************************************************/ | ||
| 25 | |||
| 26 | #ifndef SECHW_INLINE_H | ||
| 27 | #define SECHW_INLINE_H | ||
| 28 | |||
| 29 | /****************************************************************************/ | ||
| 30 | /** | ||
| 31 | * @brief Configures a device as a secure device | ||
| 32 | * | ||
| 33 | */ | ||
| 34 | /****************************************************************************/ | ||
| 35 | static inline void secHw_setSecure(uint32_t mask /* mask of type secHw_BLK_MASK_XXXXXX */ | ||
| 36 | ) { | ||
| 37 | secHw_REGS_t *regp = (secHw_REGS_t *) MM_IO_BASE_TZPC; | ||
| 38 | |||
| 39 | if (mask & 0x0000FFFF) { | ||
| 40 | regp->reg[secHw_IDX_LS].setSecure = mask & 0x0000FFFF; | ||
| 41 | } | ||
| 42 | |||
| 43 | if (mask & 0xFFFF0000) { | ||
| 44 | regp->reg[secHw_IDX_MS].setSecure = mask >> 16; | ||
| 45 | } | ||
| 46 | } | ||
| 47 | |||
| 48 | /****************************************************************************/ | ||
| 49 | /** | ||
| 50 | * @brief Configures a device as a non-secure device | ||
| 51 | * | ||
| 52 | */ | ||
| 53 | /****************************************************************************/ | ||
| 54 | static inline void secHw_setUnsecure(uint32_t mask /* mask of type secHw_BLK_MASK_XXXXXX */ | ||
| 55 | ) { | ||
| 56 | secHw_REGS_t *regp = (secHw_REGS_t *) MM_IO_BASE_TZPC; | ||
| 57 | |||
| 58 | if (mask & 0x0000FFFF) { | ||
| 59 | regp->reg[secHw_IDX_LS].setUnsecure = mask & 0x0000FFFF; | ||
| 60 | } | ||
| 61 | if (mask & 0xFFFF0000) { | ||
| 62 | regp->reg[secHw_IDX_MS].setUnsecure = mask >> 16; | ||
| 63 | } | ||
| 64 | } | ||
| 65 | |||
| 66 | /****************************************************************************/ | ||
| 67 | /** | ||
| 68 | * @brief Get the trustzone status for all components. 1 = non-secure, 0 = secure | ||
| 69 | * | ||
| 70 | */ | ||
| 71 | /****************************************************************************/ | ||
| 72 | static inline uint32_t secHw_getStatus(void) | ||
| 73 | { | ||
| 74 | secHw_REGS_t *regp = (secHw_REGS_t *) MM_IO_BASE_TZPC; | ||
| 75 | |||
| 76 | return (regp->reg[1].status << 16) + regp->reg[0].status; | ||
| 77 | } | ||
| 78 | |||
| 79 | #endif /* SECHW_INLINE_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/csp/tmrHw_reg.h b/arch/arm/mach-bcmring/include/mach/csp/tmrHw_reg.h new file mode 100644 index 00000000000..3080ac7239a --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/csp/tmrHw_reg.h | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file tmrHw_reg.h | ||
| 18 | * | ||
| 19 | * @brief Definitions for low level Timer registers | ||
| 20 | * | ||
| 21 | */ | ||
| 22 | /****************************************************************************/ | ||
| 23 | #ifndef _TMRHW_REG_H | ||
| 24 | #define _TMRHW_REG_H | ||
| 25 | |||
| 26 | #include <mach/csp/mm_io.h> | ||
| 27 | #include <mach/csp/hw_cfg.h> | ||
| 28 | /* Base address */ | ||
| 29 | #define tmrHw_MODULE_BASE_ADDR MM_IO_BASE_TMR | ||
| 30 | |||
| 31 | /* | ||
| 32 | This platform has four different timers running at different clock speed | ||
| 33 | |||
| 34 | Timer one (Timer ID 0) runs at 25 MHz | ||
| 35 | Timer two (Timer ID 1) runs at 25 MHz | ||
| 36 | Timer three (Timer ID 2) runs at 150 MHz | ||
| 37 | Timer four (Timer ID 3) runs at 150 MHz | ||
| 38 | */ | ||
| 39 | #define tmrHw_LOW_FREQUENCY_MHZ 25 /* Always 25MHz from XTAL */ | ||
| 40 | #define tmrHw_LOW_FREQUENCY_HZ 25000000 | ||
| 41 | |||
| 42 | #if defined(CFG_GLOBAL_CHIP) && (CFG_GLOBAL_CHIP == FPGA11107) | ||
| 43 | #define tmrHw_HIGH_FREQUENCY_MHZ 150 /* Always 150MHz for FPGA */ | ||
| 44 | #define tmrHw_HIGH_FREQUENCY_HZ 150000000 | ||
| 45 | #else | ||
| 46 | #define tmrHw_HIGH_FREQUENCY_HZ HW_CFG_BUS_CLK_HZ | ||
| 47 | #define tmrHw_HIGH_FREQUENCY_MHZ (HW_CFG_BUS_CLK_HZ / 1000000) | ||
| 48 | #endif | ||
| 49 | |||
| 50 | #define tmrHw_LOW_RESOLUTION_CLOCK tmrHw_LOW_FREQUENCY_HZ | ||
| 51 | #define tmrHw_HIGH_RESOLUTION_CLOCK tmrHw_HIGH_FREQUENCY_HZ | ||
| 52 | #define tmrHw_MAX_COUNT (0xFFFFFFFF) /* maximum number of count a timer can count */ | ||
| 53 | #define tmrHw_TIMER_NUM_COUNT (4) /* Number of timer module supported */ | ||
| 54 | |||
| 55 | typedef struct { | ||
| 56 | uint32_t LoadValue; /* Load value for timer */ | ||
| 57 | uint32_t CurrentValue; /* Current value for timer */ | ||
| 58 | uint32_t Control; /* Control register */ | ||
| 59 | uint32_t InterruptClear; /* Interrupt clear register */ | ||
| 60 | uint32_t RawInterruptStatus; /* Raw interrupt status */ | ||
| 61 | uint32_t InterruptStatus; /* Masked interrupt status */ | ||
| 62 | uint32_t BackgroundLoad; /* Background load value */ | ||
| 63 | uint32_t padding; /* Padding register */ | ||
| 64 | } tmrHw_REG_t; | ||
| 65 | |||
| 66 | /* Control bot masks */ | ||
| 67 | #define tmrHw_CONTROL_TIMER_ENABLE 0x00000080 | ||
| 68 | #define tmrHw_CONTROL_PERIODIC 0x00000040 | ||
| 69 | #define tmrHw_CONTROL_INTERRUPT_ENABLE 0x00000020 | ||
| 70 | #define tmrHw_CONTROL_PRESCALE_MASK 0x0000000C | ||
| 71 | #define tmrHw_CONTROL_PRESCALE_1 0x00000000 | ||
| 72 | #define tmrHw_CONTROL_PRESCALE_16 0x00000004 | ||
| 73 | #define tmrHw_CONTROL_PRESCALE_256 0x00000008 | ||
| 74 | #define tmrHw_CONTROL_32BIT 0x00000002 | ||
| 75 | #define tmrHw_CONTROL_ONESHOT 0x00000001 | ||
| 76 | #define tmrHw_CONTROL_FREE_RUNNING 0x00000000 | ||
| 77 | |||
| 78 | #define tmrHw_CONTROL_MODE_MASK (tmrHw_CONTROL_PERIODIC | tmrHw_CONTROL_ONESHOT) | ||
| 79 | |||
| 80 | #define pTmrHw ((volatile tmrHw_REG_t *)tmrHw_MODULE_BASE_ADDR) | ||
| 81 | |||
| 82 | #endif /* _TMRHW_REG_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/dma.h b/arch/arm/mach-bcmring/include/mach/dma.h new file mode 100644 index 00000000000..1f2c5319c05 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/dma.h | |||
| @@ -0,0 +1,826 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /****************************************************************************/ | ||
| 16 | /** | ||
| 17 | * @file dma.h | ||
| 18 | * | ||
| 19 | * @brief API definitions for the linux DMA interface. | ||
| 20 | */ | ||
| 21 | /****************************************************************************/ | ||
| 22 | |||
| 23 | #if !defined(ASM_ARM_ARCH_BCMRING_DMA_H) | ||
| 24 | #define ASM_ARM_ARCH_BCMRING_DMA_H | ||
| 25 | |||
| 26 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 27 | |||
| 28 | #include <linux/kernel.h> | ||
| 29 | #include <linux/wait.h> | ||
| 30 | #include <linux/semaphore.h> | ||
| 31 | #include <csp/dmacHw.h> | ||
| 32 | #include <mach/timer.h> | ||
| 33 | #include <linux/scatterlist.h> | ||
| 34 | #include <linux/dma-mapping.h> | ||
| 35 | #include <linux/mm.h> | ||
| 36 | #include <linux/vmalloc.h> | ||
| 37 | #include <linux/pagemap.h> | ||
| 38 | |||
| 39 | /* ---- Constants and Types ---------------------------------------------- */ | ||
| 40 | |||
| 41 | /* If DMA_DEBUG_TRACK_RESERVATION is set to a non-zero value, then the filename */ | ||
| 42 | /* and line number of the reservation request will be recorded in the channel table */ | ||
| 43 | |||
| 44 | #define DMA_DEBUG_TRACK_RESERVATION 1 | ||
| 45 | |||
| 46 | #define DMA_NUM_CONTROLLERS 2 | ||
| 47 | #define DMA_NUM_CHANNELS 8 /* per controller */ | ||
| 48 | |||
| 49 | typedef enum { | ||
| 50 | DMA_DEVICE_MEM_TO_MEM, /* For memory to memory transfers */ | ||
| 51 | DMA_DEVICE_I2S0_DEV_TO_MEM, | ||
| 52 | DMA_DEVICE_I2S0_MEM_TO_DEV, | ||
| 53 | DMA_DEVICE_I2S1_DEV_TO_MEM, | ||
| 54 | DMA_DEVICE_I2S1_MEM_TO_DEV, | ||
| 55 | DMA_DEVICE_APM_CODEC_A_DEV_TO_MEM, | ||
| 56 | DMA_DEVICE_APM_CODEC_A_MEM_TO_DEV, | ||
| 57 | DMA_DEVICE_APM_CODEC_B_DEV_TO_MEM, | ||
| 58 | DMA_DEVICE_APM_CODEC_B_MEM_TO_DEV, | ||
| 59 | DMA_DEVICE_APM_CODEC_C_DEV_TO_MEM, /* Additional mic input for beam-forming */ | ||
| 60 | DMA_DEVICE_APM_PCM0_DEV_TO_MEM, | ||
| 61 | DMA_DEVICE_APM_PCM0_MEM_TO_DEV, | ||
| 62 | DMA_DEVICE_APM_PCM1_DEV_TO_MEM, | ||
| 63 | DMA_DEVICE_APM_PCM1_MEM_TO_DEV, | ||
| 64 | DMA_DEVICE_SPUM_DEV_TO_MEM, | ||
| 65 | DMA_DEVICE_SPUM_MEM_TO_DEV, | ||
| 66 | DMA_DEVICE_SPIH_DEV_TO_MEM, | ||
| 67 | DMA_DEVICE_SPIH_MEM_TO_DEV, | ||
| 68 | DMA_DEVICE_UART_A_DEV_TO_MEM, | ||
| 69 | DMA_DEVICE_UART_A_MEM_TO_DEV, | ||
| 70 | DMA_DEVICE_UART_B_DEV_TO_MEM, | ||
| 71 | DMA_DEVICE_UART_B_MEM_TO_DEV, | ||
| 72 | DMA_DEVICE_PIF_MEM_TO_DEV, | ||
| 73 | DMA_DEVICE_PIF_DEV_TO_MEM, | ||
| 74 | DMA_DEVICE_ESW_DEV_TO_MEM, | ||
| 75 | DMA_DEVICE_ESW_MEM_TO_DEV, | ||
| 76 | DMA_DEVICE_VPM_MEM_TO_MEM, | ||
| 77 | DMA_DEVICE_CLCD_MEM_TO_MEM, | ||
| 78 | DMA_DEVICE_NAND_MEM_TO_MEM, | ||
| 79 | DMA_DEVICE_MEM_TO_VRAM, | ||
| 80 | DMA_DEVICE_VRAM_TO_MEM, | ||
| 81 | |||
| 82 | /* Add new entries before this line. */ | ||
| 83 | |||
| 84 | DMA_NUM_DEVICE_ENTRIES, | ||
| 85 | DMA_DEVICE_NONE = 0xff, /* Special value to indicate that no device is currently assigned. */ | ||
| 86 | |||
| 87 | } DMA_Device_t; | ||
| 88 | |||
| 89 | /**************************************************************************** | ||
| 90 | * | ||
| 91 | * The DMA_Handle_t is the primary object used by callers of the API. | ||
| 92 | * | ||
| 93 | *****************************************************************************/ | ||
| 94 | |||
| 95 | #define DMA_INVALID_HANDLE ((DMA_Handle_t) -1) | ||
| 96 | |||
| 97 | typedef int DMA_Handle_t; | ||
| 98 | |||
| 99 | /**************************************************************************** | ||
| 100 | * | ||
| 101 | * The DMA_DescriptorRing_t contains a ring of descriptors which is used | ||
| 102 | * to point to regions of memory. | ||
| 103 | * | ||
| 104 | *****************************************************************************/ | ||
| 105 | |||
| 106 | typedef struct { | ||
| 107 | void *virtAddr; /* Virtual Address of the descriptor ring */ | ||
| 108 | dma_addr_t physAddr; /* Physical address of the descriptor ring */ | ||
| 109 | int descriptorsAllocated; /* Number of descriptors allocated in the descriptor ring */ | ||
| 110 | size_t bytesAllocated; /* Number of bytes allocated in the descriptor ring */ | ||
| 111 | |||
| 112 | } DMA_DescriptorRing_t; | ||
| 113 | |||
| 114 | /**************************************************************************** | ||
| 115 | * | ||
| 116 | * The DMA_MemType_t and DMA_MemMap_t are helper structures used to setup | ||
| 117 | * DMA chains from a variety of memory sources. | ||
| 118 | * | ||
| 119 | *****************************************************************************/ | ||
| 120 | |||
| 121 | #define DMA_MEM_MAP_MIN_SIZE 4096 /* Pages less than this size are better */ | ||
| 122 | /* off not being DMA'd. */ | ||
| 123 | |||
| 124 | typedef enum { | ||
| 125 | DMA_MEM_TYPE_NONE, /* Not a valid setting */ | ||
| 126 | DMA_MEM_TYPE_VMALLOC, /* Memory came from vmalloc call */ | ||
| 127 | DMA_MEM_TYPE_KMALLOC, /* Memory came from kmalloc call */ | ||
| 128 | DMA_MEM_TYPE_DMA, /* Memory came from dma_alloc_xxx call */ | ||
| 129 | DMA_MEM_TYPE_USER, /* Memory came from user space. */ | ||
| 130 | |||
| 131 | } DMA_MemType_t; | ||
| 132 | |||
| 133 | /* A segment represents a physically and virtually contiguous chunk of memory. */ | ||
| 134 | /* i.e. each segment can be DMA'd */ | ||
| 135 | /* A user of the DMA code will add memory regions. Each region may need to be */ | ||
| 136 | /* represented by one or more segments. */ | ||
| 137 | |||
| 138 | typedef struct { | ||
| 139 | void *virtAddr; /* Virtual address used for this segment */ | ||
| 140 | dma_addr_t physAddr; /* Physical address this segment maps to */ | ||
| 141 | size_t numBytes; /* Size of the segment, in bytes */ | ||
| 142 | |||
| 143 | } DMA_Segment_t; | ||
| 144 | |||
| 145 | /* A region represents a virtually contiguous chunk of memory, which may be */ | ||
| 146 | /* made up of multiple segments. */ | ||
| 147 | |||
| 148 | typedef struct { | ||
| 149 | DMA_MemType_t memType; | ||
| 150 | void *virtAddr; | ||
| 151 | size_t numBytes; | ||
| 152 | |||
| 153 | /* Each region (virtually contiguous) consists of one or more segments. Each */ | ||
| 154 | /* segment is virtually and physically contiguous. */ | ||
| 155 | |||
| 156 | int numSegmentsUsed; | ||
| 157 | int numSegmentsAllocated; | ||
| 158 | DMA_Segment_t *segment; | ||
| 159 | |||
| 160 | /* When a region corresponds to user memory, we need to lock all of the pages */ | ||
| 161 | /* down before we can figure out the physical addresses. The lockedPage array contains */ | ||
| 162 | /* the pages that were locked, and which subsequently need to be unlocked once the */ | ||
| 163 | /* memory is unmapped. */ | ||
| 164 | |||
| 165 | unsigned numLockedPages; | ||
| 166 | struct page **lockedPages; | ||
| 167 | |||
| 168 | } DMA_Region_t; | ||
| 169 | |||
| 170 | typedef struct { | ||
| 171 | int inUse; /* Is this mapping currently being used? */ | ||
| 172 | struct semaphore lock; /* Acquired when using this structure */ | ||
| 173 | enum dma_data_direction dir; /* Direction this transfer is intended for */ | ||
| 174 | |||
| 175 | /* In the event that we're mapping user memory, we need to know which task */ | ||
| 176 | /* the memory is for, so that we can obtain the correct mm locks. */ | ||
| 177 | |||
| 178 | struct task_struct *userTask; | ||
| 179 | |||
| 180 | int numRegionsUsed; | ||
| 181 | int numRegionsAllocated; | ||
| 182 | DMA_Region_t *region; | ||
| 183 | |||
| 184 | } DMA_MemMap_t; | ||
| 185 | |||
| 186 | /**************************************************************************** | ||
| 187 | * | ||
| 188 | * The DMA_DeviceAttribute_t contains information which describes a | ||
| 189 | * particular DMA device (or peripheral). | ||
| 190 | * | ||
| 191 | * It is anticipated that the arrary of DMA_DeviceAttribute_t's will be | ||
| 192 | * statically initialized. | ||
| 193 | * | ||
| 194 | *****************************************************************************/ | ||
| 195 | |||
| 196 | /* The device handler is called whenever a DMA operation completes. The reaon */ | ||
| 197 | /* for it to be called will be a bitmask with one or more of the following bits */ | ||
| 198 | /* set. */ | ||
| 199 | |||
| 200 | #define DMA_HANDLER_REASON_BLOCK_COMPLETE dmacHw_INTERRUPT_STATUS_BLOCK | ||
| 201 | #define DMA_HANDLER_REASON_TRANSFER_COMPLETE dmacHw_INTERRUPT_STATUS_TRANS | ||
| 202 | #define DMA_HANDLER_REASON_ERROR dmacHw_INTERRUPT_STATUS_ERROR | ||
| 203 | |||
| 204 | typedef void (*DMA_DeviceHandler_t) (DMA_Device_t dev, int reason, | ||
| 205 | void *userData); | ||
| 206 | |||
| 207 | #define DMA_DEVICE_FLAG_ON_DMA0 0x00000001 | ||
| 208 | #define DMA_DEVICE_FLAG_ON_DMA1 0x00000002 | ||
| 209 | #define DMA_DEVICE_FLAG_PORT_PER_DMAC 0x00000004 /* If set, it means that the port used on DMAC0 is different from the port used on DMAC1 */ | ||
| 210 | #define DMA_DEVICE_FLAG_ALLOC_DMA1_FIRST 0x00000008 /* If set, allocate from DMA1 before allocating from DMA0 */ | ||
| 211 | #define DMA_DEVICE_FLAG_IS_DEDICATED 0x00000100 | ||
| 212 | #define DMA_DEVICE_FLAG_NO_ISR 0x00000200 | ||
| 213 | #define DMA_DEVICE_FLAG_ALLOW_LARGE_FIFO 0x00000400 | ||
| 214 | #define DMA_DEVICE_FLAG_IN_USE 0x00000800 /* If set, device is in use on a channel */ | ||
| 215 | |||
| 216 | /* Note: Some DMA devices can be used from multiple DMA Controllers. The bitmask is used to */ | ||
| 217 | /* determine which DMA controllers a given device can be used from, and the interface */ | ||
| 218 | /* array determeines the actual interface number to use for a given controller. */ | ||
| 219 | |||
| 220 | typedef struct { | ||
| 221 | uint32_t flags; /* Bitmask of DMA_DEVICE_FLAG_xxx constants */ | ||
| 222 | uint8_t dedicatedController; /* Controller number to use if DMA_DEVICE_FLAG_IS_DEDICATED is set. */ | ||
| 223 | uint8_t dedicatedChannel; /* Channel number to use if DMA_DEVICE_FLAG_IS_DEDICATED is set. */ | ||
| 224 | const char *name; /* Will show up in the /proc entry */ | ||
| 225 | |||
| 226 | uint32_t dmacPort[DMA_NUM_CONTROLLERS]; /* Specifies the port number when DMA_DEVICE_FLAG_PORT_PER_DMAC flag is set */ | ||
| 227 | |||
| 228 | dmacHw_CONFIG_t config; /* Configuration to use when DMA'ing using this device */ | ||
| 229 | |||
| 230 | void *userData; /* Passed to the devHandler */ | ||
| 231 | DMA_DeviceHandler_t devHandler; /* Called when DMA operations finish. */ | ||
| 232 | |||
| 233 | timer_tick_count_t transferStartTime; /* Time the current transfer was started */ | ||
| 234 | |||
| 235 | /* The following statistical information will be collected and presented in a proc entry. */ | ||
| 236 | /* Note: With a contiuous bandwidth of 1 Gb/sec, it would take 584 years to overflow */ | ||
| 237 | /* a 64 bit counter. */ | ||
| 238 | |||
| 239 | uint64_t numTransfers; /* Number of DMA transfers performed */ | ||
| 240 | uint64_t transferTicks; /* Total time spent doing DMA transfers (measured in timer_tick_count_t's) */ | ||
| 241 | uint64_t transferBytes; /* Total bytes transferred */ | ||
| 242 | uint32_t timesBlocked; /* Number of times a channel was unavailable */ | ||
| 243 | uint32_t numBytes; /* Last transfer size */ | ||
| 244 | |||
| 245 | /* It's not possible to free memory which is allocated for the descriptors from within */ | ||
| 246 | /* the ISR. So make the presumption that a given device will tend to use the */ | ||
| 247 | /* same sized buffers over and over again, and we keep them around. */ | ||
| 248 | |||
| 249 | DMA_DescriptorRing_t ring; /* Ring of descriptors allocated for this device */ | ||
| 250 | |||
| 251 | /* We stash away some of the information from the previous transfer. If back-to-back */ | ||
| 252 | /* transfers are performed from the same buffer, then we don't have to keep re-initializing */ | ||
| 253 | /* the descriptor buffers. */ | ||
| 254 | |||
| 255 | uint32_t prevNumBytes; | ||
| 256 | dma_addr_t prevSrcData; | ||
| 257 | dma_addr_t prevDstData; | ||
| 258 | |||
| 259 | } DMA_DeviceAttribute_t; | ||
| 260 | |||
| 261 | /**************************************************************************** | ||
| 262 | * | ||
| 263 | * DMA_Channel_t, DMA_Controller_t, and DMA_State_t are really internal | ||
| 264 | * data structures and don't belong in this header file, but are included | ||
| 265 | * merely for discussion. | ||
| 266 | * | ||
| 267 | * By the time this is implemented, these structures will be moved out into | ||
| 268 | * the appropriate C source file instead. | ||
| 269 | * | ||
| 270 | *****************************************************************************/ | ||
| 271 | |||
| 272 | /**************************************************************************** | ||
| 273 | * | ||
| 274 | * The DMA_Channel_t contains state information about each DMA channel. Some | ||
| 275 | * of the channels are dedicated. Non-dedicated channels are shared | ||
| 276 | * amongst the other devices. | ||
| 277 | * | ||
| 278 | *****************************************************************************/ | ||
| 279 | |||
| 280 | #define DMA_CHANNEL_FLAG_IN_USE 0x00000001 | ||
| 281 | #define DMA_CHANNEL_FLAG_IS_DEDICATED 0x00000002 | ||
| 282 | #define DMA_CHANNEL_FLAG_NO_ISR 0x00000004 | ||
| 283 | #define DMA_CHANNEL_FLAG_LARGE_FIFO 0x00000008 | ||
| 284 | |||
| 285 | typedef struct { | ||
| 286 | uint32_t flags; /* bitmask of DMA_CHANNEL_FLAG_xxx constants */ | ||
| 287 | DMA_Device_t devType; /* Device this channel is currently reserved for */ | ||
| 288 | DMA_Device_t lastDevType; /* Device type that used this previously */ | ||
| 289 | char name[20]; /* Name passed onto request_irq */ | ||
| 290 | |||
| 291 | #if (DMA_DEBUG_TRACK_RESERVATION) | ||
| 292 | const char *fileName; /* Place where channel reservation took place */ | ||
| 293 | int lineNum; /* Place where channel reservation took place */ | ||
| 294 | #endif | ||
| 295 | dmacHw_HANDLE_t dmacHwHandle; /* low level channel handle. */ | ||
| 296 | |||
| 297 | } DMA_Channel_t; | ||
| 298 | |||
| 299 | /**************************************************************************** | ||
| 300 | * | ||
| 301 | * The DMA_Controller_t contains state information about each DMA controller. | ||
| 302 | * | ||
| 303 | * The freeChannelQ is stored in the controller data structure rather than | ||
| 304 | * the channel data structure since several of the devices are accessible | ||
| 305 | * from multiple controllers, and there is no way to know which controller | ||
| 306 | * will become available first. | ||
| 307 | * | ||
| 308 | *****************************************************************************/ | ||
| 309 | |||
| 310 | typedef struct { | ||
| 311 | DMA_Channel_t channel[DMA_NUM_CHANNELS]; | ||
| 312 | |||
| 313 | } DMA_Controller_t; | ||
| 314 | |||
| 315 | /**************************************************************************** | ||
| 316 | * | ||
| 317 | * The DMA_Global_t contains all of the global state information used by | ||
| 318 | * the DMA code. | ||
| 319 | * | ||
| 320 | * Callers which need to allocate a shared channel will be queued up | ||
| 321 | * on the freeChannelQ until a channel becomes available. | ||
| 322 | * | ||
| 323 | *****************************************************************************/ | ||
| 324 | |||
| 325 | typedef struct { | ||
| 326 | struct semaphore lock; /* acquired when manipulating table entries */ | ||
| 327 | wait_queue_head_t freeChannelQ; | ||
| 328 | |||
| 329 | DMA_Controller_t controller[DMA_NUM_CONTROLLERS]; | ||
| 330 | |||
| 331 | } DMA_Global_t; | ||
| 332 | |||
| 333 | /* ---- Variable Externs ------------------------------------------------- */ | ||
| 334 | |||
| 335 | extern DMA_DeviceAttribute_t DMA_gDeviceAttribute[DMA_NUM_DEVICE_ENTRIES]; | ||
| 336 | |||
| 337 | /* ---- Function Prototypes ---------------------------------------------- */ | ||
| 338 | |||
| 339 | #if defined(__KERNEL__) | ||
| 340 | |||
| 341 | /****************************************************************************/ | ||
| 342 | /** | ||
| 343 | * Initializes the DMA module. | ||
| 344 | * | ||
| 345 | * @return | ||
| 346 | * 0 - Success | ||
| 347 | * < 0 - Error | ||
| 348 | */ | ||
| 349 | /****************************************************************************/ | ||
| 350 | |||
| 351 | int dma_init(void); | ||
| 352 | |||
| 353 | #if (DMA_DEBUG_TRACK_RESERVATION) | ||
| 354 | DMA_Handle_t dma_request_channel_dbg(DMA_Device_t dev, const char *fileName, | ||
| 355 | int lineNum); | ||
| 356 | #define dma_request_channel(dev) dma_request_channel_dbg(dev, __FILE__, __LINE__) | ||
| 357 | #else | ||
| 358 | |||
| 359 | /****************************************************************************/ | ||
| 360 | /** | ||
| 361 | * Reserves a channel for use with @a dev. If the device is setup to use | ||
| 362 | * a shared channel, then this function will block until a free channel | ||
| 363 | * becomes available. | ||
| 364 | * | ||
| 365 | * @return | ||
| 366 | * >= 0 - A valid DMA Handle. | ||
| 367 | * -EBUSY - Device is currently being used. | ||
| 368 | * -ENODEV - Device handed in is invalid. | ||
| 369 | */ | ||
| 370 | /****************************************************************************/ | ||
| 371 | |||
| 372 | DMA_Handle_t dma_request_channel(DMA_Device_t dev /* Device to use with the allocated channel. */ | ||
| 373 | ); | ||
| 374 | #endif | ||
| 375 | |||
| 376 | /****************************************************************************/ | ||
| 377 | /** | ||
| 378 | * Frees a previously allocated DMA Handle. | ||
| 379 | * | ||
| 380 | * @return | ||
| 381 | * 0 - DMA Handle was released successfully. | ||
| 382 | * -EINVAL - Invalid DMA handle | ||
| 383 | */ | ||
| 384 | /****************************************************************************/ | ||
| 385 | |||
| 386 | int dma_free_channel(DMA_Handle_t channel /* DMA handle. */ | ||
| 387 | ); | ||
| 388 | |||
| 389 | /****************************************************************************/ | ||
| 390 | /** | ||
| 391 | * Determines if a given device has been configured as using a shared | ||
| 392 | * channel. | ||
| 393 | * | ||
| 394 | * @return boolean | ||
| 395 | * 0 Device uses a dedicated channel | ||
| 396 | * non-zero Device uses a shared channel | ||
| 397 | */ | ||
| 398 | /****************************************************************************/ | ||
| 399 | |||
| 400 | int dma_device_is_channel_shared(DMA_Device_t dev /* Device to check. */ | ||
| 401 | ); | ||
| 402 | |||
| 403 | /****************************************************************************/ | ||
| 404 | /** | ||
| 405 | * Allocates memory to hold a descriptor ring. The descriptor ring then | ||
| 406 | * needs to be populated by making one or more calls to | ||
| 407 | * dna_add_descriptors. | ||
| 408 | * | ||
| 409 | * The returned descriptor ring will be automatically initialized. | ||
| 410 | * | ||
| 411 | * @return | ||
| 412 | * 0 Descriptor ring was allocated successfully | ||
| 413 | * -ENOMEM Unable to allocate memory for the desired number of descriptors. | ||
| 414 | */ | ||
| 415 | /****************************************************************************/ | ||
| 416 | |||
| 417 | int dma_alloc_descriptor_ring(DMA_DescriptorRing_t *ring, /* Descriptor ring to populate */ | ||
| 418 | int numDescriptors /* Number of descriptors that need to be allocated. */ | ||
| 419 | ); | ||
| 420 | |||
| 421 | /****************************************************************************/ | ||
| 422 | /** | ||
| 423 | * Releases the memory which was previously allocated for a descriptor ring. | ||
| 424 | */ | ||
| 425 | /****************************************************************************/ | ||
| 426 | |||
| 427 | void dma_free_descriptor_ring(DMA_DescriptorRing_t *ring /* Descriptor to release */ | ||
| 428 | ); | ||
| 429 | |||
| 430 | /****************************************************************************/ | ||
| 431 | /** | ||
| 432 | * Initializes a descriptor ring, so that descriptors can be added to it. | ||
| 433 | * Once a descriptor ring has been allocated, it may be reinitialized for | ||
| 434 | * use with additional/different regions of memory. | ||
| 435 | * | ||
| 436 | * Note that if 7 descriptors are allocated, it's perfectly acceptable to | ||
| 437 | * initialize the ring with a smaller number of descriptors. The amount | ||
| 438 | * of memory allocated for the descriptor ring will not be reduced, and | ||
| 439 | * the descriptor ring may be reinitialized later | ||
| 440 | * | ||
| 441 | * @return | ||
| 442 | * 0 Descriptor ring was initialized successfully | ||
| 443 | * -ENOMEM The descriptor which was passed in has insufficient space | ||
| 444 | * to hold the desired number of descriptors. | ||
| 445 | */ | ||
| 446 | /****************************************************************************/ | ||
| 447 | |||
| 448 | int dma_init_descriptor_ring(DMA_DescriptorRing_t *ring, /* Descriptor ring to initialize */ | ||
| 449 | int numDescriptors /* Number of descriptors to initialize. */ | ||
| 450 | ); | ||
| 451 | |||
| 452 | /****************************************************************************/ | ||
| 453 | /** | ||
| 454 | * Determines the number of descriptors which would be required for a | ||
| 455 | * transfer of the indicated memory region. | ||
| 456 | * | ||
| 457 | * This function also needs to know which DMA device this transfer will | ||
| 458 | * be destined for, so that the appropriate DMA configuration can be retrieved. | ||
| 459 | * DMA parameters such as transfer width, and whether this is a memory-to-memory | ||
| 460 | * or memory-to-peripheral, etc can all affect the actual number of descriptors | ||
| 461 | * required. | ||
| 462 | * | ||
| 463 | * @return | ||
| 464 | * > 0 Returns the number of descriptors required for the indicated transfer | ||
| 465 | * -EINVAL Invalid device type for this kind of transfer | ||
| 466 | * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM) | ||
| 467 | * -ENOMEM Memory exhausted | ||
| 468 | */ | ||
| 469 | /****************************************************************************/ | ||
| 470 | |||
| 471 | int dma_calculate_descriptor_count(DMA_Device_t device, /* DMA Device that this will be associated with */ | ||
| 472 | dma_addr_t srcData, /* Place to get data to write to device */ | ||
| 473 | dma_addr_t dstData, /* Pointer to device data address */ | ||
| 474 | size_t numBytes /* Number of bytes to transfer to the device */ | ||
| 475 | ); | ||
| 476 | |||
| 477 | /****************************************************************************/ | ||
| 478 | /** | ||
| 479 | * Adds a region of memory to the descriptor ring. Note that it may take | ||
| 480 | * multiple descriptors for each region of memory. It is the callers | ||
| 481 | * responsibility to allocate a sufficiently large descriptor ring. | ||
| 482 | * | ||
| 483 | * @return | ||
| 484 | * 0 Descriptors were added successfully | ||
| 485 | * -EINVAL Invalid device type for this kind of transfer | ||
| 486 | * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM) | ||
| 487 | * -ENOMEM Memory exhausted | ||
| 488 | */ | ||
| 489 | /****************************************************************************/ | ||
| 490 | |||
| 491 | int dma_add_descriptors(DMA_DescriptorRing_t *ring, /* Descriptor ring to add descriptors to */ | ||
| 492 | DMA_Device_t device, /* DMA Device that descriptors are for */ | ||
| 493 | dma_addr_t srcData, /* Place to get data (memory or device) */ | ||
| 494 | dma_addr_t dstData, /* Place to put data (memory or device) */ | ||
| 495 | size_t numBytes /* Number of bytes to transfer to the device */ | ||
| 496 | ); | ||
| 497 | |||
| 498 | /****************************************************************************/ | ||
| 499 | /** | ||
| 500 | * Sets the descriptor ring associated with a device. | ||
| 501 | * | ||
| 502 | * Once set, the descriptor ring will be associated with the device, even | ||
| 503 | * across channel request/free calls. Passing in a NULL descriptor ring | ||
| 504 | * will release any descriptor ring currently associated with the device. | ||
| 505 | * | ||
| 506 | * Note: If you call dma_transfer, or one of the other dma_alloc_ functions | ||
| 507 | * the descriptor ring may be released and reallocated. | ||
| 508 | * | ||
| 509 | * Note: This function will release the descriptor memory for any current | ||
| 510 | * descriptor ring associated with this device. | ||
| 511 | */ | ||
| 512 | /****************************************************************************/ | ||
| 513 | |||
| 514 | int dma_set_device_descriptor_ring(DMA_Device_t device, /* Device to update the descriptor ring for. */ | ||
| 515 | DMA_DescriptorRing_t *ring /* Descriptor ring to add descriptors to */ | ||
| 516 | ); | ||
| 517 | |||
| 518 | /****************************************************************************/ | ||
| 519 | /** | ||
| 520 | * Retrieves the descriptor ring associated with a device. | ||
| 521 | */ | ||
| 522 | /****************************************************************************/ | ||
| 523 | |||
| 524 | int dma_get_device_descriptor_ring(DMA_Device_t device, /* Device to retrieve the descriptor ring for. */ | ||
| 525 | DMA_DescriptorRing_t *ring /* Place to store retrieved ring */ | ||
| 526 | ); | ||
| 527 | |||
| 528 | /****************************************************************************/ | ||
| 529 | /** | ||
| 530 | * Allocates buffers for the descriptors. This is normally done automatically | ||
| 531 | * but needs to be done explicitly when initiating a dma from interrupt | ||
| 532 | * context. | ||
| 533 | * | ||
| 534 | * @return | ||
| 535 | * 0 Descriptors were allocated successfully | ||
| 536 | * -EINVAL Invalid device type for this kind of transfer | ||
| 537 | * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM) | ||
| 538 | * -ENOMEM Memory exhausted | ||
| 539 | */ | ||
| 540 | /****************************************************************************/ | ||
| 541 | |||
| 542 | int dma_alloc_descriptors(DMA_Handle_t handle, /* DMA Handle */ | ||
| 543 | dmacHw_TRANSFER_TYPE_e transferType, /* Type of transfer being performed */ | ||
| 544 | dma_addr_t srcData, /* Place to get data to write to device */ | ||
| 545 | dma_addr_t dstData, /* Pointer to device data address */ | ||
| 546 | size_t numBytes /* Number of bytes to transfer to the device */ | ||
| 547 | ); | ||
| 548 | |||
| 549 | /****************************************************************************/ | ||
| 550 | /** | ||
| 551 | * Allocates and sets up descriptors for a double buffered circular buffer. | ||
| 552 | * | ||
| 553 | * This is primarily intended to be used for things like the ingress samples | ||
| 554 | * from a microphone. | ||
| 555 | * | ||
| 556 | * @return | ||
| 557 | * > 0 Number of descriptors actually allocated. | ||
| 558 | * -EINVAL Invalid device type for this kind of transfer | ||
| 559 | * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM) | ||
| 560 | * -ENOMEM Memory exhausted | ||
| 561 | */ | ||
| 562 | /****************************************************************************/ | ||
| 563 | |||
| 564 | int dma_alloc_double_dst_descriptors(DMA_Handle_t handle, /* DMA Handle */ | ||
| 565 | dma_addr_t srcData, /* Physical address of source data */ | ||
| 566 | dma_addr_t dstData1, /* Physical address of first destination buffer */ | ||
| 567 | dma_addr_t dstData2, /* Physical address of second destination buffer */ | ||
| 568 | size_t numBytes /* Number of bytes in each destination buffer */ | ||
| 569 | ); | ||
| 570 | |||
| 571 | /****************************************************************************/ | ||
| 572 | /** | ||
| 573 | * Initializes a DMA_MemMap_t data structure | ||
| 574 | */ | ||
| 575 | /****************************************************************************/ | ||
| 576 | |||
| 577 | int dma_init_mem_map(DMA_MemMap_t *memMap /* Stores state information about the map */ | ||
| 578 | ); | ||
| 579 | |||
| 580 | /****************************************************************************/ | ||
| 581 | /** | ||
| 582 | * Releases any memory currently being held by a memory mapping structure. | ||
| 583 | */ | ||
| 584 | /****************************************************************************/ | ||
| 585 | |||
| 586 | int dma_term_mem_map(DMA_MemMap_t *memMap /* Stores state information about the map */ | ||
| 587 | ); | ||
| 588 | |||
| 589 | /****************************************************************************/ | ||
| 590 | /** | ||
| 591 | * Looks at a memory address and categorizes it. | ||
| 592 | * | ||
| 593 | * @return One of the values from the DMA_MemType_t enumeration. | ||
| 594 | */ | ||
| 595 | /****************************************************************************/ | ||
| 596 | |||
| 597 | DMA_MemType_t dma_mem_type(void *addr); | ||
| 598 | |||
| 599 | /****************************************************************************/ | ||
| 600 | /** | ||
| 601 | * Sets the process (aka userTask) associated with a mem map. This is | ||
| 602 | * required if user-mode segments will be added to the mapping. | ||
| 603 | */ | ||
| 604 | /****************************************************************************/ | ||
| 605 | |||
| 606 | static inline void dma_mem_map_set_user_task(DMA_MemMap_t *memMap, | ||
| 607 | struct task_struct *task) | ||
| 608 | { | ||
| 609 | memMap->userTask = task; | ||
| 610 | } | ||
| 611 | |||
| 612 | /****************************************************************************/ | ||
| 613 | /** | ||
| 614 | * Looks at a memory address and determines if we support DMA'ing to/from | ||
| 615 | * that type of memory. | ||
| 616 | * | ||
| 617 | * @return boolean - | ||
| 618 | * return value != 0 means dma supported | ||
| 619 | * return value == 0 means dma not supported | ||
| 620 | */ | ||
| 621 | /****************************************************************************/ | ||
| 622 | |||
| 623 | int dma_mem_supports_dma(void *addr); | ||
| 624 | |||
| 625 | /****************************************************************************/ | ||
| 626 | /** | ||
| 627 | * Initializes a memory map for use. Since this function acquires a | ||
| 628 | * sempaphore within the memory map, it is VERY important that dma_unmap | ||
| 629 | * be called when you're finished using the map. | ||
| 630 | */ | ||
| 631 | /****************************************************************************/ | ||
| 632 | |||
| 633 | int dma_map_start(DMA_MemMap_t *memMap, /* Stores state information about the map */ | ||
| 634 | enum dma_data_direction dir /* Direction that the mapping will be going */ | ||
| 635 | ); | ||
| 636 | |||
| 637 | /****************************************************************************/ | ||
| 638 | /** | ||
| 639 | * Adds a segment of memory to a memory map. | ||
| 640 | * | ||
| 641 | * @return 0 on success, error code otherwise. | ||
| 642 | */ | ||
| 643 | /****************************************************************************/ | ||
| 644 | |||
| 645 | int dma_map_add_region(DMA_MemMap_t *memMap, /* Stores state information about the map */ | ||
| 646 | void *mem, /* Virtual address that we want to get a map of */ | ||
| 647 | size_t numBytes /* Number of bytes being mapped */ | ||
| 648 | ); | ||
| 649 | |||
| 650 | /****************************************************************************/ | ||
| 651 | /** | ||
| 652 | * Creates a descriptor ring from a memory mapping. | ||
| 653 | * | ||
| 654 | * @return 0 on success, error code otherwise. | ||
| 655 | */ | ||
| 656 | /****************************************************************************/ | ||
| 657 | |||
| 658 | int dma_map_create_descriptor_ring(DMA_Device_t dev, /* DMA device (where the ring is stored) */ | ||
| 659 | DMA_MemMap_t *memMap, /* Memory map that will be used */ | ||
| 660 | dma_addr_t devPhysAddr /* Physical address of device */ | ||
| 661 | ); | ||
| 662 | |||
| 663 | /****************************************************************************/ | ||
| 664 | /** | ||
| 665 | * Maps in a memory region such that it can be used for performing a DMA. | ||
| 666 | * | ||
| 667 | * @return | ||
| 668 | */ | ||
| 669 | /****************************************************************************/ | ||
| 670 | |||
| 671 | int dma_map_mem(DMA_MemMap_t *memMap, /* Stores state information about the map */ | ||
| 672 | void *addr, /* Virtual address that we want to get a map of */ | ||
| 673 | size_t count, /* Number of bytes being mapped */ | ||
| 674 | enum dma_data_direction dir /* Direction that the mapping will be going */ | ||
| 675 | ); | ||
| 676 | |||
| 677 | /****************************************************************************/ | ||
| 678 | /** | ||
| 679 | * Maps in a memory region such that it can be used for performing a DMA. | ||
| 680 | * | ||
| 681 | * @return | ||
| 682 | */ | ||
| 683 | /****************************************************************************/ | ||
| 684 | |||
| 685 | int dma_unmap(DMA_MemMap_t *memMap, /* Stores state information about the map */ | ||
| 686 | int dirtied /* non-zero if any of the pages were modified */ | ||
| 687 | ); | ||
| 688 | |||
| 689 | /****************************************************************************/ | ||
| 690 | /** | ||
| 691 | * Initiates a transfer when the descriptors have already been setup. | ||
| 692 | * | ||
| 693 | * This is a special case, and normally, the dma_transfer_xxx functions should | ||
| 694 | * be used. | ||
| 695 | * | ||
| 696 | * @return | ||
| 697 | * 0 Transfer was started successfully | ||
| 698 | * -ENODEV Invalid handle | ||
| 699 | */ | ||
| 700 | /****************************************************************************/ | ||
| 701 | |||
| 702 | int dma_start_transfer(DMA_Handle_t handle); | ||
| 703 | |||
| 704 | /****************************************************************************/ | ||
| 705 | /** | ||
| 706 | * Stops a previously started DMA transfer. | ||
| 707 | * | ||
| 708 | * @return | ||
| 709 | * 0 Transfer was stopped successfully | ||
| 710 | * -ENODEV Invalid handle | ||
| 711 | */ | ||
| 712 | /****************************************************************************/ | ||
| 713 | |||
| 714 | int dma_stop_transfer(DMA_Handle_t handle); | ||
| 715 | |||
| 716 | /****************************************************************************/ | ||
| 717 | /** | ||
| 718 | * Waits for a DMA to complete by polling. This function is only intended | ||
| 719 | * to be used for testing. Interrupts should be used for most DMA operations. | ||
| 720 | */ | ||
| 721 | /****************************************************************************/ | ||
| 722 | |||
| 723 | int dma_wait_transfer_done(DMA_Handle_t handle); | ||
| 724 | |||
| 725 | /****************************************************************************/ | ||
| 726 | /** | ||
| 727 | * Initiates a DMA transfer | ||
| 728 | * | ||
| 729 | * @return | ||
| 730 | * 0 Transfer was started successfully | ||
| 731 | * -EINVAL Invalid device type for this kind of transfer | ||
| 732 | * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM) | ||
| 733 | */ | ||
| 734 | /****************************************************************************/ | ||
| 735 | |||
| 736 | int dma_transfer(DMA_Handle_t handle, /* DMA Handle */ | ||
| 737 | dmacHw_TRANSFER_TYPE_e transferType, /* Type of transfer being performed */ | ||
| 738 | dma_addr_t srcData, /* Place to get data to write to device */ | ||
| 739 | dma_addr_t dstData, /* Pointer to device data address */ | ||
| 740 | size_t numBytes /* Number of bytes to transfer to the device */ | ||
| 741 | ); | ||
| 742 | |||
| 743 | /****************************************************************************/ | ||
| 744 | /** | ||
| 745 | * Initiates a transfer from memory to a device. | ||
| 746 | * | ||
| 747 | * @return | ||
| 748 | * 0 Transfer was started successfully | ||
| 749 | * -EINVAL Invalid device type for this kind of transfer | ||
| 750 | * (i.e. the device is _DEV_TO_MEM and not _MEM_TO_DEV) | ||
| 751 | */ | ||
| 752 | /****************************************************************************/ | ||
| 753 | |||
| 754 | static inline int dma_transfer_to_device(DMA_Handle_t handle, /* DMA Handle */ | ||
| 755 | dma_addr_t srcData, /* Place to get data to write to device (physical address) */ | ||
| 756 | dma_addr_t dstData, /* Pointer to device data address (physical address) */ | ||
| 757 | size_t numBytes /* Number of bytes to transfer to the device */ | ||
| 758 | ) { | ||
| 759 | return dma_transfer(handle, | ||
| 760 | dmacHw_TRANSFER_TYPE_MEM_TO_PERIPHERAL, | ||
| 761 | srcData, dstData, numBytes); | ||
| 762 | } | ||
| 763 | |||
| 764 | /****************************************************************************/ | ||
| 765 | /** | ||
| 766 | * Initiates a transfer from a device to memory. | ||
| 767 | * | ||
| 768 | * @return | ||
| 769 | * 0 Transfer was started successfully | ||
| 770 | * -EINVAL Invalid device type for this kind of transfer | ||
| 771 | * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM) | ||
| 772 | */ | ||
| 773 | /****************************************************************************/ | ||
| 774 | |||
| 775 | static inline int dma_transfer_from_device(DMA_Handle_t handle, /* DMA Handle */ | ||
| 776 | dma_addr_t srcData, /* Pointer to the device data address (physical address) */ | ||
| 777 | dma_addr_t dstData, /* Place to store data retrieved from the device (physical address) */ | ||
| 778 | size_t numBytes /* Number of bytes to retrieve from the device */ | ||
| 779 | ) { | ||
| 780 | return dma_transfer(handle, | ||
| 781 | dmacHw_TRANSFER_TYPE_PERIPHERAL_TO_MEM, | ||
| 782 | srcData, dstData, numBytes); | ||
| 783 | } | ||
| 784 | |||
| 785 | /****************************************************************************/ | ||
| 786 | /** | ||
| 787 | * Initiates a memory to memory transfer. | ||
| 788 | * | ||
| 789 | * @return | ||
| 790 | * 0 Transfer was started successfully | ||
| 791 | * -EINVAL Invalid device type for this kind of transfer | ||
| 792 | * (i.e. the device wasn't DMA_DEVICE_MEM_TO_MEM) | ||
| 793 | */ | ||
| 794 | /****************************************************************************/ | ||
| 795 | |||
| 796 | static inline int dma_transfer_mem_to_mem(DMA_Handle_t handle, /* DMA Handle */ | ||
| 797 | dma_addr_t srcData, /* Place to transfer data from (physical address) */ | ||
| 798 | dma_addr_t dstData, /* Place to transfer data to (physical address) */ | ||
| 799 | size_t numBytes /* Number of bytes to transfer */ | ||
| 800 | ) { | ||
| 801 | return dma_transfer(handle, | ||
| 802 | dmacHw_TRANSFER_TYPE_MEM_TO_MEM, | ||
| 803 | srcData, dstData, numBytes); | ||
| 804 | } | ||
| 805 | |||
| 806 | /****************************************************************************/ | ||
| 807 | /** | ||
| 808 | * Set the callback function which will be called when a transfer completes. | ||
| 809 | * If a NULL callback function is set, then no callback will occur. | ||
| 810 | * | ||
| 811 | * @note @a devHandler will be called from IRQ context. | ||
| 812 | * | ||
| 813 | * @return | ||
| 814 | * 0 - Success | ||
| 815 | * -ENODEV - Device handed in is invalid. | ||
| 816 | */ | ||
| 817 | /****************************************************************************/ | ||
| 818 | |||
| 819 | int dma_set_device_handler(DMA_Device_t dev, /* Device to set the callback for. */ | ||
| 820 | DMA_DeviceHandler_t devHandler, /* Function to call when the DMA completes */ | ||
| 821 | void *userData /* Pointer which will be passed to devHandler. */ | ||
| 822 | ); | ||
| 823 | |||
| 824 | #endif | ||
| 825 | |||
| 826 | #endif /* ASM_ARM_ARCH_BCMRING_DMA_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/entry-macro.S b/arch/arm/mach-bcmring/include/mach/entry-macro.S new file mode 100644 index 00000000000..94c950d783b --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/entry-macro.S | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2006 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /* | ||
| 16 | * | ||
| 17 | * Low-level IRQ helper macros for BCMRing-based platforms | ||
| 18 | * | ||
| 19 | */ | ||
| 20 | #include <mach/irqs.h> | ||
| 21 | #include <mach/hardware.h> | ||
| 22 | #include <mach/csp/mm_io.h> | ||
| 23 | |||
| 24 | .macro disable_fiq | ||
| 25 | .endm | ||
| 26 | |||
| 27 | .macro get_irqnr_and_base, irqnr, irqstat, base, tmp | ||
| 28 | ldr \base, =(MM_IO_BASE_INTC0) | ||
| 29 | ldr \irqstat, [\base, #0] @ get status | ||
| 30 | ldr \irqnr, [\base, #0x10] @ mask with enable register | ||
| 31 | ands \irqstat, \irqstat, \irqnr | ||
| 32 | mov \irqnr, #IRQ_INTC0_START | ||
| 33 | cmp \irqstat, #0 | ||
| 34 | bne 1001f | ||
| 35 | |||
| 36 | ldr \base, =(MM_IO_BASE_INTC1) | ||
| 37 | ldr \irqstat, [\base, #0] @ get status | ||
| 38 | ldr \irqnr, [\base, #0x10] @ mask with enable register | ||
| 39 | ands \irqstat, \irqstat, \irqnr | ||
| 40 | mov \irqnr, #IRQ_INTC1_START | ||
| 41 | cmp \irqstat, #0 | ||
| 42 | bne 1001f | ||
| 43 | |||
| 44 | ldr \base, =(MM_IO_BASE_SINTC) | ||
| 45 | ldr \irqstat, [\base, #0] @ get status | ||
| 46 | ldr \irqnr, [\base, #0x10] @ mask with enable register | ||
| 47 | ands \irqstat, \irqstat, \irqnr | ||
| 48 | mov \irqnr, #0xffffffff @ code meaning no interrupt bits set | ||
| 49 | cmp \irqstat, #0 | ||
| 50 | beq 1002f | ||
| 51 | |||
| 52 | mov \irqnr, #IRQ_SINTC_START @ something is set, so fixup return value | ||
| 53 | |||
| 54 | 1001: | ||
| 55 | movs \tmp, \irqstat, lsl #16 | ||
| 56 | movne \irqstat, \tmp | ||
| 57 | addeq \irqnr, \irqnr, #16 | ||
| 58 | |||
| 59 | movs \tmp, \irqstat, lsl #8 | ||
| 60 | movne \irqstat, \tmp | ||
| 61 | addeq \irqnr, \irqnr, #8 | ||
| 62 | |||
| 63 | movs \tmp, \irqstat, lsl #4 | ||
| 64 | movne \irqstat, \tmp | ||
| 65 | addeq \irqnr, \irqnr, #4 | ||
| 66 | |||
| 67 | movs \tmp, \irqstat, lsl #2 | ||
| 68 | movne \irqstat, \tmp | ||
| 69 | addeq \irqnr, \irqnr, #2 | ||
| 70 | |||
| 71 | movs \tmp, \irqstat, lsl #1 | ||
| 72 | addeq \irqnr, \irqnr, #1 | ||
| 73 | orrs \base, \base, #1 | ||
| 74 | |||
| 75 | 1002: @ irqnr will be set to 0xffffffff if no irq bits are set | ||
| 76 | .endm | ||
| 77 | |||
| 78 | .macro get_irqnr_preamble, base, tmp | ||
| 79 | .endm | ||
| 80 | |||
| 81 | .macro arch_ret_to_user, tmp1, tmp2 | ||
| 82 | .endm | ||
diff --git a/arch/arm/mach-bcmring/include/mach/hardware.h b/arch/arm/mach-bcmring/include/mach/hardware.h new file mode 100644 index 00000000000..ed78aabb8e9 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/hardware.h | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * This file contains the hardware definitions of the BCMRing. | ||
| 4 | * | ||
| 5 | * Copyright (C) 1999 ARM Limited. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation; either version 2 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 20 | */ | ||
| 21 | #ifndef __ASM_ARCH_HARDWARE_H | ||
| 22 | #define __ASM_ARCH_HARDWARE_H | ||
| 23 | |||
| 24 | #include <asm/sizes.h> | ||
| 25 | #include <mach/memory.h> | ||
| 26 | #include <cfg_global.h> | ||
| 27 | #include <mach/csp/mm_io.h> | ||
| 28 | |||
| 29 | /* Hardware addresses of major areas. | ||
| 30 | * *_START is the physical address | ||
| 31 | * *_SIZE is the size of the region | ||
| 32 | * *_BASE is the virtual address | ||
| 33 | */ | ||
| 34 | #define RAM_START PLAT_PHYS_OFFSET | ||
| 35 | |||
| 36 | #define RAM_SIZE (CFG_GLOBAL_RAM_SIZE-CFG_GLOBAL_RAM_SIZE_RESERVED) | ||
| 37 | #define RAM_BASE PAGE_OFFSET | ||
| 38 | |||
| 39 | /* Macros to make managing spinlocks a bit more controlled in terms of naming. */ | ||
| 40 | /* See reg_gpio.h, reg_irq.h, arch.c, gpio.c for example usage. */ | ||
| 41 | #if defined(__KERNEL__) | ||
| 42 | #define HW_DECLARE_SPINLOCK(name) DEFINE_SPINLOCK(bcmring_##name##_reg_lock); | ||
| 43 | #define HW_EXTERN_SPINLOCK(name) extern spinlock_t bcmring_##name##_reg_lock; | ||
| 44 | #define HW_IRQ_SAVE(name, val) spin_lock_irqsave(&bcmring_##name##_reg_lock, (val)) | ||
| 45 | #define HW_IRQ_RESTORE(name, val) spin_unlock_irqrestore(&bcmring_##name##_reg_lock, (val)) | ||
| 46 | #else | ||
| 47 | #define HW_DECLARE_SPINLOCK(name) | ||
| 48 | #define HW_EXTERN_SPINLOCK(name) | ||
| 49 | #define HW_IRQ_SAVE(name, val) {(void)(name); (void)(val); } | ||
| 50 | #define HW_IRQ_RESTORE(name, val) {(void)(name); (void)(val); } | ||
| 51 | #endif | ||
| 52 | |||
| 53 | #ifndef HW_IO_PHYS_TO_VIRT | ||
| 54 | #define HW_IO_PHYS_TO_VIRT MM_IO_PHYS_TO_VIRT | ||
| 55 | #endif | ||
| 56 | #define HW_IO_VIRT_TO_PHYS MM_IO_VIRT_TO_PHYS | ||
| 57 | |||
| 58 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/io.h b/arch/arm/mach-bcmring/include/mach/io.h new file mode 100644 index 00000000000..dae5e9b166e --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/io.h | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Copyright (C) 1999 ARM Limited | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 18 | */ | ||
| 19 | #ifndef __ASM_ARM_ARCH_IO_H | ||
| 20 | #define __ASM_ARM_ARCH_IO_H | ||
| 21 | |||
| 22 | #include <mach/hardware.h> | ||
| 23 | |||
| 24 | #define IO_SPACE_LIMIT 0xffffffff | ||
| 25 | |||
| 26 | /* | ||
| 27 | * We don't actually have real ISA nor PCI buses, but there is so many | ||
| 28 | * drivers out there that might just work if we fake them... | ||
| 29 | */ | ||
| 30 | #define __io(a) __typesafe_io(a) | ||
| 31 | #define __mem_pci(a) (a) | ||
| 32 | |||
| 33 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/irqs.h b/arch/arm/mach-bcmring/include/mach/irqs.h new file mode 100644 index 00000000000..b279b825d4a --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/irqs.h | |||
| @@ -0,0 +1,132 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007 Broadcom | ||
| 3 | * Copyright (C) 1999 ARM Limited | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 18 | */ | ||
| 19 | |||
| 20 | #if !defined(ARCH_BCMRING_IRQS_H) | ||
| 21 | #define ARCH_BCMRING_IRQS_H | ||
| 22 | |||
| 23 | /* INTC0 - interrupt controller 0 */ | ||
| 24 | #define IRQ_INTC0_START 0 | ||
| 25 | #define IRQ_DMA0C0 0 /* DMA0 channel 0 interrupt */ | ||
| 26 | #define IRQ_DMA0C1 1 /* DMA0 channel 1 interrupt */ | ||
| 27 | #define IRQ_DMA0C2 2 /* DMA0 channel 2 interrupt */ | ||
| 28 | #define IRQ_DMA0C3 3 /* DMA0 channel 3 interrupt */ | ||
| 29 | #define IRQ_DMA0C4 4 /* DMA0 channel 4 interrupt */ | ||
| 30 | #define IRQ_DMA0C5 5 /* DMA0 channel 5 interrupt */ | ||
| 31 | #define IRQ_DMA0C6 6 /* DMA0 channel 6 interrupt */ | ||
| 32 | #define IRQ_DMA0C7 7 /* DMA0 channel 7 interrupt */ | ||
| 33 | #define IRQ_DMA1C0 8 /* DMA1 channel 0 interrupt */ | ||
| 34 | #define IRQ_DMA1C1 9 /* DMA1 channel 1 interrupt */ | ||
| 35 | #define IRQ_DMA1C2 10 /* DMA1 channel 2 interrupt */ | ||
| 36 | #define IRQ_DMA1C3 11 /* DMA1 channel 3 interrupt */ | ||
| 37 | #define IRQ_DMA1C4 12 /* DMA1 channel 4 interrupt */ | ||
| 38 | #define IRQ_DMA1C5 13 /* DMA1 channel 5 interrupt */ | ||
| 39 | #define IRQ_DMA1C6 14 /* DMA1 channel 6 interrupt */ | ||
| 40 | #define IRQ_DMA1C7 15 /* DMA1 channel 7 interrupt */ | ||
| 41 | #define IRQ_VPM 16 /* Voice process module interrupt */ | ||
| 42 | #define IRQ_USBHD2 17 /* USB host2/device2 interrupt */ | ||
| 43 | #define IRQ_USBH1 18 /* USB1 host interrupt */ | ||
| 44 | #define IRQ_USBD 19 /* USB device interrupt */ | ||
| 45 | #define IRQ_SDIOH0 20 /* SDIO0 host interrupt */ | ||
| 46 | #define IRQ_SDIOH1 21 /* SDIO1 host interrupt */ | ||
| 47 | #define IRQ_TIMER0 22 /* Timer0 interrupt */ | ||
| 48 | #define IRQ_TIMER1 23 /* Timer1 interrupt */ | ||
| 49 | #define IRQ_TIMER2 24 /* Timer2 interrupt */ | ||
| 50 | #define IRQ_TIMER3 25 /* Timer3 interrupt */ | ||
| 51 | #define IRQ_SPIH 26 /* SPI host interrupt */ | ||
| 52 | #define IRQ_ESW 27 /* Ethernet switch interrupt */ | ||
| 53 | #define IRQ_APM 28 /* Audio process module interrupt */ | ||
| 54 | #define IRQ_GE 29 /* Graphic engine interrupt */ | ||
| 55 | #define IRQ_CLCD 30 /* LCD Controller interrupt */ | ||
| 56 | #define IRQ_PIF 31 /* Peripheral interface interrupt */ | ||
| 57 | #define IRQ_INTC0_END 31 | ||
| 58 | |||
| 59 | /* INTC1 - interrupt controller 1 */ | ||
| 60 | #define IRQ_INTC1_START 32 | ||
| 61 | #define IRQ_GPIO0 32 /* 0 GPIO bit 31//0 combined interrupt */ | ||
| 62 | #define IRQ_GPIO1 33 /* 1 GPIO bit 64//32 combined interrupt */ | ||
| 63 | #define IRQ_I2S0 34 /* 2 I2S0 interrupt */ | ||
| 64 | #define IRQ_I2S1 35 /* 3 I2S1 interrupt */ | ||
| 65 | #define IRQ_I2CH 36 /* 4 I2C host interrupt */ | ||
| 66 | #define IRQ_I2CS 37 /* 5 I2C slave interrupt */ | ||
| 67 | #define IRQ_SPIS 38 /* 6 SPI slave interrupt */ | ||
| 68 | #define IRQ_GPHY 39 /* 7 Gigabit Phy interrupt */ | ||
| 69 | #define IRQ_FLASHC 40 /* 8 Flash controller interrupt */ | ||
| 70 | #define IRQ_COMMTX 41 /* 9 ARM DDC transmit interrupt */ | ||
| 71 | #define IRQ_COMMRX 42 /* 10 ARM DDC receive interrupt */ | ||
| 72 | #define IRQ_PMUIRQ 43 /* 11 ARM performance monitor interrupt */ | ||
| 73 | #define IRQ_UARTB 44 /* 12 UARTB */ | ||
| 74 | #define IRQ_WATCHDOG 45 /* 13 Watchdog timer interrupt */ | ||
| 75 | #define IRQ_UARTA 46 /* 14 UARTA */ | ||
| 76 | #define IRQ_TSC 47 /* 15 Touch screen controller interrupt */ | ||
| 77 | #define IRQ_KEYC 48 /* 16 Key pad controller interrupt */ | ||
| 78 | #define IRQ_DMPU 49 /* 17 DDR2 memory partition interrupt */ | ||
| 79 | #define IRQ_VMPU 50 /* 18 VRAM memory partition interrupt */ | ||
| 80 | #define IRQ_FMPU 51 /* 19 Flash memory parition unit interrupt */ | ||
| 81 | #define IRQ_RNG 52 /* 20 Random number generator interrupt */ | ||
| 82 | #define IRQ_RTC0 53 /* 21 Real time clock periodic interrupt */ | ||
| 83 | #define IRQ_RTC1 54 /* 22 Real time clock one-shot interrupt */ | ||
| 84 | #define IRQ_SPUM 55 /* 23 Secure process module interrupt */ | ||
| 85 | #define IRQ_VDEC 56 /* 24 Hantro video decoder interrupt */ | ||
| 86 | #define IRQ_RTC2 57 /* 25 Real time clock tamper interrupt */ | ||
| 87 | #define IRQ_DDRP 58 /* 26 DDR Panic interrupt */ | ||
| 88 | #define IRQ_INTC1_END 58 | ||
| 89 | |||
| 90 | /* SINTC secure int controller */ | ||
| 91 | #define IRQ_SINTC_START 59 | ||
| 92 | #define IRQ_SEC_WATCHDOG 59 /* 0 Watchdog timer interrupt */ | ||
| 93 | #define IRQ_SEC_UARTA 60 /* 1 UARTA interrupt */ | ||
| 94 | #define IRQ_SEC_TSC 61 /* 2 Touch screen controller interrupt */ | ||
| 95 | #define IRQ_SEC_KEYC 62 /* 3 Key pad controller interrupt */ | ||
| 96 | #define IRQ_SEC_DMPU 63 /* 4 DDR2 memory partition interrupt */ | ||
| 97 | #define IRQ_SEC_VMPU 64 /* 5 VRAM memory partition interrupt */ | ||
| 98 | #define IRQ_SEC_FMPU 65 /* 6 Flash memory parition unit interrupt */ | ||
| 99 | #define IRQ_SEC_RNG 66 /* 7 Random number generator interrupt */ | ||
| 100 | #define IRQ_SEC_RTC0 67 /* 8 Real time clock periodic interrupt */ | ||
| 101 | #define IRQ_SEC_RTC1 68 /* 9 Real time clock one-shot interrupt */ | ||
| 102 | #define IRQ_SEC_SPUM 69 /* 10 Secure process module interrupt */ | ||
| 103 | #define IRQ_SEC_TIMER0 70 /* 11 Secure timer0 interrupt */ | ||
| 104 | #define IRQ_SEC_TIMER1 71 /* 12 Secure timer1 interrupt */ | ||
| 105 | #define IRQ_SEC_TIMER2 72 /* 13 Secure timer2 interrupt */ | ||
| 106 | #define IRQ_SEC_TIMER3 73 /* 14 Secure timer3 interrupt */ | ||
| 107 | #define IRQ_SEC_RTC2 74 /* 15 Real time clock tamper interrupt */ | ||
| 108 | |||
| 109 | #define IRQ_SINTC_END 74 | ||
| 110 | |||
| 111 | /* Note: there are 3 INTC registers of 32 bits each. So internal IRQs could go from 0-95 */ | ||
| 112 | /* Since IRQs are typically viewed in decimal, we start the gpio based IRQs off at 100 */ | ||
| 113 | /* to make the mapping easy for humans to decipher. */ | ||
| 114 | |||
| 115 | #define IRQ_GPIO_0 100 | ||
| 116 | |||
| 117 | #define NUM_INTERNAL_IRQS (IRQ_SINTC_END+1) | ||
| 118 | |||
| 119 | /* I couldn't get the gpioHw_reg.h file to be included cleanly, so I hardcoded it */ | ||
| 120 | /* define NUM_GPIO_IRQS GPIOHW_TOTAL_NUM_PINS */ | ||
| 121 | #define NUM_GPIO_IRQS 62 | ||
| 122 | |||
| 123 | #define NR_IRQS (IRQ_GPIO_0 + NUM_GPIO_IRQS) | ||
| 124 | |||
| 125 | #define IRQ_UNKNOWN -1 | ||
| 126 | |||
| 127 | /* Tune these bits to preclude noisy or unsupported interrupt sources as required. */ | ||
| 128 | #define IRQ_INTC0_VALID_MASK 0xffffffff | ||
| 129 | #define IRQ_INTC1_VALID_MASK 0x07ffffff | ||
| 130 | #define IRQ_SINTC_VALID_MASK 0x0000ffff | ||
| 131 | |||
| 132 | #endif /* ARCH_BCMRING_IRQS_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/memory.h b/arch/arm/mach-bcmring/include/mach/memory.h new file mode 100644 index 00000000000..15162e4c75f --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/memory.h | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2005 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef __ASM_ARCH_MEMORY_H | ||
| 16 | #define __ASM_ARCH_MEMORY_H | ||
| 17 | |||
| 18 | #include <cfg_global.h> | ||
| 19 | |||
| 20 | /* | ||
| 21 | * Physical vs virtual RAM address space conversion. These are | ||
| 22 | * private definitions which should NOT be used outside memory.h | ||
| 23 | * files. Use virt_to_phys/phys_to_virt/__pa/__va instead. | ||
| 24 | */ | ||
| 25 | |||
| 26 | #define PLAT_PHYS_OFFSET CFG_GLOBAL_RAM_BASE | ||
| 27 | |||
| 28 | /* | ||
| 29 | * Maximum DMA memory allowed is 14M | ||
| 30 | */ | ||
| 31 | #define CONSISTENT_DMA_SIZE (SZ_16M - SZ_2M) | ||
| 32 | |||
| 33 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/memory_settings.h b/arch/arm/mach-bcmring/include/mach/memory_settings.h new file mode 100644 index 00000000000..ce5cd16f2ac --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/memory_settings.h | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | #ifndef MEMORY_SETTINGS_H | ||
| 16 | #define MEMORY_SETTINGS_H | ||
| 17 | |||
| 18 | /* ---- Include Files ---------------------------------------- */ | ||
| 19 | /* ---- Constants and Types ---------------------------------- */ | ||
| 20 | |||
| 21 | /* Memory devices */ | ||
| 22 | /* NAND Flash timing for 166 MHz setting */ | ||
| 23 | #define HW_CFG_NAND_tBTA (5 << 16) /* Bus turnaround cycle (n) 0-7 (30 ns) */ | ||
| 24 | #define HW_CFG_NAND_tWP (4 << 11) /* Write pulse width cycle (n+1) 0-31 (25 ns) */ | ||
| 25 | #define HW_CFG_NAND_tWR (1 << 9) /* Write recovery cycle (n+1) 0-3 (10 ns) */ | ||
| 26 | #define HW_CFG_NAND_tAS (0 << 7) /* Write address setup cycle (n+1) 0-3 ( 0 ns) */ | ||
| 27 | #define HW_CFG_NAND_tOE (3 << 5) /* Output enable delay cycle (n) 0-3 (15 ns) */ | ||
| 28 | #define HW_CFG_NAND_tRC (7 << 0) /* Read access cycle (n+2) 0-31 (50 ns) */ | ||
| 29 | |||
| 30 | #define HW_CFG_NAND_TCR (HW_CFG_NAND_tBTA \ | ||
| 31 | | HW_CFG_NAND_tWP \ | ||
| 32 | | HW_CFG_NAND_tWR \ | ||
| 33 | | HW_CFG_NAND_tAS \ | ||
| 34 | | HW_CFG_NAND_tOE \ | ||
| 35 | | HW_CFG_NAND_tRC) | ||
| 36 | |||
| 37 | /* NOR Flash timing for 166 MHz setting */ | ||
| 38 | #define HW_CFG_NOR_TPRC_TWLC (0 << 19) /* Page read access cycle / Burst write latency (n+2 / n+1) (max 25ns) */ | ||
| 39 | #define HW_CFG_NOR_TBTA (0 << 16) /* Bus turnaround cycle (n) (DNA) */ | ||
| 40 | #define HW_CFG_NOR_TWP (6 << 11) /* Write pulse width cycle (n+1) (35ns) */ | ||
| 41 | #define HW_CFG_NOR_TWR (0 << 9) /* Write recovery cycle (n+1) (0ns) */ | ||
| 42 | #define HW_CFG_NOR_TAS (0 << 7) /* Write address setup cycle (n+1) (0ns) */ | ||
| 43 | #define HW_CFG_NOR_TOE (0 << 5) /* Output enable delay cycle (n) (max 25ns) */ | ||
| 44 | #define HW_CFG_NOR_TRC_TLC (0x10 << 0) /* Read access cycle / Burst read latency (n+2 / n+1) (100ns) */ | ||
| 45 | |||
| 46 | #define HW_CFG_FLASH0_TCR (HW_CFG_NOR_TPRC_TWLC \ | ||
| 47 | | HW_CFG_NOR_TBTA \ | ||
| 48 | | HW_CFG_NOR_TWP \ | ||
| 49 | | HW_CFG_NOR_TWR \ | ||
| 50 | | HW_CFG_NOR_TAS \ | ||
| 51 | | HW_CFG_NOR_TOE \ | ||
| 52 | | HW_CFG_NOR_TRC_TLC) | ||
| 53 | |||
| 54 | #define HW_CFG_FLASH1_TCR HW_CFG_FLASH0_TCR | ||
| 55 | #define HW_CFG_FLASH2_TCR HW_CFG_FLASH0_TCR | ||
| 56 | |||
| 57 | /* SDRAM Settings */ | ||
| 58 | /* #define HW_CFG_SDRAM_CAS_LATENCY 5 Default 5, Values [3..6] */ | ||
| 59 | /* #define HW_CFG_SDRAM_CHIP_SELECT_CNT 1 Default 1, Vaules [1..2] */ | ||
| 60 | /* #define HW_CFG_SDRAM_SPEED_GRADE 667 Default 667, Values [400,533,667,800] */ | ||
| 61 | /* #define HW_CFG_SDRAM_WIDTH_BITS 16 Default 16, Vaules [8,16] */ | ||
| 62 | #define HW_CFG_SDRAM_SIZE_BYTES 0x10000000 /* Total memory, not per device size */ | ||
| 63 | |||
| 64 | /* ---- Variable Externs ------------------------------------- */ | ||
| 65 | /* ---- Function Prototypes ---------------------------------- */ | ||
| 66 | |||
| 67 | #endif /* MEMORY_SETTINGS_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/reg_nand.h b/arch/arm/mach-bcmring/include/mach/reg_nand.h new file mode 100644 index 00000000000..387376ffb56 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/reg_nand.h | |||
| @@ -0,0 +1,66 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2001 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /* | ||
| 16 | * | ||
| 17 | ***************************************************************************** | ||
| 18 | * | ||
| 19 | * REG_NAND.h | ||
| 20 | * | ||
| 21 | * PURPOSE: | ||
| 22 | * | ||
| 23 | * This file contains definitions for the nand registers: | ||
| 24 | * | ||
| 25 | * NOTES: | ||
| 26 | * | ||
| 27 | *****************************************************************************/ | ||
| 28 | |||
| 29 | #if !defined(__ASM_ARCH_REG_NAND_H) | ||
| 30 | #define __ASM_ARCH_REG_NAND_H | ||
| 31 | |||
| 32 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 33 | #include <csp/reg.h> | ||
| 34 | #include <mach/reg_umi.h> | ||
| 35 | |||
| 36 | /* ---- Constants and Types ---------------------------------------------- */ | ||
| 37 | |||
| 38 | #define HW_NAND_BASE MM_IO_BASE_NAND /* NAND Flash */ | ||
| 39 | |||
| 40 | /* DMA accesses by the bootstrap need hard nonvirtual addresses */ | ||
| 41 | #define REG_NAND_CMD __REG16(HW_NAND_BASE + 0) | ||
| 42 | #define REG_NAND_ADDR __REG16(HW_NAND_BASE + 4) | ||
| 43 | |||
| 44 | #define REG_NAND_PHYS_DATA16 (HW_NAND_BASE + 8) | ||
| 45 | #define REG_NAND_PHYS_DATA8 (HW_NAND_BASE + 8) | ||
| 46 | #define REG_NAND_DATA16 __REG16(REG_NAND_PHYS_DATA16) | ||
| 47 | #define REG_NAND_DATA8 __REG8(REG_NAND_PHYS_DATA8) | ||
| 48 | |||
| 49 | /* use appropriate offset to make sure it start at the 1K boundary */ | ||
| 50 | #define REG_NAND_PHYS_DATA_DMA (HW_NAND_BASE + 0x400) | ||
| 51 | #define REG_NAND_DATA_DMA __REG32(REG_NAND_PHYS_DATA_DMA) | ||
| 52 | |||
| 53 | /* Linux DMA requires physical address of the data register */ | ||
| 54 | #define REG_NAND_DATA16_PADDR HW_IO_VIRT_TO_PHYS(REG_NAND_PHYS_DATA16) | ||
| 55 | #define REG_NAND_DATA8_PADDR HW_IO_VIRT_TO_PHYS(REG_NAND_PHYS_DATA8) | ||
| 56 | #define REG_NAND_DATA_PADDR HW_IO_VIRT_TO_PHYS(REG_NAND_PHYS_DATA_DMA) | ||
| 57 | |||
| 58 | #define NAND_BUS_16BIT() (0) | ||
| 59 | #define NAND_BUS_8BIT() (!NAND_BUS_16BIT()) | ||
| 60 | |||
| 61 | /* Register offsets */ | ||
| 62 | #define REG_NAND_CMD_OFFSET (0) | ||
| 63 | #define REG_NAND_ADDR_OFFSET (4) | ||
| 64 | #define REG_NAND_DATA8_OFFSET (8) | ||
| 65 | |||
| 66 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/reg_umi.h b/arch/arm/mach-bcmring/include/mach/reg_umi.h new file mode 100644 index 00000000000..0992842caa7 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/reg_umi.h | |||
| @@ -0,0 +1,237 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2005 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /* | ||
| 16 | * | ||
| 17 | ***************************************************************************** | ||
| 18 | * | ||
| 19 | * REG_UMI.h | ||
| 20 | * | ||
| 21 | * PURPOSE: | ||
| 22 | * | ||
| 23 | * This file contains definitions for the nand registers: | ||
| 24 | * | ||
| 25 | * NOTES: | ||
| 26 | * | ||
| 27 | *****************************************************************************/ | ||
| 28 | |||
| 29 | #if !defined(__ASM_ARCH_REG_UMI_H) | ||
| 30 | #define __ASM_ARCH_REG_UMI_H | ||
| 31 | |||
| 32 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 33 | #include <csp/reg.h> | ||
| 34 | #include <mach/csp/mm_io.h> | ||
| 35 | |||
| 36 | /* ---- Constants and Types ---------------------------------------------- */ | ||
| 37 | |||
| 38 | /* Unified Memory Interface Ctrl Register */ | ||
| 39 | #define HW_UMI_BASE MM_IO_BASE_UMI | ||
| 40 | |||
| 41 | /* Flash bank 0 timing and control register */ | ||
| 42 | #define REG_UMI_FLASH0_TCR __REG32(HW_UMI_BASE + 0x00) | ||
| 43 | /* Flash bank 1 timing and control register */ | ||
| 44 | #define REG_UMI_FLASH1_TCR __REG32(HW_UMI_BASE + 0x04) | ||
| 45 | /* Flash bank 2 timing and control register */ | ||
| 46 | #define REG_UMI_FLASH2_TCR __REG32(HW_UMI_BASE + 0x08) | ||
| 47 | /* MMD interface and control register */ | ||
| 48 | #define REG_UMI_MMD_ICR __REG32(HW_UMI_BASE + 0x0c) | ||
| 49 | /* NAND timing and control register */ | ||
| 50 | #define REG_UMI_NAND_TCR __REG32(HW_UMI_BASE + 0x18) | ||
| 51 | /* NAND ready/chip select register */ | ||
| 52 | #define REG_UMI_NAND_RCSR __REG32(HW_UMI_BASE + 0x1c) | ||
| 53 | /* NAND ECC control & status register */ | ||
| 54 | #define REG_UMI_NAND_ECC_CSR __REG32(HW_UMI_BASE + 0x20) | ||
| 55 | /* NAND ECC data register XXB2B1B0 */ | ||
| 56 | #define REG_UMI_NAND_ECC_DATA __REG32(HW_UMI_BASE + 0x24) | ||
| 57 | /* BCH ECC Parameter N */ | ||
| 58 | #define REG_UMI_BCH_N __REG32(HW_UMI_BASE + 0x40) | ||
| 59 | /* BCH ECC Parameter T */ | ||
| 60 | #define REG_UMI_BCH_K __REG32(HW_UMI_BASE + 0x44) | ||
| 61 | /* BCH ECC Parameter K */ | ||
| 62 | #define REG_UMI_BCH_T __REG32(HW_UMI_BASE + 0x48) | ||
| 63 | /* BCH ECC Contro Status */ | ||
| 64 | #define REG_UMI_BCH_CTRL_STATUS __REG32(HW_UMI_BASE + 0x4C) | ||
| 65 | /* BCH WR ECC 31:0 */ | ||
| 66 | #define REG_UMI_BCH_WR_ECC_0 __REG32(HW_UMI_BASE + 0x50) | ||
| 67 | /* BCH WR ECC 63:32 */ | ||
| 68 | #define REG_UMI_BCH_WR_ECC_1 __REG32(HW_UMI_BASE + 0x54) | ||
| 69 | /* BCH WR ECC 95:64 */ | ||
| 70 | #define REG_UMI_BCH_WR_ECC_2 __REG32(HW_UMI_BASE + 0x58) | ||
| 71 | /* BCH WR ECC 127:96 */ | ||
| 72 | #define REG_UMI_BCH_WR_ECC_3 __REG32(HW_UMI_BASE + 0x5c) | ||
| 73 | /* BCH WR ECC 155:128 */ | ||
| 74 | #define REG_UMI_BCH_WR_ECC_4 __REG32(HW_UMI_BASE + 0x60) | ||
| 75 | /* BCH Read Error Location 1,0 */ | ||
| 76 | #define REG_UMI_BCH_RD_ERR_LOC_1_0 __REG32(HW_UMI_BASE + 0x64) | ||
| 77 | /* BCH Read Error Location 3,2 */ | ||
| 78 | #define REG_UMI_BCH_RD_ERR_LOC_3_2 __REG32(HW_UMI_BASE + 0x68) | ||
| 79 | /* BCH Read Error Location 5,4 */ | ||
| 80 | #define REG_UMI_BCH_RD_ERR_LOC_5_4 __REG32(HW_UMI_BASE + 0x6c) | ||
| 81 | /* BCH Read Error Location 7,6 */ | ||
| 82 | #define REG_UMI_BCH_RD_ERR_LOC_7_6 __REG32(HW_UMI_BASE + 0x70) | ||
| 83 | /* BCH Read Error Location 9,8 */ | ||
| 84 | #define REG_UMI_BCH_RD_ERR_LOC_9_8 __REG32(HW_UMI_BASE + 0x74) | ||
| 85 | /* BCH Read Error Location 11,10 */ | ||
| 86 | #define REG_UMI_BCH_RD_ERR_LOC_B_A __REG32(HW_UMI_BASE + 0x78) | ||
| 87 | |||
| 88 | /* REG_UMI_FLASH0/1/2_TCR, REG_UMI_SRAM0/1_TCR bits */ | ||
| 89 | /* Enable wait pin during burst write or read */ | ||
| 90 | #define REG_UMI_TCR_WAITEN 0x80000000 | ||
| 91 | /* Enable mem ctrlr to work with ext mem of lower freq than AHB clk */ | ||
| 92 | #define REG_UMI_TCR_LOWFREQ 0x40000000 | ||
| 93 | /* 1=synch write, 0=async write */ | ||
| 94 | #define REG_UMI_TCR_MEMTYPE_SYNCWRITE 0x20000000 | ||
| 95 | /* 1=synch read, 0=async read */ | ||
| 96 | #define REG_UMI_TCR_MEMTYPE_SYNCREAD 0x10000000 | ||
| 97 | /* 1=page mode read, 0=normal mode read */ | ||
| 98 | #define REG_UMI_TCR_MEMTYPE_PAGEREAD 0x08000000 | ||
| 99 | /* page size/burst size (wrap only) */ | ||
| 100 | #define REG_UMI_TCR_MEMTYPE_PGSZ_MASK 0x07000000 | ||
| 101 | /* 4 word */ | ||
| 102 | #define REG_UMI_TCR_MEMTYPE_PGSZ_4 0x00000000 | ||
| 103 | /* 8 word */ | ||
| 104 | #define REG_UMI_TCR_MEMTYPE_PGSZ_8 0x01000000 | ||
| 105 | /* 16 word */ | ||
| 106 | #define REG_UMI_TCR_MEMTYPE_PGSZ_16 0x02000000 | ||
| 107 | /* 32 word */ | ||
| 108 | #define REG_UMI_TCR_MEMTYPE_PGSZ_32 0x03000000 | ||
| 109 | /* 64 word */ | ||
| 110 | #define REG_UMI_TCR_MEMTYPE_PGSZ_64 0x04000000 | ||
| 111 | /* 128 word */ | ||
| 112 | #define REG_UMI_TCR_MEMTYPE_PGSZ_128 0x05000000 | ||
| 113 | /* 256 word */ | ||
| 114 | #define REG_UMI_TCR_MEMTYPE_PGSZ_256 0x06000000 | ||
| 115 | /* 512 word */ | ||
| 116 | #define REG_UMI_TCR_MEMTYPE_PGSZ_512 0x07000000 | ||
| 117 | /* Page read access cycle / Burst write latency (n+2 / n+1) */ | ||
| 118 | #define REG_UMI_TCR_TPRC_TWLC_MASK 0x00f80000 | ||
| 119 | /* Bus turnaround cycle (n) */ | ||
| 120 | #define REG_UMI_TCR_TBTA_MASK 0x00070000 | ||
| 121 | /* Write pulse width cycle (n+1) */ | ||
| 122 | #define REG_UMI_TCR_TWP_MASK 0x0000f800 | ||
| 123 | /* Write recovery cycle (n+1) */ | ||
| 124 | #define REG_UMI_TCR_TWR_MASK 0x00000600 | ||
| 125 | /* Write address setup cycle (n+1) */ | ||
| 126 | #define REG_UMI_TCR_TAS_MASK 0x00000180 | ||
| 127 | /* Output enable delay cycle (n) */ | ||
| 128 | #define REG_UMI_TCR_TOE_MASK 0x00000060 | ||
| 129 | /* Read access cycle / Burst read latency (n+2 / n+1) */ | ||
| 130 | #define REG_UMI_TCR_TRC_TLC_MASK 0x0000001f | ||
| 131 | |||
| 132 | /* REG_UMI_MMD_ICR bits */ | ||
| 133 | /* Flash write protection pin control */ | ||
| 134 | #define REG_UMI_MMD_ICR_FLASH_WP 0x8000 | ||
| 135 | /* Extend hold time for sram0, sram1 csn (39 MHz operation) */ | ||
| 136 | #define REG_UMI_MMD_ICR_XHCS 0x4000 | ||
| 137 | /* Enable SDRAM 2 interface control */ | ||
| 138 | #define REG_UMI_MMD_ICR_SDRAM2EN 0x2000 | ||
| 139 | /* Enable merge of flash banks 0/1 to 512 MBit bank */ | ||
| 140 | #define REG_UMI_MMD_ICR_INST512 0x1000 | ||
| 141 | /* Enable merge of flash banks 1/2 to 512 MBit bank */ | ||
| 142 | #define REG_UMI_MMD_ICR_DATA512 0x0800 | ||
| 143 | /* Enable SDRAM interface control */ | ||
| 144 | #define REG_UMI_MMD_ICR_SDRAMEN 0x0400 | ||
| 145 | /* Polarity of busy state of Burst Wait Signal */ | ||
| 146 | #define REG_UMI_MMD_ICR_WAITPOL 0x0200 | ||
| 147 | /* Enable burst clock stopped when not accessing external burst flash/sram */ | ||
| 148 | #define REG_UMI_MMD_ICR_BCLKSTOP 0x0100 | ||
| 149 | /* Enable the peri1_csn to replace flash1_csn in 512 Mb flash mode */ | ||
| 150 | #define REG_UMI_MMD_ICR_PERI1EN 0x0080 | ||
| 151 | /* Enable the peri2_csn to replace sdram_csn */ | ||
| 152 | #define REG_UMI_MMD_ICR_PERI2EN 0x0040 | ||
| 153 | /* Enable the peri3_csn to replace sdram2_csn */ | ||
| 154 | #define REG_UMI_MMD_ICR_PERI3EN 0x0020 | ||
| 155 | /* Enable sram bank1 for H/W controlled MRS */ | ||
| 156 | #define REG_UMI_MMD_ICR_MRSB1 0x0010 | ||
| 157 | /* Enable sram bank0 for H/W controlled MRS */ | ||
| 158 | #define REG_UMI_MMD_ICR_MRSB0 0x0008 | ||
| 159 | /* Polarity for assert3ed state of H/W controlled MRS */ | ||
| 160 | #define REG_UMI_MMD_ICR_MRSPOL 0x0004 | ||
| 161 | /* 0: S/W controllable ZZ/MRS/CRE/P-Mode pin */ | ||
| 162 | /* 1: H/W controlled ZZ/MRS/CRE/P-Mode, same timing as CS */ | ||
| 163 | #define REG_UMI_MMD_ICR_MRSMODE 0x0002 | ||
| 164 | /* MRS state for S/W controlled mode */ | ||
| 165 | #define REG_UMI_MMD_ICR_MRSSTATE 0x0001 | ||
| 166 | |||
| 167 | /* REG_UMI_NAND_TCR bits */ | ||
| 168 | /* Enable software to control CS */ | ||
| 169 | #define REG_UMI_NAND_TCR_CS_SWCTRL 0x80000000 | ||
| 170 | /* 16-bit nand wordsize if set */ | ||
| 171 | #define REG_UMI_NAND_TCR_WORD16 0x40000000 | ||
| 172 | /* Bus turnaround cycle (n) */ | ||
| 173 | #define REG_UMI_NAND_TCR_TBTA_MASK 0x00070000 | ||
| 174 | /* Write pulse width cycle (n+1) */ | ||
| 175 | #define REG_UMI_NAND_TCR_TWP_MASK 0x0000f800 | ||
| 176 | /* Write recovery cycle (n+1) */ | ||
| 177 | #define REG_UMI_NAND_TCR_TWR_MASK 0x00000600 | ||
| 178 | /* Write address setup cycle (n+1) */ | ||
| 179 | #define REG_UMI_NAND_TCR_TAS_MASK 0x00000180 | ||
| 180 | /* Output enable delay cycle (n) */ | ||
| 181 | #define REG_UMI_NAND_TCR_TOE_MASK 0x00000060 | ||
| 182 | /* Read access cycle (n+2) */ | ||
| 183 | #define REG_UMI_NAND_TCR_TRC_TLC_MASK 0x0000001f | ||
| 184 | |||
| 185 | /* REG_UMI_NAND_RCSR bits */ | ||
| 186 | /* Status: Ready=1, Busy=0 */ | ||
| 187 | #define REG_UMI_NAND_RCSR_RDY 0x02 | ||
| 188 | /* Keep CS asserted during operation */ | ||
| 189 | #define REG_UMI_NAND_RCSR_CS_ASSERTED 0x01 | ||
| 190 | |||
| 191 | /* REG_UMI_NAND_ECC_CSR bits */ | ||
| 192 | /* Interrupt status - read-only */ | ||
| 193 | #define REG_UMI_NAND_ECC_CSR_NANDINT 0x80000000 | ||
| 194 | /* Read: Status of ECC done, Write: clear ECC interrupt */ | ||
| 195 | #define REG_UMI_NAND_ECC_CSR_ECCINT_RAW 0x00800000 | ||
| 196 | /* Read: Status of R/B, Write: clear R/B interrupt */ | ||
| 197 | #define REG_UMI_NAND_ECC_CSR_RBINT_RAW 0x00400000 | ||
| 198 | /* 1 = Enable ECC Interrupt */ | ||
| 199 | #define REG_UMI_NAND_ECC_CSR_ECCINT_ENABLE 0x00008000 | ||
| 200 | /* 1 = Assert interrupt at rising edge of R/B_ */ | ||
| 201 | #define REG_UMI_NAND_ECC_CSR_RBINT_ENABLE 0x00004000 | ||
| 202 | /* Calculate ECC by 0=512 bytes, 1=256 bytes */ | ||
| 203 | #define REG_UMI_NAND_ECC_CSR_256BYTE 0x00000080 | ||
| 204 | /* Enable ECC in hardware */ | ||
| 205 | #define REG_UMI_NAND_ECC_CSR_ECC_ENABLE 0x00000001 | ||
| 206 | |||
| 207 | /* REG_UMI_BCH_CTRL_STATUS bits */ | ||
| 208 | /* Shift to Indicate Number of correctable errors detected */ | ||
| 209 | #define REG_UMI_BCH_CTRL_STATUS_NB_CORR_ERROR_SHIFT 20 | ||
| 210 | /* Indicate Number of correctable errors detected */ | ||
| 211 | #define REG_UMI_BCH_CTRL_STATUS_NB_CORR_ERROR 0x00F00000 | ||
| 212 | /* Indicate Errors detected during read but uncorrectable */ | ||
| 213 | #define REG_UMI_BCH_CTRL_STATUS_UNCORR_ERR 0x00080000 | ||
| 214 | /* Indicate Errors detected during read and are correctable */ | ||
| 215 | #define REG_UMI_BCH_CTRL_STATUS_CORR_ERR 0x00040000 | ||
| 216 | /* Flag indicates BCH's ECC status of read process are valid */ | ||
| 217 | #define REG_UMI_BCH_CTRL_STATUS_RD_ECC_VALID 0x00020000 | ||
| 218 | /* Flag indicates BCH's ECC status of write process are valid */ | ||
| 219 | #define REG_UMI_BCH_CTRL_STATUS_WR_ECC_VALID 0x00010000 | ||
| 220 | /* Pause ECC calculation */ | ||
| 221 | #define REG_UMI_BCH_CTRL_STATUS_PAUSE_ECC_DEC 0x00000010 | ||
| 222 | /* Enable Interrupt */ | ||
| 223 | #define REG_UMI_BCH_CTRL_STATUS_INT_EN 0x00000004 | ||
| 224 | /* Enable ECC during read */ | ||
| 225 | #define REG_UMI_BCH_CTRL_STATUS_ECC_RD_EN 0x00000002 | ||
| 226 | /* Enable ECC during write */ | ||
| 227 | #define REG_UMI_BCH_CTRL_STATUS_ECC_WR_EN 0x00000001 | ||
| 228 | /* Mask for location */ | ||
| 229 | #define REG_UMI_BCH_ERR_LOC_MASK 0x00001FFF | ||
| 230 | /* location within a byte */ | ||
| 231 | #define REG_UMI_BCH_ERR_LOC_BYTE 0x00000007 | ||
| 232 | /* location within a word */ | ||
| 233 | #define REG_UMI_BCH_ERR_LOC_WORD 0x00000018 | ||
| 234 | /* location within a page (512 byte) */ | ||
| 235 | #define REG_UMI_BCH_ERR_LOC_PAGE 0x00001FE0 | ||
| 236 | #define REG_UMI_BCH_ERR_LOC_ADDR(index) (__REG32(HW_UMI_BASE + 0x64 + (index / 2)*4) >> ((index % 2) * 16)) | ||
| 237 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/system.h b/arch/arm/mach-bcmring/include/mach/system.h new file mode 100644 index 00000000000..38b37060d42 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/system.h | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Copyright (C) 1999 ARM Limited | ||
| 4 | * Copyright (C) 2000 Deep Blue Solutions Ltd | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License | ||
| 17 | * along with this program; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 19 | */ | ||
| 20 | #ifndef __ASM_ARCH_SYSTEM_H | ||
| 21 | #define __ASM_ARCH_SYSTEM_H | ||
| 22 | |||
| 23 | #include <mach/csp/chipcHw_inline.h> | ||
| 24 | |||
| 25 | extern int bcmring_arch_warm_reboot; | ||
| 26 | |||
| 27 | static inline void arch_idle(void) | ||
| 28 | { | ||
| 29 | cpu_do_idle(); | ||
| 30 | } | ||
| 31 | |||
| 32 | static inline void arch_reset(char mode, const char *cmd) | ||
| 33 | { | ||
| 34 | printk("arch_reset:%c %x\n", mode, bcmring_arch_warm_reboot); | ||
| 35 | |||
| 36 | if (mode == 'h') { | ||
| 37 | /* Reboot configured in proc entry */ | ||
| 38 | if (bcmring_arch_warm_reboot) { | ||
| 39 | printk("warm reset\n"); | ||
| 40 | /* Issue Warm reset (do not reset ethernet switch, keep alive) */ | ||
| 41 | chipcHw_reset(chipcHw_REG_SOFT_RESET_CHIP_WARM); | ||
| 42 | } else { | ||
| 43 | /* Force reset of everything */ | ||
| 44 | printk("force reset\n"); | ||
| 45 | chipcHw_reset(chipcHw_REG_SOFT_RESET_CHIP_SOFT); | ||
| 46 | } | ||
| 47 | } else { | ||
| 48 | /* Force reset of everything */ | ||
| 49 | printk("force reset\n"); | ||
| 50 | chipcHw_reset(chipcHw_REG_SOFT_RESET_CHIP_SOFT); | ||
| 51 | } | ||
| 52 | } | ||
| 53 | |||
| 54 | #endif | ||
diff --git a/arch/arm/mach-bcmring/include/mach/timer.h b/arch/arm/mach-bcmring/include/mach/timer.h new file mode 100644 index 00000000000..5a94bbb032b --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/timer.h | |||
| @@ -0,0 +1,77 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | |||
| 15 | /* | ||
| 16 | * | ||
| 17 | ***************************************************************************** | ||
| 18 | * | ||
| 19 | * timer.h | ||
| 20 | * | ||
| 21 | * PURPOSE: | ||
| 22 | * | ||
| 23 | * | ||
| 24 | * | ||
| 25 | * NOTES: | ||
| 26 | * | ||
| 27 | *****************************************************************************/ | ||
| 28 | |||
| 29 | #if !defined(BCM_LINUX_TIMER_H) | ||
| 30 | #define BCM_LINUX_TIMER_H | ||
| 31 | |||
| 32 | #if defined(__KERNEL__) | ||
| 33 | |||
| 34 | /* ---- Include Files ---------------------------------------------------- */ | ||
| 35 | /* ---- Constants and Types ---------------------------------------------- */ | ||
| 36 | |||
| 37 | typedef unsigned int timer_tick_count_t; | ||
| 38 | typedef unsigned int timer_tick_rate_t; | ||
| 39 | typedef unsigned int timer_msec_t; | ||
| 40 | |||
| 41 | /* ---- Variable Externs ------------------------------------------------- */ | ||
| 42 | /* ---- Function Prototypes ---------------------------------------------- */ | ||
| 43 | |||
| 44 | /**************************************************************************** | ||
| 45 | * | ||
| 46 | * timer_get_tick_count | ||
| 47 | * | ||
| 48 | * | ||
| 49 | ***************************************************************************/ | ||
| 50 | timer_tick_count_t timer_get_tick_count(void); | ||
| 51 | |||
| 52 | /**************************************************************************** | ||
| 53 | * | ||
| 54 | * timer_get_tick_rate | ||
| 55 | * | ||
| 56 | * | ||
| 57 | ***************************************************************************/ | ||
| 58 | timer_tick_rate_t timer_get_tick_rate(void); | ||
| 59 | |||
| 60 | /**************************************************************************** | ||
| 61 | * | ||
| 62 | * timer_get_msec | ||
| 63 | * | ||
| 64 | * | ||
| 65 | ***************************************************************************/ | ||
| 66 | timer_msec_t timer_get_msec(void); | ||
| 67 | |||
| 68 | /**************************************************************************** | ||
| 69 | * | ||
| 70 | * timer_ticks_to_msec | ||
| 71 | * | ||
| 72 | * | ||
| 73 | ***************************************************************************/ | ||
| 74 | timer_msec_t timer_ticks_to_msec(timer_tick_count_t ticks); | ||
| 75 | |||
| 76 | #endif /* __KERNEL__ */ | ||
| 77 | #endif /* BCM_LINUX_TIMER_H */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/timex.h b/arch/arm/mach-bcmring/include/mach/timex.h new file mode 100644 index 00000000000..40d033ec589 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/timex.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Integrator architecture timex specifications | ||
| 4 | * | ||
| 5 | * Copyright (C) 1999 ARM Limited | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation; either version 2 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 20 | */ | ||
| 21 | |||
| 22 | /* | ||
| 23 | * Specifies the number of ticks per second | ||
| 24 | */ | ||
| 25 | #define CLOCK_TICK_RATE 100000 /* REG_SMT_TICKS_PER_SEC */ | ||
diff --git a/arch/arm/mach-bcmring/include/mach/uncompress.h b/arch/arm/mach-bcmring/include/mach/uncompress.h new file mode 100644 index 00000000000..9c9821b7797 --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/uncompress.h | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * Copyright 2005 - 2008 Broadcom Corporation. All rights reserved. | ||
| 3 | * | ||
| 4 | * Unless you and Broadcom execute a separate written software license | ||
| 5 | * agreement governing use of this software, this software is licensed to you | ||
| 6 | * under the terms of the GNU General Public License version 2, available at | ||
| 7 | * http://www.broadcom.com/licenses/GPLv2.php (the "GPL"). | ||
| 8 | * | ||
| 9 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 10 | * software in any way with any other Broadcom software provided under a | ||
| 11 | * license other than the GPL, without Broadcom's express prior written | ||
| 12 | * consent. | ||
| 13 | *****************************************************************************/ | ||
| 14 | #include <mach/csp/mm_addr.h> | ||
| 15 | |||
| 16 | #define BCMRING_UART_0_DR (*(volatile unsigned int *)MM_ADDR_IO_UARTA) | ||
| 17 | #define BCMRING_UART_0_FR (*(volatile unsigned int *)(MM_ADDR_IO_UARTA + 0x18)) | ||
| 18 | /* | ||
| 19 | * This does not append a newline | ||
| 20 | */ | ||
| 21 | static inline void putc(int c) | ||
| 22 | { | ||
| 23 | /* Send out UARTA */ | ||
| 24 | while (BCMRING_UART_0_FR & (1 << 5)) | ||
| 25 | ; | ||
| 26 | |||
| 27 | BCMRING_UART_0_DR = c; | ||
| 28 | } | ||
| 29 | |||
| 30 | |||
| 31 | static inline void flush(void) | ||
| 32 | { | ||
| 33 | /* Wait for the tx fifo to be empty */ | ||
| 34 | while ((BCMRING_UART_0_FR & (1 << 7)) == 0) | ||
| 35 | ; | ||
| 36 | |||
| 37 | /* Wait for the final character to be sent on the txd line */ | ||
| 38 | while (BCMRING_UART_0_FR & (1 << 3)) | ||
| 39 | ; | ||
| 40 | } | ||
| 41 | |||
| 42 | #define arch_decomp_setup() | ||
| 43 | #define arch_decomp_wdog() | ||
diff --git a/arch/arm/mach-bcmring/include/mach/vmalloc.h b/arch/arm/mach-bcmring/include/mach/vmalloc.h new file mode 100644 index 00000000000..7397bd7817d --- /dev/null +++ b/arch/arm/mach-bcmring/include/mach/vmalloc.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Copyright (C) 2000 Russell King. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 18 | */ | ||
| 19 | |||
| 20 | /* | ||
| 21 | * Move VMALLOC_END to 0xf0000000 so that the vm space can range from | ||
| 22 | * 0xe0000000 to 0xefffffff. This gives us 256 MB of vm space and handles | ||
| 23 | * larger physical memory designs better. | ||
| 24 | */ | ||
| 25 | #define VMALLOC_END 0xf0000000UL | ||
