Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of wl1271 |
| 3 | * |
| 4 | * Copyright (C) 2008-2010 Nokia Corporation |
| 5 | * |
| 6 | * Contact: Luciano Coelho <luciano.coelho@nokia.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * version 2 as published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * 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., 51 Franklin St, Fifth Floor, Boston, MA |
| 20 | * 02110-1301 USA |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/platform_device.h> |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 26 | #include <linux/spi/spi.h> |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 27 | #include <linux/interrupt.h> |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 28 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 29 | #include "wl12xx.h" |
Luciano Coelho | 0f4e312 | 2011-10-07 11:02:42 +0300 | [diff] [blame] | 30 | #include "debug.h" |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 31 | #include "wl12xx_80211.h" |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 32 | #include "io.h" |
Ido Yariv | 0da13da | 2011-03-31 10:06:58 +0200 | [diff] [blame] | 33 | #include "tx.h" |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 34 | |
Teemu Paasikivi | 760d969 | 2010-02-22 08:38:25 +0200 | [diff] [blame] | 35 | #define OCP_CMD_LOOP 32 |
| 36 | |
| 37 | #define OCP_CMD_WRITE 0x1 |
| 38 | #define OCP_CMD_READ 0x2 |
| 39 | |
| 40 | #define OCP_READY_MASK BIT(18) |
| 41 | #define OCP_STATUS_MASK (BIT(16) | BIT(17)) |
| 42 | |
| 43 | #define OCP_STATUS_NO_RESP 0x00000 |
| 44 | #define OCP_STATUS_OK 0x10000 |
| 45 | #define OCP_STATUS_REQ_FAILED 0x20000 |
| 46 | #define OCP_STATUS_RESP_ERROR 0x30000 |
| 47 | |
Luciano Coelho | 0becb14 | 2012-01-12 14:45:34 +0200 | [diff] [blame^] | 48 | struct wl1271_partition_set wl12xx_part_table[PART_TABLE_LEN] = { |
| 49 | [PART_DOWN] = { |
| 50 | .mem = { |
| 51 | .start = 0x00000000, |
| 52 | .size = 0x000177c0 |
| 53 | }, |
| 54 | .reg = { |
| 55 | .start = REGISTERS_BASE, |
| 56 | .size = 0x00008800 |
| 57 | }, |
| 58 | .mem2 = { |
| 59 | .start = 0x00000000, |
| 60 | .size = 0x00000000 |
| 61 | }, |
| 62 | .mem3 = { |
| 63 | .start = 0x00000000, |
| 64 | .size = 0x00000000 |
| 65 | }, |
| 66 | }, |
| 67 | |
| 68 | [PART_WORK] = { |
| 69 | .mem = { |
| 70 | .start = 0x00040000, |
| 71 | .size = 0x00014fc0 |
| 72 | }, |
| 73 | .reg = { |
| 74 | .start = REGISTERS_BASE, |
| 75 | .size = 0x0000a000 |
| 76 | }, |
| 77 | .mem2 = { |
| 78 | .start = 0x003004f8, |
| 79 | .size = 0x00000004 |
| 80 | }, |
| 81 | .mem3 = { |
| 82 | .start = 0x00040404, |
| 83 | .size = 0x00000000 |
| 84 | }, |
| 85 | }, |
| 86 | |
| 87 | [PART_DRPW] = { |
| 88 | .mem = { |
| 89 | .start = 0x00040000, |
| 90 | .size = 0x00014fc0 |
| 91 | }, |
| 92 | .reg = { |
| 93 | .start = DRPW_BASE, |
| 94 | .size = 0x00006000 |
| 95 | }, |
| 96 | .mem2 = { |
| 97 | .start = 0x00000000, |
| 98 | .size = 0x00000000 |
| 99 | }, |
| 100 | .mem3 = { |
| 101 | .start = 0x00000000, |
| 102 | .size = 0x00000000 |
| 103 | } |
| 104 | } |
| 105 | }; |
| 106 | |
Shahar Levi | 48a6147 | 2011-03-06 16:32:08 +0200 | [diff] [blame] | 107 | bool wl1271_set_block_size(struct wl1271 *wl) |
| 108 | { |
| 109 | if (wl->if_ops->set_block_size) { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 110 | wl->if_ops->set_block_size(wl->dev, WL12XX_BUS_BLOCK_SIZE); |
Shahar Levi | 48a6147 | 2011-03-06 16:32:08 +0200 | [diff] [blame] | 111 | return true; |
| 112 | } |
| 113 | |
| 114 | return false; |
| 115 | } |
| 116 | |
Teemu Paasikivi | 54f7e50 | 2010-02-22 08:38:22 +0200 | [diff] [blame] | 117 | void wl1271_disable_interrupts(struct wl1271 *wl) |
| 118 | { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 119 | disable_irq(wl->irq); |
Teemu Paasikivi | 54f7e50 | 2010-02-22 08:38:22 +0200 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | void wl1271_enable_interrupts(struct wl1271 *wl) |
| 123 | { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 124 | enable_irq(wl->irq); |
Teemu Paasikivi | 54f7e50 | 2010-02-22 08:38:22 +0200 | [diff] [blame] | 125 | } |
| 126 | |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 127 | /* Set the SPI partitions to access the chip addresses |
| 128 | * |
| 129 | * To simplify driver code, a fixed (virtual) memory map is defined for |
| 130 | * register and memory addresses. Because in the chipset, in different stages |
| 131 | * of operation, those addresses will move around, an address translation |
| 132 | * mechanism is required. |
| 133 | * |
| 134 | * There are four partitions (three memory and one register partition), |
| 135 | * which are mapped to two different areas of the hardware memory. |
| 136 | * |
| 137 | * Virtual address |
| 138 | * space |
| 139 | * |
| 140 | * | | |
| 141 | * ...+----+--> mem.start |
| 142 | * Physical address ... | | |
| 143 | * space ... | | [PART_0] |
| 144 | * ... | | |
| 145 | * 00000000 <--+----+... ...+----+--> mem.start + mem.size |
| 146 | * | | ... | | |
| 147 | * |MEM | ... | | |
| 148 | * | | ... | | |
| 149 | * mem.size <--+----+... | | {unused area) |
| 150 | * | | ... | | |
| 151 | * |REG | ... | | |
| 152 | * mem.size | | ... | | |
| 153 | * + <--+----+... ...+----+--> reg.start |
| 154 | * reg.size | | ... | | |
| 155 | * |MEM2| ... | | [PART_1] |
| 156 | * | | ... | | |
| 157 | * ...+----+--> reg.start + reg.size |
| 158 | * | | |
| 159 | * |
| 160 | */ |
| 161 | int wl1271_set_partition(struct wl1271 *wl, |
| 162 | struct wl1271_partition_set *p) |
| 163 | { |
| 164 | /* copy partition info */ |
| 165 | memcpy(&wl->part, p, sizeof(*p)); |
| 166 | |
| 167 | wl1271_debug(DEBUG_SPI, "mem_start %08X mem_size %08X", |
| 168 | p->mem.start, p->mem.size); |
| 169 | wl1271_debug(DEBUG_SPI, "reg_start %08X reg_size %08X", |
| 170 | p->reg.start, p->reg.size); |
| 171 | wl1271_debug(DEBUG_SPI, "mem2_start %08X mem2_size %08X", |
| 172 | p->mem2.start, p->mem2.size); |
| 173 | wl1271_debug(DEBUG_SPI, "mem3_start %08X mem3_size %08X", |
| 174 | p->mem3.start, p->mem3.size); |
| 175 | |
| 176 | /* write partition info to the chipset */ |
| 177 | wl1271_raw_write32(wl, HW_PART0_START_ADDR, p->mem.start); |
| 178 | wl1271_raw_write32(wl, HW_PART0_SIZE_ADDR, p->mem.size); |
| 179 | wl1271_raw_write32(wl, HW_PART1_START_ADDR, p->reg.start); |
| 180 | wl1271_raw_write32(wl, HW_PART1_SIZE_ADDR, p->reg.size); |
| 181 | wl1271_raw_write32(wl, HW_PART2_START_ADDR, p->mem2.start); |
| 182 | wl1271_raw_write32(wl, HW_PART2_SIZE_ADDR, p->mem2.size); |
| 183 | wl1271_raw_write32(wl, HW_PART3_START_ADDR, p->mem3.start); |
| 184 | |
| 185 | return 0; |
| 186 | } |
Roger Quadros | 870c367 | 2010-11-29 16:24:57 +0200 | [diff] [blame] | 187 | EXPORT_SYMBOL_GPL(wl1271_set_partition); |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 188 | |
Teemu Paasikivi | 9b28072 | 2010-02-18 13:25:56 +0200 | [diff] [blame] | 189 | void wl1271_io_reset(struct wl1271 *wl) |
| 190 | { |
Felipe Balbi | 77d7d7a | 2011-05-14 00:26:21 +0300 | [diff] [blame] | 191 | if (wl->if_ops->reset) |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 192 | wl->if_ops->reset(wl->dev); |
Teemu Paasikivi | 9b28072 | 2010-02-18 13:25:56 +0200 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | void wl1271_io_init(struct wl1271 *wl) |
| 196 | { |
Felipe Balbi | 77d7d7a | 2011-05-14 00:26:21 +0300 | [diff] [blame] | 197 | if (wl->if_ops->init) |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 198 | wl->if_ops->init(wl->dev); |
Teemu Paasikivi | 9b28072 | 2010-02-18 13:25:56 +0200 | [diff] [blame] | 199 | } |
| 200 | |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 201 | void wl1271_top_reg_write(struct wl1271 *wl, int addr, u16 val) |
| 202 | { |
| 203 | /* write address >> 1 + 0x30000 to OCP_POR_CTR */ |
| 204 | addr = (addr >> 1) + 0x30000; |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 205 | wl1271_write32(wl, OCP_POR_CTR, addr); |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 206 | |
| 207 | /* write value to OCP_POR_WDATA */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 208 | wl1271_write32(wl, OCP_DATA_WRITE, val); |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 209 | |
| 210 | /* write 1 to OCP_CMD */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 211 | wl1271_write32(wl, OCP_CMD, OCP_CMD_WRITE); |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | u16 wl1271_top_reg_read(struct wl1271 *wl, int addr) |
| 215 | { |
| 216 | u32 val; |
| 217 | int timeout = OCP_CMD_LOOP; |
| 218 | |
| 219 | /* write address >> 1 + 0x30000 to OCP_POR_CTR */ |
| 220 | addr = (addr >> 1) + 0x30000; |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 221 | wl1271_write32(wl, OCP_POR_CTR, addr); |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 222 | |
| 223 | /* write 2 to OCP_CMD */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 224 | wl1271_write32(wl, OCP_CMD, OCP_CMD_READ); |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 225 | |
| 226 | /* poll for data ready */ |
| 227 | do { |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 228 | val = wl1271_read32(wl, OCP_DATA_READ); |
Teemu Paasikivi | 521a5b2 | 2010-02-18 13:25:54 +0200 | [diff] [blame] | 229 | } while (!(val & OCP_READY_MASK) && --timeout); |
| 230 | |
| 231 | if (!timeout) { |
| 232 | wl1271_warning("Top register access timed out."); |
| 233 | return 0xffff; |
| 234 | } |
| 235 | |
| 236 | /* check data status and return if OK */ |
| 237 | if ((val & OCP_STATUS_MASK) == OCP_STATUS_OK) |
| 238 | return val & 0xffff; |
| 239 | else { |
| 240 | wl1271_warning("Top register access returned error."); |
| 241 | return 0xffff; |
| 242 | } |
| 243 | } |
| 244 | |