Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006 Freescale Semicondutor, Inc. All rights reserved. |
| 3 | * |
| 4 | * Authors: Shlomi Gridish <gridish@freescale.com> |
| 5 | * Li Yang <leoli@freescale.com> |
| 6 | * Based on cpm2_common.c from Dan Malek (dmalek@jlc.net) |
| 7 | * |
| 8 | * Description: |
| 9 | * General Purpose functions for the global management of the |
| 10 | * QUICC Engine (QE). |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License as published by the |
| 14 | * Free Software Foundation; either version 2 of the License, or (at your |
| 15 | * option) any later version. |
| 16 | */ |
| 17 | #include <linux/errno.h> |
| 18 | #include <linux/sched.h> |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/param.h> |
| 21 | #include <linux/string.h> |
Anton Vorontsov | 09a3fba | 2008-11-11 18:31:39 +0300 | [diff] [blame] | 22 | #include <linux/spinlock.h> |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 23 | #include <linux/mm.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/bootmem.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/delay.h> |
| 28 | #include <linux/ioport.h> |
Timur Tabi | bc556ba | 2008-01-08 10:30:58 -0600 | [diff] [blame] | 29 | #include <linux/crc32.h> |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 30 | #include <asm/irq.h> |
| 31 | #include <asm/page.h> |
| 32 | #include <asm/pgtable.h> |
| 33 | #include <asm/immap_qe.h> |
| 34 | #include <asm/qe.h> |
| 35 | #include <asm/prom.h> |
| 36 | #include <asm/rheap.h> |
| 37 | |
| 38 | static void qe_snums_init(void); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 39 | static int qe_sdma_init(void); |
| 40 | |
| 41 | static DEFINE_SPINLOCK(qe_lock); |
Anton Vorontsov | 09a3fba | 2008-11-11 18:31:39 +0300 | [diff] [blame] | 42 | DEFINE_SPINLOCK(cmxgcr_lock); |
| 43 | EXPORT_SYMBOL(cmxgcr_lock); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 44 | |
| 45 | /* QE snum state */ |
| 46 | enum qe_snum_state { |
| 47 | QE_SNUM_STATE_USED, |
| 48 | QE_SNUM_STATE_FREE |
| 49 | }; |
| 50 | |
| 51 | /* QE snum */ |
| 52 | struct qe_snum { |
| 53 | u8 num; |
| 54 | enum qe_snum_state state; |
| 55 | }; |
| 56 | |
| 57 | /* We allocate this here because it is used almost exclusively for |
| 58 | * the communication processor devices. |
| 59 | */ |
Anton Vorontsov | 0b51b02 | 2008-03-11 20:24:13 +0300 | [diff] [blame] | 60 | struct qe_immap __iomem *qe_immr; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 61 | EXPORT_SYMBOL(qe_immr); |
| 62 | |
| 63 | static struct qe_snum snums[QE_NUM_OF_SNUM]; /* Dynamically allocated SNUMs */ |
Haiying Wang | 98ca77a | 2009-05-01 15:40:48 -0400 | [diff] [blame] | 64 | static unsigned int qe_num_of_snum; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 65 | |
| 66 | static phys_addr_t qebase = -1; |
| 67 | |
| 68 | phys_addr_t get_qe_base(void) |
| 69 | { |
| 70 | struct device_node *qe; |
Andy Fleming | 7e1cc9c | 2008-05-07 13:19:44 -0500 | [diff] [blame] | 71 | int size; |
Anton Vorontsov | d8985fd | 2008-02-04 16:46:17 +0300 | [diff] [blame] | 72 | const u32 *prop; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 73 | |
| 74 | if (qebase != -1) |
| 75 | return qebase; |
| 76 | |
Anton Vorontsov | a2dd70a | 2008-01-24 18:39:59 +0300 | [diff] [blame] | 77 | qe = of_find_compatible_node(NULL, NULL, "fsl,qe"); |
| 78 | if (!qe) { |
| 79 | qe = of_find_node_by_type(NULL, "qe"); |
| 80 | if (!qe) |
| 81 | return qebase; |
| 82 | } |
| 83 | |
| 84 | prop = of_get_property(qe, "reg", &size); |
Anton Vorontsov | d8985fd | 2008-02-04 16:46:17 +0300 | [diff] [blame] | 85 | if (prop && size >= sizeof(*prop)) |
| 86 | qebase = of_translate_address(qe, prop); |
Anton Vorontsov | a2dd70a | 2008-01-24 18:39:59 +0300 | [diff] [blame] | 87 | of_node_put(qe); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 88 | |
| 89 | return qebase; |
| 90 | } |
| 91 | |
| 92 | EXPORT_SYMBOL(get_qe_base); |
| 93 | |
Anton Vorontsov | 5848f16 | 2008-06-11 16:32:48 +0400 | [diff] [blame] | 94 | void __init qe_reset(void) |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 95 | { |
| 96 | if (qe_immr == NULL) |
| 97 | qe_immr = ioremap(get_qe_base(), QE_IMMAP_SIZE); |
| 98 | |
| 99 | qe_snums_init(); |
| 100 | |
| 101 | qe_issue_cmd(QE_RESET, QE_CR_SUBBLOCK_INVALID, |
| 102 | QE_CR_PROTOCOL_UNSPECIFIED, 0); |
| 103 | |
| 104 | /* Reclaim the MURAM memory for our use. */ |
| 105 | qe_muram_init(); |
| 106 | |
| 107 | if (qe_sdma_init()) |
| 108 | panic("sdma init failed!"); |
| 109 | } |
| 110 | |
| 111 | int qe_issue_cmd(u32 cmd, u32 device, u8 mcn_protocol, u32 cmd_input) |
| 112 | { |
| 113 | unsigned long flags; |
| 114 | u8 mcn_shift = 0, dev_shift = 0; |
| 115 | |
| 116 | spin_lock_irqsave(&qe_lock, flags); |
| 117 | if (cmd == QE_RESET) { |
| 118 | out_be32(&qe_immr->cp.cecr, (u32) (cmd | QE_CR_FLG)); |
| 119 | } else { |
| 120 | if (cmd == QE_ASSIGN_PAGE) { |
| 121 | /* Here device is the SNUM, not sub-block */ |
| 122 | dev_shift = QE_CR_SNUM_SHIFT; |
| 123 | } else if (cmd == QE_ASSIGN_RISC) { |
| 124 | /* Here device is the SNUM, and mcnProtocol is |
| 125 | * e_QeCmdRiscAssignment value */ |
| 126 | dev_shift = QE_CR_SNUM_SHIFT; |
| 127 | mcn_shift = QE_CR_MCN_RISC_ASSIGN_SHIFT; |
| 128 | } else { |
| 129 | if (device == QE_CR_SUBBLOCK_USB) |
| 130 | mcn_shift = QE_CR_MCN_USB_SHIFT; |
| 131 | else |
| 132 | mcn_shift = QE_CR_MCN_NORMAL_SHIFT; |
| 133 | } |
| 134 | |
Timur Tabi | 302439d | 2006-10-31 17:53:42 +0800 | [diff] [blame] | 135 | out_be32(&qe_immr->cp.cecdr, cmd_input); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 136 | out_be32(&qe_immr->cp.cecr, |
| 137 | (cmd | QE_CR_FLG | ((u32) device << dev_shift) | (u32) |
| 138 | mcn_protocol << mcn_shift)); |
| 139 | } |
| 140 | |
| 141 | /* wait for the QE_CR_FLG to clear */ |
| 142 | while(in_be32(&qe_immr->cp.cecr) & QE_CR_FLG) |
| 143 | cpu_relax(); |
| 144 | spin_unlock_irqrestore(&qe_lock, flags); |
| 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | EXPORT_SYMBOL(qe_issue_cmd); |
| 149 | |
| 150 | /* Set a baud rate generator. This needs lots of work. There are |
| 151 | * 16 BRGs, which can be connected to the QE channels or output |
| 152 | * as clocks. The BRGs are in two different block of internal |
| 153 | * memory mapped space. |
Timur Tabi | 6b0b594 | 2007-10-03 11:34:59 -0500 | [diff] [blame] | 154 | * The BRG clock is the QE clock divided by 2. |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 155 | * It was set up long ago during the initial boot phase and is |
| 156 | * is given to us. |
| 157 | * Baud rate clocks are zero-based in the driver code (as that maps |
| 158 | * to port numbers). Documentation uses 1-based numbering. |
| 159 | */ |
| 160 | static unsigned int brg_clk = 0; |
| 161 | |
Anton Vorontsov | 7f0a6fc | 2008-03-11 20:24:24 +0300 | [diff] [blame] | 162 | unsigned int qe_get_brg_clk(void) |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 163 | { |
| 164 | struct device_node *qe; |
Andy Fleming | 7e1cc9c | 2008-05-07 13:19:44 -0500 | [diff] [blame] | 165 | int size; |
Anton Vorontsov | a2dd70a | 2008-01-24 18:39:59 +0300 | [diff] [blame] | 166 | const u32 *prop; |
| 167 | |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 168 | if (brg_clk) |
| 169 | return brg_clk; |
| 170 | |
Anton Vorontsov | a2dd70a | 2008-01-24 18:39:59 +0300 | [diff] [blame] | 171 | qe = of_find_compatible_node(NULL, NULL, "fsl,qe"); |
| 172 | if (!qe) { |
| 173 | qe = of_find_node_by_type(NULL, "qe"); |
| 174 | if (!qe) |
| 175 | return brg_clk; |
| 176 | } |
| 177 | |
| 178 | prop = of_get_property(qe, "brg-frequency", &size); |
Anton Vorontsov | d8985fd | 2008-02-04 16:46:17 +0300 | [diff] [blame] | 179 | if (prop && size == sizeof(*prop)) |
| 180 | brg_clk = *prop; |
Anton Vorontsov | a2dd70a | 2008-01-24 18:39:59 +0300 | [diff] [blame] | 181 | |
Anton Vorontsov | a2dd70a | 2008-01-24 18:39:59 +0300 | [diff] [blame] | 182 | of_node_put(qe); |
| 183 | |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 184 | return brg_clk; |
| 185 | } |
Anton Vorontsov | 7f0a6fc | 2008-03-11 20:24:24 +0300 | [diff] [blame] | 186 | EXPORT_SYMBOL(qe_get_brg_clk); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 187 | |
Timur Tabi | 6b0b594 | 2007-10-03 11:34:59 -0500 | [diff] [blame] | 188 | /* Program the BRG to the given sampling rate and multiplier |
| 189 | * |
Timur Tabi | 7264ec4 | 2007-11-29 17:26:30 -0600 | [diff] [blame] | 190 | * @brg: the BRG, QE_BRG1 - QE_BRG16 |
Timur Tabi | 6b0b594 | 2007-10-03 11:34:59 -0500 | [diff] [blame] | 191 | * @rate: the desired sampling rate |
| 192 | * @multiplier: corresponds to the value programmed in GUMR_L[RDCR] or |
| 193 | * GUMR_L[TDCR]. E.g., if this BRG is the RX clock, and GUMR_L[RDCR]=01, |
| 194 | * then 'multiplier' should be 8. |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 195 | */ |
Timur Tabi | 7264ec4 | 2007-11-29 17:26:30 -0600 | [diff] [blame] | 196 | int qe_setbrg(enum qe_clock brg, unsigned int rate, unsigned int multiplier) |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 197 | { |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 198 | u32 divisor, tempval; |
Timur Tabi | 6b0b594 | 2007-10-03 11:34:59 -0500 | [diff] [blame] | 199 | u32 div16 = 0; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 200 | |
Timur Tabi | 7264ec4 | 2007-11-29 17:26:30 -0600 | [diff] [blame] | 201 | if ((brg < QE_BRG1) || (brg > QE_BRG16)) |
| 202 | return -EINVAL; |
| 203 | |
Anton Vorontsov | 7f0a6fc | 2008-03-11 20:24:24 +0300 | [diff] [blame] | 204 | divisor = qe_get_brg_clk() / (rate * multiplier); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 205 | |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 206 | if (divisor > QE_BRGC_DIVISOR_MAX + 1) { |
Timur Tabi | 6b0b594 | 2007-10-03 11:34:59 -0500 | [diff] [blame] | 207 | div16 = QE_BRGC_DIV16; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 208 | divisor /= 16; |
| 209 | } |
| 210 | |
Timur Tabi | 6b0b594 | 2007-10-03 11:34:59 -0500 | [diff] [blame] | 211 | /* Errata QE_General4, which affects some MPC832x and MPC836x SOCs, says |
| 212 | that the BRG divisor must be even if you're not using divide-by-16 |
| 213 | mode. */ |
| 214 | if (!div16 && (divisor & 1)) |
| 215 | divisor++; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 216 | |
Timur Tabi | 6b0b594 | 2007-10-03 11:34:59 -0500 | [diff] [blame] | 217 | tempval = ((divisor - 1) << QE_BRGC_DIVISOR_SHIFT) | |
| 218 | QE_BRGC_ENABLE | div16; |
| 219 | |
Timur Tabi | 7264ec4 | 2007-11-29 17:26:30 -0600 | [diff] [blame] | 220 | out_be32(&qe_immr->brg.brgc[brg - QE_BRG1], tempval); |
| 221 | |
| 222 | return 0; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 223 | } |
Timur Tabi | 7264ec4 | 2007-11-29 17:26:30 -0600 | [diff] [blame] | 224 | EXPORT_SYMBOL(qe_setbrg); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 225 | |
Timur Tabi | 174b0da | 2007-12-03 15:17:58 -0600 | [diff] [blame] | 226 | /* Convert a string to a QE clock source enum |
| 227 | * |
| 228 | * This function takes a string, typically from a property in the device |
| 229 | * tree, and returns the corresponding "enum qe_clock" value. |
| 230 | */ |
| 231 | enum qe_clock qe_clock_source(const char *source) |
| 232 | { |
| 233 | unsigned int i; |
| 234 | |
| 235 | if (strcasecmp(source, "none") == 0) |
| 236 | return QE_CLK_NONE; |
| 237 | |
| 238 | if (strncasecmp(source, "brg", 3) == 0) { |
| 239 | i = simple_strtoul(source + 3, NULL, 10); |
| 240 | if ((i >= 1) && (i <= 16)) |
| 241 | return (QE_BRG1 - 1) + i; |
| 242 | else |
| 243 | return QE_CLK_DUMMY; |
| 244 | } |
| 245 | |
| 246 | if (strncasecmp(source, "clk", 3) == 0) { |
| 247 | i = simple_strtoul(source + 3, NULL, 10); |
| 248 | if ((i >= 1) && (i <= 24)) |
| 249 | return (QE_CLK1 - 1) + i; |
| 250 | else |
| 251 | return QE_CLK_DUMMY; |
| 252 | } |
| 253 | |
| 254 | return QE_CLK_DUMMY; |
| 255 | } |
| 256 | EXPORT_SYMBOL(qe_clock_source); |
| 257 | |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 258 | /* Initialize SNUMs (thread serial numbers) according to |
| 259 | * QE Module Control chapter, SNUM table |
| 260 | */ |
| 261 | static void qe_snums_init(void) |
| 262 | { |
| 263 | int i; |
| 264 | static const u8 snum_init[] = { |
| 265 | 0x04, 0x05, 0x0C, 0x0D, 0x14, 0x15, 0x1C, 0x1D, |
| 266 | 0x24, 0x25, 0x2C, 0x2D, 0x34, 0x35, 0x88, 0x89, |
| 267 | 0x98, 0x99, 0xA8, 0xA9, 0xB8, 0xB9, 0xC8, 0xC9, |
Haiying Wang | 98ca77a | 2009-05-01 15:40:48 -0400 | [diff] [blame] | 268 | 0xD8, 0xD9, 0xE8, 0xE9, 0x08, 0x09, 0x18, 0x19, |
| 269 | 0x28, 0x29, 0x38, 0x39, 0x48, 0x49, 0x58, 0x59, |
| 270 | 0x68, 0x69, 0x78, 0x79, 0x80, 0x81, |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 271 | }; |
| 272 | |
Haiying Wang | 98ca77a | 2009-05-01 15:40:48 -0400 | [diff] [blame] | 273 | qe_num_of_snum = qe_get_num_of_snums(); |
| 274 | |
| 275 | for (i = 0; i < qe_num_of_snum; i++) { |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 276 | snums[i].num = snum_init[i]; |
| 277 | snums[i].state = QE_SNUM_STATE_FREE; |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | int qe_get_snum(void) |
| 282 | { |
| 283 | unsigned long flags; |
| 284 | int snum = -EBUSY; |
| 285 | int i; |
| 286 | |
| 287 | spin_lock_irqsave(&qe_lock, flags); |
Haiying Wang | 98ca77a | 2009-05-01 15:40:48 -0400 | [diff] [blame] | 288 | for (i = 0; i < qe_num_of_snum; i++) { |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 289 | if (snums[i].state == QE_SNUM_STATE_FREE) { |
| 290 | snums[i].state = QE_SNUM_STATE_USED; |
| 291 | snum = snums[i].num; |
| 292 | break; |
| 293 | } |
| 294 | } |
| 295 | spin_unlock_irqrestore(&qe_lock, flags); |
| 296 | |
| 297 | return snum; |
| 298 | } |
| 299 | EXPORT_SYMBOL(qe_get_snum); |
| 300 | |
| 301 | void qe_put_snum(u8 snum) |
| 302 | { |
| 303 | int i; |
| 304 | |
Haiying Wang | 98ca77a | 2009-05-01 15:40:48 -0400 | [diff] [blame] | 305 | for (i = 0; i < qe_num_of_snum; i++) { |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 306 | if (snums[i].num == snum) { |
| 307 | snums[i].state = QE_SNUM_STATE_FREE; |
| 308 | break; |
| 309 | } |
| 310 | } |
| 311 | } |
| 312 | EXPORT_SYMBOL(qe_put_snum); |
| 313 | |
| 314 | static int qe_sdma_init(void) |
| 315 | { |
Andy Fleming | 7e1cc9c | 2008-05-07 13:19:44 -0500 | [diff] [blame] | 316 | struct sdma __iomem *sdma = &qe_immr->sdma; |
Timur Tabi | 4c35630 | 2007-05-08 14:46:36 -0500 | [diff] [blame] | 317 | unsigned long sdma_buf_offset; |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 318 | |
| 319 | if (!sdma) |
| 320 | return -ENODEV; |
| 321 | |
| 322 | /* allocate 2 internal temporary buffers (512 bytes size each) for |
| 323 | * the SDMA */ |
Chuck Meade | 7f013bc | 2007-03-27 10:46:10 -0400 | [diff] [blame] | 324 | sdma_buf_offset = qe_muram_alloc(512 * 2, 4096); |
Timur Tabi | 4c35630 | 2007-05-08 14:46:36 -0500 | [diff] [blame] | 325 | if (IS_ERR_VALUE(sdma_buf_offset)) |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 326 | return -ENOMEM; |
| 327 | |
Timur Tabi | 4c35630 | 2007-05-08 14:46:36 -0500 | [diff] [blame] | 328 | out_be32(&sdma->sdebcr, (u32) sdma_buf_offset & QE_SDEBCR_BA_MASK); |
Chuck Meade | 7f013bc | 2007-03-27 10:46:10 -0400 | [diff] [blame] | 329 | out_be32(&sdma->sdmr, (QE_SDMR_GLB_1_MSK | |
| 330 | (0x1 << QE_SDMR_CEN_SHIFT))); |
Li Yang | 9865853 | 2006-10-03 23:10:46 -0500 | [diff] [blame] | 331 | |
| 332 | return 0; |
| 333 | } |
| 334 | |
Timur Tabi | bc556ba | 2008-01-08 10:30:58 -0600 | [diff] [blame] | 335 | /* The maximum number of RISCs we support */ |
| 336 | #define MAX_QE_RISC 2 |
| 337 | |
| 338 | /* Firmware information stored here for qe_get_firmware_info() */ |
| 339 | static struct qe_firmware_info qe_firmware_info; |
| 340 | |
| 341 | /* |
| 342 | * Set to 1 if QE firmware has been uploaded, and therefore |
| 343 | * qe_firmware_info contains valid data. |
| 344 | */ |
| 345 | static int qe_firmware_uploaded; |
| 346 | |
| 347 | /* |
| 348 | * Upload a QE microcode |
| 349 | * |
| 350 | * This function is a worker function for qe_upload_firmware(). It does |
| 351 | * the actual uploading of the microcode. |
| 352 | */ |
| 353 | static void qe_upload_microcode(const void *base, |
| 354 | const struct qe_microcode *ucode) |
| 355 | { |
| 356 | const __be32 *code = base + be32_to_cpu(ucode->code_offset); |
| 357 | unsigned int i; |
| 358 | |
| 359 | if (ucode->major || ucode->minor || ucode->revision) |
| 360 | printk(KERN_INFO "qe-firmware: " |
| 361 | "uploading microcode '%s' version %u.%u.%u\n", |
| 362 | ucode->id, ucode->major, ucode->minor, ucode->revision); |
| 363 | else |
| 364 | printk(KERN_INFO "qe-firmware: " |
| 365 | "uploading microcode '%s'\n", ucode->id); |
| 366 | |
| 367 | /* Use auto-increment */ |
| 368 | out_be32(&qe_immr->iram.iadd, be32_to_cpu(ucode->iram_offset) | |
| 369 | QE_IRAM_IADD_AIE | QE_IRAM_IADD_BADDR); |
| 370 | |
| 371 | for (i = 0; i < be32_to_cpu(ucode->count); i++) |
| 372 | out_be32(&qe_immr->iram.idata, be32_to_cpu(code[i])); |
| 373 | } |
| 374 | |
| 375 | /* |
| 376 | * Upload a microcode to the I-RAM at a specific address. |
| 377 | * |
| 378 | * See Documentation/powerpc/qe-firmware.txt for information on QE microcode |
| 379 | * uploading. |
| 380 | * |
| 381 | * Currently, only version 1 is supported, so the 'version' field must be |
| 382 | * set to 1. |
| 383 | * |
| 384 | * The SOC model and revision are not validated, they are only displayed for |
| 385 | * informational purposes. |
| 386 | * |
| 387 | * 'calc_size' is the calculated size, in bytes, of the firmware structure and |
| 388 | * all of the microcode structures, minus the CRC. |
| 389 | * |
| 390 | * 'length' is the size that the structure says it is, including the CRC. |
| 391 | */ |
| 392 | int qe_upload_firmware(const struct qe_firmware *firmware) |
| 393 | { |
| 394 | unsigned int i; |
| 395 | unsigned int j; |
| 396 | u32 crc; |
| 397 | size_t calc_size = sizeof(struct qe_firmware); |
| 398 | size_t length; |
| 399 | const struct qe_header *hdr; |
| 400 | |
| 401 | if (!firmware) { |
| 402 | printk(KERN_ERR "qe-firmware: invalid pointer\n"); |
| 403 | return -EINVAL; |
| 404 | } |
| 405 | |
| 406 | hdr = &firmware->header; |
| 407 | length = be32_to_cpu(hdr->length); |
| 408 | |
| 409 | /* Check the magic */ |
| 410 | if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') || |
| 411 | (hdr->magic[2] != 'F')) { |
| 412 | printk(KERN_ERR "qe-firmware: not a microcode\n"); |
| 413 | return -EPERM; |
| 414 | } |
| 415 | |
| 416 | /* Check the version */ |
| 417 | if (hdr->version != 1) { |
| 418 | printk(KERN_ERR "qe-firmware: unsupported version\n"); |
| 419 | return -EPERM; |
| 420 | } |
| 421 | |
| 422 | /* Validate some of the fields */ |
Timur Tabi | 6f91316 | 2008-03-03 11:11:30 -0600 | [diff] [blame] | 423 | if ((firmware->count < 1) || (firmware->count > MAX_QE_RISC)) { |
Timur Tabi | bc556ba | 2008-01-08 10:30:58 -0600 | [diff] [blame] | 424 | printk(KERN_ERR "qe-firmware: invalid data\n"); |
| 425 | return -EINVAL; |
| 426 | } |
| 427 | |
| 428 | /* Validate the length and check if there's a CRC */ |
| 429 | calc_size += (firmware->count - 1) * sizeof(struct qe_microcode); |
| 430 | |
| 431 | for (i = 0; i < firmware->count; i++) |
| 432 | /* |
| 433 | * For situations where the second RISC uses the same microcode |
| 434 | * as the first, the 'code_offset' and 'count' fields will be |
| 435 | * zero, so it's okay to add those. |
| 436 | */ |
| 437 | calc_size += sizeof(__be32) * |
| 438 | be32_to_cpu(firmware->microcode[i].count); |
| 439 | |
| 440 | /* Validate the length */ |
| 441 | if (length != calc_size + sizeof(__be32)) { |
| 442 | printk(KERN_ERR "qe-firmware: invalid length\n"); |
| 443 | return -EPERM; |
| 444 | } |
| 445 | |
| 446 | /* Validate the CRC */ |
| 447 | crc = be32_to_cpu(*(__be32 *)((void *)firmware + calc_size)); |
| 448 | if (crc != crc32(0, firmware, calc_size)) { |
| 449 | printk(KERN_ERR "qe-firmware: firmware CRC is invalid\n"); |
| 450 | return -EIO; |
| 451 | } |
| 452 | |
| 453 | /* |
| 454 | * If the microcode calls for it, split the I-RAM. |
| 455 | */ |
| 456 | if (!firmware->split) |
| 457 | setbits16(&qe_immr->cp.cercr, QE_CP_CERCR_CIR); |
| 458 | |
| 459 | if (firmware->soc.model) |
| 460 | printk(KERN_INFO |
| 461 | "qe-firmware: firmware '%s' for %u V%u.%u\n", |
| 462 | firmware->id, be16_to_cpu(firmware->soc.model), |
| 463 | firmware->soc.major, firmware->soc.minor); |
| 464 | else |
| 465 | printk(KERN_INFO "qe-firmware: firmware '%s'\n", |
| 466 | firmware->id); |
| 467 | |
| 468 | /* |
| 469 | * The QE only supports one microcode per RISC, so clear out all the |
| 470 | * saved microcode information and put in the new. |
| 471 | */ |
| 472 | memset(&qe_firmware_info, 0, sizeof(qe_firmware_info)); |
| 473 | strcpy(qe_firmware_info.id, firmware->id); |
| 474 | qe_firmware_info.extended_modes = firmware->extended_modes; |
| 475 | memcpy(qe_firmware_info.vtraps, firmware->vtraps, |
| 476 | sizeof(firmware->vtraps)); |
| 477 | |
| 478 | /* Loop through each microcode. */ |
| 479 | for (i = 0; i < firmware->count; i++) { |
| 480 | const struct qe_microcode *ucode = &firmware->microcode[i]; |
| 481 | |
| 482 | /* Upload a microcode if it's present */ |
| 483 | if (ucode->code_offset) |
| 484 | qe_upload_microcode(firmware, ucode); |
| 485 | |
| 486 | /* Program the traps for this processor */ |
| 487 | for (j = 0; j < 16; j++) { |
| 488 | u32 trap = be32_to_cpu(ucode->traps[j]); |
| 489 | |
| 490 | if (trap) |
| 491 | out_be32(&qe_immr->rsp[i].tibcr[j], trap); |
| 492 | } |
| 493 | |
| 494 | /* Enable traps */ |
| 495 | out_be32(&qe_immr->rsp[i].eccr, be32_to_cpu(ucode->eccr)); |
| 496 | } |
| 497 | |
| 498 | qe_firmware_uploaded = 1; |
| 499 | |
| 500 | return 0; |
| 501 | } |
| 502 | EXPORT_SYMBOL(qe_upload_firmware); |
| 503 | |
| 504 | /* |
| 505 | * Get info on the currently-loaded firmware |
| 506 | * |
| 507 | * This function also checks the device tree to see if the boot loader has |
| 508 | * uploaded a firmware already. |
| 509 | */ |
| 510 | struct qe_firmware_info *qe_get_firmware_info(void) |
| 511 | { |
| 512 | static int initialized; |
| 513 | struct property *prop; |
| 514 | struct device_node *qe; |
| 515 | struct device_node *fw = NULL; |
| 516 | const char *sprop; |
| 517 | unsigned int i; |
| 518 | |
| 519 | /* |
| 520 | * If we haven't checked yet, and a driver hasn't uploaded a firmware |
| 521 | * yet, then check the device tree for information. |
| 522 | */ |
Ionut Nicu | 86f4e5d | 2008-03-07 19:27:59 +0200 | [diff] [blame] | 523 | if (qe_firmware_uploaded) |
| 524 | return &qe_firmware_info; |
| 525 | |
| 526 | if (initialized) |
Timur Tabi | bc556ba | 2008-01-08 10:30:58 -0600 | [diff] [blame] | 527 | return NULL; |
| 528 | |
| 529 | initialized = 1; |
| 530 | |
| 531 | /* |
| 532 | * Newer device trees have an "fsl,qe" compatible property for the QE |
| 533 | * node, but we still need to support older device trees. |
| 534 | */ |
| 535 | qe = of_find_compatible_node(NULL, NULL, "fsl,qe"); |
| 536 | if (!qe) { |
| 537 | qe = of_find_node_by_type(NULL, "qe"); |
| 538 | if (!qe) |
| 539 | return NULL; |
| 540 | } |
| 541 | |
| 542 | /* Find the 'firmware' child node */ |
| 543 | for_each_child_of_node(qe, fw) { |
| 544 | if (strcmp(fw->name, "firmware") == 0) |
| 545 | break; |
| 546 | } |
| 547 | |
| 548 | of_node_put(qe); |
| 549 | |
| 550 | /* Did we find the 'firmware' node? */ |
| 551 | if (!fw) |
| 552 | return NULL; |
| 553 | |
| 554 | qe_firmware_uploaded = 1; |
| 555 | |
| 556 | /* Copy the data into qe_firmware_info*/ |
| 557 | sprop = of_get_property(fw, "id", NULL); |
| 558 | if (sprop) |
| 559 | strncpy(qe_firmware_info.id, sprop, |
| 560 | sizeof(qe_firmware_info.id) - 1); |
| 561 | |
| 562 | prop = of_find_property(fw, "extended-modes", NULL); |
| 563 | if (prop && (prop->length == sizeof(u64))) { |
| 564 | const u64 *iprop = prop->value; |
| 565 | |
| 566 | qe_firmware_info.extended_modes = *iprop; |
| 567 | } |
| 568 | |
| 569 | prop = of_find_property(fw, "virtual-traps", NULL); |
| 570 | if (prop && (prop->length == 32)) { |
| 571 | const u32 *iprop = prop->value; |
| 572 | |
| 573 | for (i = 0; i < ARRAY_SIZE(qe_firmware_info.vtraps); i++) |
| 574 | qe_firmware_info.vtraps[i] = iprop[i]; |
| 575 | } |
| 576 | |
| 577 | of_node_put(fw); |
| 578 | |
| 579 | return &qe_firmware_info; |
| 580 | } |
| 581 | EXPORT_SYMBOL(qe_get_firmware_info); |
| 582 | |
Haiying Wang | 06c4435 | 2009-05-01 15:40:47 -0400 | [diff] [blame] | 583 | unsigned int qe_get_num_of_risc(void) |
| 584 | { |
| 585 | struct device_node *qe; |
| 586 | int size; |
| 587 | unsigned int num_of_risc = 0; |
| 588 | const u32 *prop; |
| 589 | |
| 590 | qe = of_find_compatible_node(NULL, NULL, "fsl,qe"); |
| 591 | if (!qe) { |
| 592 | /* Older devices trees did not have an "fsl,qe" |
| 593 | * compatible property, so we need to look for |
| 594 | * the QE node by name. |
| 595 | */ |
| 596 | qe = of_find_node_by_type(NULL, "qe"); |
| 597 | if (!qe) |
| 598 | return num_of_risc; |
| 599 | } |
| 600 | |
| 601 | prop = of_get_property(qe, "fsl,qe-num-riscs", &size); |
| 602 | if (prop && size == sizeof(*prop)) |
| 603 | num_of_risc = *prop; |
| 604 | |
| 605 | of_node_put(qe); |
| 606 | |
| 607 | return num_of_risc; |
| 608 | } |
| 609 | EXPORT_SYMBOL(qe_get_num_of_risc); |
| 610 | |
Haiying Wang | 98ca77a | 2009-05-01 15:40:48 -0400 | [diff] [blame] | 611 | unsigned int qe_get_num_of_snums(void) |
| 612 | { |
| 613 | struct device_node *qe; |
| 614 | int size; |
| 615 | unsigned int num_of_snums; |
| 616 | const u32 *prop; |
| 617 | |
| 618 | num_of_snums = 28; /* The default number of snum for threads is 28 */ |
| 619 | qe = of_find_compatible_node(NULL, NULL, "fsl,qe"); |
| 620 | if (!qe) { |
| 621 | /* Older devices trees did not have an "fsl,qe" |
| 622 | * compatible property, so we need to look for |
| 623 | * the QE node by name. |
| 624 | */ |
| 625 | qe = of_find_node_by_type(NULL, "qe"); |
| 626 | if (!qe) |
| 627 | return num_of_snums; |
| 628 | } |
| 629 | |
| 630 | prop = of_get_property(qe, "fsl,qe-num-snums", &size); |
| 631 | if (prop && size == sizeof(*prop)) { |
| 632 | num_of_snums = *prop; |
| 633 | if ((num_of_snums < 28) || (num_of_snums > QE_NUM_OF_SNUM)) { |
| 634 | /* No QE ever has fewer than 28 SNUMs */ |
| 635 | pr_err("QE: number of snum is invalid\n"); |
| 636 | return -EINVAL; |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | of_node_put(qe); |
| 641 | |
| 642 | return num_of_snums; |
| 643 | } |
| 644 | EXPORT_SYMBOL(qe_get_num_of_snums); |