Masahiro Yamada | bb2ff9d | 2014-10-03 19:21:06 +0900 | [diff] [blame^] | 1 | /* |
| 2 | * UniPhier SG (SoC Glue) block registers |
| 3 | * |
| 4 | * Copyright (C) 2011-2014 Panasonic Corporation |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0+ |
| 7 | */ |
| 8 | |
| 9 | #ifndef ARCH_SG_REGS_H |
| 10 | #define ARCH_SG_REGS_H |
| 11 | |
| 12 | /* Base Address */ |
| 13 | #define SG_CTRL_BASE 0x5f800000 |
| 14 | #define SG_DBG_BASE 0x5f900000 |
| 15 | |
| 16 | /* Revision */ |
| 17 | #define SG_REVISION (SG_CTRL_BASE | 0x0000) |
| 18 | #define SG_REVISION_TYPE_SHIFT 16 |
| 19 | #define SG_REVISION_TYPE_MASK (0xff << SG_REVISION_TYPE_SHIFT) |
| 20 | #define SG_REVISION_MODEL_SHIFT 8 |
| 21 | #define SG_REVISION_MODEL_MASK (0x3 << SG_REVISION_MODEL_SHIFT) |
| 22 | #define SG_REVISION_REV_SHIFT 0 |
| 23 | #define SG_REVISION_REV_MASK (0x1f << SG_REVISION_REV_SHIFT) |
| 24 | |
| 25 | /* Memory Configuration */ |
| 26 | #define SG_MEMCONF (SG_CTRL_BASE | 0x0400) |
| 27 | |
| 28 | #define SG_MEMCONF_CH0_SIZE_64MB ((0x0 << 10) | (0x01 << 0)) |
| 29 | #define SG_MEMCONF_CH0_SIZE_128MB ((0x0 << 10) | (0x02 << 0)) |
| 30 | #define SG_MEMCONF_CH0_SIZE_256MB ((0x0 << 10) | (0x03 << 0)) |
| 31 | #define SG_MEMCONF_CH0_SIZE_512MB ((0x1 << 10) | (0x00 << 0)) |
| 32 | #define SG_MEMCONF_CH0_SIZE_1024MB ((0x1 << 10) | (0x01 << 0)) |
| 33 | #define SG_MEMCONF_CH0_NUM_1 (0x1 << 8) |
| 34 | #define SG_MEMCONF_CH0_NUM_2 (0x0 << 8) |
| 35 | |
| 36 | #define SG_MEMCONF_CH1_SIZE_64MB ((0x0 << 11) | (0x01 << 2)) |
| 37 | #define SG_MEMCONF_CH1_SIZE_128MB ((0x0 << 11) | (0x02 << 2)) |
| 38 | #define SG_MEMCONF_CH1_SIZE_256MB ((0x0 << 11) | (0x03 << 2)) |
| 39 | #define SG_MEMCONF_CH1_SIZE_512MB ((0x1 << 11) | (0x00 << 2)) |
| 40 | #define SG_MEMCONF_CH1_SIZE_1024MB ((0x1 << 11) | (0x01 << 2)) |
| 41 | #define SG_MEMCONF_CH1_NUM_1 (0x1 << 9) |
| 42 | #define SG_MEMCONF_CH1_NUM_2 (0x0 << 9) |
| 43 | |
| 44 | #define SG_MEMCONF_SPARSEMEM (0x1 << 4) |
| 45 | |
| 46 | /* Pin Control */ |
| 47 | #define SG_PINCTRL_BASE (SG_CTRL_BASE | 0x1000) |
| 48 | |
| 49 | #if defined(CONFIG_MACH_PH1_PRO4) |
| 50 | # define SG_PINCTRL(n) (SG_PINCTRL_BASE + (n) * 8) |
| 51 | #elif defined(CONFIG_MACH_PH1_LD4) || defined(CONFIG_MACH_PH1_SLD8) |
| 52 | # define SG_PINCTRL(n) (SG_PINCTRL_BASE + (n) * 4) |
| 53 | #endif |
| 54 | |
| 55 | #if defined(CONFIG_MACH_PH1_PRO4) |
| 56 | #define SG_PINSELBITS 4 |
| 57 | #elif defined(CONFIG_MACH_PH1_LD4) || defined(CONFIG_MACH_PH1_SLD8) |
| 58 | #define SG_PINSELBITS 8 |
| 59 | #endif |
| 60 | |
| 61 | #define SG_PINSEL_ADDR(n) (SG_PINCTRL((n) * (SG_PINSELBITS) / 32)) |
| 62 | #define SG_PINSEL_MASK(n) (~(((1 << (SG_PINSELBITS)) - 1) << \ |
| 63 | ((n) * (SG_PINSELBITS) % 32))) |
| 64 | #define SG_PINSEL_MODE(n, mode) ((mode) << ((n) * (SG_PINSELBITS) % 32)) |
| 65 | |
| 66 | /* Only for PH1-Pro4 */ |
| 67 | #define SG_LOADPINCTRL (SG_CTRL_BASE | 0x1700) |
| 68 | |
| 69 | /* Input Enable */ |
| 70 | #define SG_IECTRL (SG_CTRL_BASE | 0x1d00) |
| 71 | |
| 72 | /* Pin Monitor */ |
| 73 | #define SG_PINMON0 (SG_DBG_BASE | 0x0100) |
| 74 | |
| 75 | #define SG_PINMON0_CLK_MODE_UPLLSRC_MASK (0x3 << 19) |
| 76 | #define SG_PINMON0_CLK_MODE_UPLLSRC_DEFAULT (0x0 << 19) |
| 77 | #define SG_PINMON0_CLK_MODE_UPLLSRC_VPLL27A (0x2 << 19) |
| 78 | #define SG_PINMON0_CLK_MODE_UPLLSRC_VPLL27B (0x3 << 19) |
| 79 | |
| 80 | #define SG_PINMON0_CLK_MODE_AXOSEL_MASK (0x3 << 16) |
| 81 | #define SG_PINMON0_CLK_MODE_AXOSEL_24576KHZ (0x0 << 16) |
| 82 | #define SG_PINMON0_CLK_MODE_AXOSEL_25000KHZ (0x1 << 16) |
| 83 | #define SG_PINMON0_CLK_MODE_AXOSEL_6144KHZ (0x2 << 16) |
| 84 | #define SG_PINMON0_CLK_MODE_AXOSEL_6250KHZ (0x3 << 16) |
| 85 | |
| 86 | #define SG_PINMON0_CLK_MODE_AXOSEL_DEFAULT (0x0 << 16) |
| 87 | #define SG_PINMON0_CLK_MODE_AXOSEL_25000KHZ_U (0x1 << 16) |
| 88 | #define SG_PINMON0_CLK_MODE_AXOSEL_20480KHZ (0x2 << 16) |
| 89 | #define SG_PINMON0_CLK_MODE_AXOSEL_25000KHZ_A (0x3 << 16) |
| 90 | |
| 91 | #ifndef __ASSEMBLY__ |
| 92 | #include <linux/types.h> |
| 93 | #include <asm/io.h> |
| 94 | |
| 95 | static inline void sg_set_pinsel(int n, int value) |
| 96 | { |
| 97 | writel((readl(SG_PINSEL_ADDR(n)) & SG_PINSEL_MASK(n)) |
| 98 | | SG_PINSEL_MODE(n, value), SG_PINSEL_ADDR(n)); |
| 99 | } |
| 100 | |
| 101 | static inline u32 sg_memconf_val_ch0(unsigned long size, int num) |
| 102 | { |
| 103 | int size_mb = (size >> 20) / num; |
| 104 | u32 ret; |
| 105 | |
| 106 | switch (size_mb) { |
| 107 | case 64: |
| 108 | ret = SG_MEMCONF_CH0_SIZE_64MB; |
| 109 | break; |
| 110 | case 128: |
| 111 | ret = SG_MEMCONF_CH0_SIZE_128MB; |
| 112 | break; |
| 113 | case 256: |
| 114 | ret = SG_MEMCONF_CH0_SIZE_256MB; |
| 115 | break; |
| 116 | case 512: |
| 117 | ret = SG_MEMCONF_CH0_SIZE_512MB; |
| 118 | break; |
| 119 | case 1024: |
| 120 | ret = SG_MEMCONF_CH0_SIZE_1024MB; |
| 121 | break; |
| 122 | default: |
| 123 | BUG(); |
| 124 | break; |
| 125 | } |
| 126 | |
| 127 | switch (num) { |
| 128 | case 1: |
| 129 | ret |= SG_MEMCONF_CH0_NUM_1; |
| 130 | break; |
| 131 | case 2: |
| 132 | ret |= SG_MEMCONF_CH0_NUM_2; |
| 133 | break; |
| 134 | default: |
| 135 | BUG(); |
| 136 | break; |
| 137 | } |
| 138 | return ret; |
| 139 | } |
| 140 | |
| 141 | static inline u32 sg_memconf_val_ch1(unsigned long size, int num) |
| 142 | { |
| 143 | int size_mb = (size >> 20) / num; |
| 144 | u32 ret; |
| 145 | |
| 146 | switch (size_mb) { |
| 147 | case 64: |
| 148 | ret = SG_MEMCONF_CH1_SIZE_64MB; |
| 149 | break; |
| 150 | case 128: |
| 151 | ret = SG_MEMCONF_CH1_SIZE_128MB; |
| 152 | break; |
| 153 | case 256: |
| 154 | ret = SG_MEMCONF_CH1_SIZE_256MB; |
| 155 | break; |
| 156 | case 512: |
| 157 | ret = SG_MEMCONF_CH1_SIZE_512MB; |
| 158 | break; |
| 159 | case 1024: |
| 160 | ret = SG_MEMCONF_CH1_SIZE_1024MB; |
| 161 | break; |
| 162 | default: |
| 163 | BUG(); |
| 164 | break; |
| 165 | } |
| 166 | |
| 167 | switch (num) { |
| 168 | case 1: |
| 169 | ret |= SG_MEMCONF_CH1_NUM_1; |
| 170 | break; |
| 171 | case 2: |
| 172 | ret |= SG_MEMCONF_CH1_NUM_2; |
| 173 | break; |
| 174 | default: |
| 175 | BUG(); |
| 176 | break; |
| 177 | } |
| 178 | return ret; |
| 179 | } |
| 180 | #endif /* __ASSEMBLY__ */ |
| 181 | |
| 182 | #endif /* ARCH_SG_REGS_H */ |