blob: dc26cdd653ad4a585bee9ebb23c3202103d14d8f [file] [log] [blame]
Ian Munsief204e0b2014-10-08 19:55:02 +11001/*
2 * Copyright 2014 IBM Corp.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9
10#include <linux/pci_regs.h>
11#include <linux/pci_ids.h>
12#include <linux/device.h>
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/slab.h>
16#include <linux/sort.h>
17#include <linux/pci.h>
18#include <linux/of.h>
19#include <linux/delay.h>
20#include <asm/opal.h>
21#include <asm/msi_bitmap.h>
22#include <asm/pci-bridge.h> /* for struct pci_controller */
23#include <asm/pnv-pci.h>
Ryan Grimm62fa19d2015-01-19 11:52:51 -060024#include <asm/io.h>
Ian Munsief204e0b2014-10-08 19:55:02 +110025
26#include "cxl.h"
27
28
29#define CXL_PCI_VSEC_ID 0x1280
30#define CXL_VSEC_MIN_SIZE 0x80
31
32#define CXL_READ_VSEC_LENGTH(dev, vsec, dest) \
33 { \
34 pci_read_config_word(dev, vsec + 0x6, dest); \
35 *dest >>= 4; \
36 }
37#define CXL_READ_VSEC_NAFUS(dev, vsec, dest) \
38 pci_read_config_byte(dev, vsec + 0x8, dest)
39
40#define CXL_READ_VSEC_STATUS(dev, vsec, dest) \
41 pci_read_config_byte(dev, vsec + 0x9, dest)
42#define CXL_STATUS_SECOND_PORT 0x80
43#define CXL_STATUS_MSI_X_FULL 0x40
44#define CXL_STATUS_MSI_X_SINGLE 0x20
45#define CXL_STATUS_FLASH_RW 0x08
46#define CXL_STATUS_FLASH_RO 0x04
47#define CXL_STATUS_LOADABLE_AFU 0x02
48#define CXL_STATUS_LOADABLE_PSL 0x01
49/* If we see these features we won't try to use the card */
50#define CXL_UNSUPPORTED_FEATURES \
51 (CXL_STATUS_MSI_X_FULL | CXL_STATUS_MSI_X_SINGLE)
52
53#define CXL_READ_VSEC_MODE_CONTROL(dev, vsec, dest) \
54 pci_read_config_byte(dev, vsec + 0xa, dest)
55#define CXL_WRITE_VSEC_MODE_CONTROL(dev, vsec, val) \
56 pci_write_config_byte(dev, vsec + 0xa, val)
57#define CXL_VSEC_PROTOCOL_MASK 0xe0
58#define CXL_VSEC_PROTOCOL_1024TB 0x80
59#define CXL_VSEC_PROTOCOL_512TB 0x40
60#define CXL_VSEC_PROTOCOL_256TB 0x20 /* Power 8 uses this */
61#define CXL_VSEC_PROTOCOL_ENABLE 0x01
62
63#define CXL_READ_VSEC_PSL_REVISION(dev, vsec, dest) \
64 pci_read_config_word(dev, vsec + 0xc, dest)
65#define CXL_READ_VSEC_CAIA_MINOR(dev, vsec, dest) \
66 pci_read_config_byte(dev, vsec + 0xe, dest)
67#define CXL_READ_VSEC_CAIA_MAJOR(dev, vsec, dest) \
68 pci_read_config_byte(dev, vsec + 0xf, dest)
69#define CXL_READ_VSEC_BASE_IMAGE(dev, vsec, dest) \
70 pci_read_config_word(dev, vsec + 0x10, dest)
71
72#define CXL_READ_VSEC_IMAGE_STATE(dev, vsec, dest) \
73 pci_read_config_byte(dev, vsec + 0x13, dest)
74#define CXL_WRITE_VSEC_IMAGE_STATE(dev, vsec, val) \
75 pci_write_config_byte(dev, vsec + 0x13, val)
76#define CXL_VSEC_USER_IMAGE_LOADED 0x80 /* RO */
77#define CXL_VSEC_PERST_LOADS_IMAGE 0x20 /* RW */
78#define CXL_VSEC_PERST_SELECT_USER 0x10 /* RW */
79
80#define CXL_READ_VSEC_AFU_DESC_OFF(dev, vsec, dest) \
81 pci_read_config_dword(dev, vsec + 0x20, dest)
82#define CXL_READ_VSEC_AFU_DESC_SIZE(dev, vsec, dest) \
83 pci_read_config_dword(dev, vsec + 0x24, dest)
84#define CXL_READ_VSEC_PS_OFF(dev, vsec, dest) \
85 pci_read_config_dword(dev, vsec + 0x28, dest)
86#define CXL_READ_VSEC_PS_SIZE(dev, vsec, dest) \
87 pci_read_config_dword(dev, vsec + 0x2c, dest)
88
89
90/* This works a little different than the p1/p2 register accesses to make it
91 * easier to pull out individual fields */
92#define AFUD_READ(afu, off) in_be64(afu->afu_desc_mmio + off)
Michael Neulingbfcdc8f2015-05-27 16:07:06 +100093#define AFUD_READ_LE(afu, off) in_le64(afu->afu_desc_mmio + off)
Ian Munsief204e0b2014-10-08 19:55:02 +110094#define EXTRACT_PPC_BIT(val, bit) (!!(val & PPC_BIT(bit)))
95#define EXTRACT_PPC_BITS(val, bs, be) ((val & PPC_BITMASK(bs, be)) >> PPC_BITLSHIFT(be))
96
97#define AFUD_READ_INFO(afu) AFUD_READ(afu, 0x0)
98#define AFUD_NUM_INTS_PER_PROC(val) EXTRACT_PPC_BITS(val, 0, 15)
99#define AFUD_NUM_PROCS(val) EXTRACT_PPC_BITS(val, 16, 31)
100#define AFUD_NUM_CRS(val) EXTRACT_PPC_BITS(val, 32, 47)
101#define AFUD_MULTIMODE(val) EXTRACT_PPC_BIT(val, 48)
102#define AFUD_PUSH_BLOCK_TRANSFER(val) EXTRACT_PPC_BIT(val, 55)
103#define AFUD_DEDICATED_PROCESS(val) EXTRACT_PPC_BIT(val, 59)
104#define AFUD_AFU_DIRECTED(val) EXTRACT_PPC_BIT(val, 61)
105#define AFUD_TIME_SLICED(val) EXTRACT_PPC_BIT(val, 63)
106#define AFUD_READ_CR(afu) AFUD_READ(afu, 0x20)
107#define AFUD_CR_LEN(val) EXTRACT_PPC_BITS(val, 8, 63)
108#define AFUD_READ_CR_OFF(afu) AFUD_READ(afu, 0x28)
109#define AFUD_READ_PPPSA(afu) AFUD_READ(afu, 0x30)
110#define AFUD_PPPSA_PP(val) EXTRACT_PPC_BIT(val, 6)
111#define AFUD_PPPSA_PSA(val) EXTRACT_PPC_BIT(val, 7)
112#define AFUD_PPPSA_LEN(val) EXTRACT_PPC_BITS(val, 8, 63)
113#define AFUD_READ_PPPSA_OFF(afu) AFUD_READ(afu, 0x38)
114#define AFUD_READ_EB(afu) AFUD_READ(afu, 0x40)
115#define AFUD_EB_LEN(val) EXTRACT_PPC_BITS(val, 8, 63)
116#define AFUD_READ_EB_OFF(afu) AFUD_READ(afu, 0x48)
117
Ian Munsieb087e612015-02-04 19:09:01 +1100118u16 cxl_afu_cr_read16(struct cxl_afu *afu, int cr, u64 off)
119{
120 u64 aligned_off = off & ~0x3L;
121 u32 val;
122
123 val = cxl_afu_cr_read32(afu, cr, aligned_off);
124 return (val >> ((off & 0x2) * 8)) & 0xffff;
125}
126
127u8 cxl_afu_cr_read8(struct cxl_afu *afu, int cr, u64 off)
128{
129 u64 aligned_off = off & ~0x3L;
130 u32 val;
131
132 val = cxl_afu_cr_read32(afu, cr, aligned_off);
133 return (val >> ((off & 0x3) * 8)) & 0xff;
134}
135
Ian Munsief204e0b2014-10-08 19:55:02 +1100136static DEFINE_PCI_DEVICE_TABLE(cxl_pci_tbl) = {
137 { PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x0477), },
138 { PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x044b), },
139 { PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x04cf), },
140 { PCI_DEVICE_CLASS(0x120000, ~0), },
141
142 { }
143};
144MODULE_DEVICE_TABLE(pci, cxl_pci_tbl);
145
146
147/*
148 * Mostly using these wrappers to avoid confusion:
149 * priv 1 is BAR2, while priv 2 is BAR0
150 */
151static inline resource_size_t p1_base(struct pci_dev *dev)
152{
153 return pci_resource_start(dev, 2);
154}
155
156static inline resource_size_t p1_size(struct pci_dev *dev)
157{
158 return pci_resource_len(dev, 2);
159}
160
161static inline resource_size_t p2_base(struct pci_dev *dev)
162{
163 return pci_resource_start(dev, 0);
164}
165
166static inline resource_size_t p2_size(struct pci_dev *dev)
167{
168 return pci_resource_len(dev, 0);
169}
170
171static int find_cxl_vsec(struct pci_dev *dev)
172{
173 int vsec = 0;
174 u16 val;
175
176 while ((vsec = pci_find_next_ext_capability(dev, vsec, PCI_EXT_CAP_ID_VNDR))) {
177 pci_read_config_word(dev, vsec + 0x4, &val);
178 if (val == CXL_PCI_VSEC_ID)
179 return vsec;
180 }
181 return 0;
182
183}
184
185static void dump_cxl_config_space(struct pci_dev *dev)
186{
187 int vsec;
188 u32 val;
189
190 dev_info(&dev->dev, "dump_cxl_config_space\n");
191
192 pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, &val);
193 dev_info(&dev->dev, "BAR0: %#.8x\n", val);
194 pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, &val);
195 dev_info(&dev->dev, "BAR1: %#.8x\n", val);
196 pci_read_config_dword(dev, PCI_BASE_ADDRESS_2, &val);
197 dev_info(&dev->dev, "BAR2: %#.8x\n", val);
198 pci_read_config_dword(dev, PCI_BASE_ADDRESS_3, &val);
199 dev_info(&dev->dev, "BAR3: %#.8x\n", val);
200 pci_read_config_dword(dev, PCI_BASE_ADDRESS_4, &val);
201 dev_info(&dev->dev, "BAR4: %#.8x\n", val);
202 pci_read_config_dword(dev, PCI_BASE_ADDRESS_5, &val);
203 dev_info(&dev->dev, "BAR5: %#.8x\n", val);
204
205 dev_info(&dev->dev, "p1 regs: %#llx, len: %#llx\n",
206 p1_base(dev), p1_size(dev));
207 dev_info(&dev->dev, "p2 regs: %#llx, len: %#llx\n",
Michael Neulingf2931062015-06-18 15:15:10 +1000208 p2_base(dev), p2_size(dev));
Ian Munsief204e0b2014-10-08 19:55:02 +1100209 dev_info(&dev->dev, "BAR 4/5: %#llx, len: %#llx\n",
210 pci_resource_start(dev, 4), pci_resource_len(dev, 4));
211
212 if (!(vsec = find_cxl_vsec(dev)))
213 return;
214
215#define show_reg(name, what) \
216 dev_info(&dev->dev, "cxl vsec: %30s: %#x\n", name, what)
217
218 pci_read_config_dword(dev, vsec + 0x0, &val);
219 show_reg("Cap ID", (val >> 0) & 0xffff);
220 show_reg("Cap Ver", (val >> 16) & 0xf);
221 show_reg("Next Cap Ptr", (val >> 20) & 0xfff);
222 pci_read_config_dword(dev, vsec + 0x4, &val);
223 show_reg("VSEC ID", (val >> 0) & 0xffff);
224 show_reg("VSEC Rev", (val >> 16) & 0xf);
225 show_reg("VSEC Length", (val >> 20) & 0xfff);
226 pci_read_config_dword(dev, vsec + 0x8, &val);
227 show_reg("Num AFUs", (val >> 0) & 0xff);
228 show_reg("Status", (val >> 8) & 0xff);
229 show_reg("Mode Control", (val >> 16) & 0xff);
230 show_reg("Reserved", (val >> 24) & 0xff);
231 pci_read_config_dword(dev, vsec + 0xc, &val);
232 show_reg("PSL Rev", (val >> 0) & 0xffff);
233 show_reg("CAIA Ver", (val >> 16) & 0xffff);
234 pci_read_config_dword(dev, vsec + 0x10, &val);
235 show_reg("Base Image Rev", (val >> 0) & 0xffff);
236 show_reg("Reserved", (val >> 16) & 0x0fff);
237 show_reg("Image Control", (val >> 28) & 0x3);
238 show_reg("Reserved", (val >> 30) & 0x1);
239 show_reg("Image Loaded", (val >> 31) & 0x1);
240
241 pci_read_config_dword(dev, vsec + 0x14, &val);
242 show_reg("Reserved", val);
243 pci_read_config_dword(dev, vsec + 0x18, &val);
244 show_reg("Reserved", val);
245 pci_read_config_dword(dev, vsec + 0x1c, &val);
246 show_reg("Reserved", val);
247
248 pci_read_config_dword(dev, vsec + 0x20, &val);
249 show_reg("AFU Descriptor Offset", val);
250 pci_read_config_dword(dev, vsec + 0x24, &val);
251 show_reg("AFU Descriptor Size", val);
252 pci_read_config_dword(dev, vsec + 0x28, &val);
253 show_reg("Problem State Offset", val);
254 pci_read_config_dword(dev, vsec + 0x2c, &val);
255 show_reg("Problem State Size", val);
256
257 pci_read_config_dword(dev, vsec + 0x30, &val);
258 show_reg("Reserved", val);
259 pci_read_config_dword(dev, vsec + 0x34, &val);
260 show_reg("Reserved", val);
261 pci_read_config_dword(dev, vsec + 0x38, &val);
262 show_reg("Reserved", val);
263 pci_read_config_dword(dev, vsec + 0x3c, &val);
264 show_reg("Reserved", val);
265
266 pci_read_config_dword(dev, vsec + 0x40, &val);
267 show_reg("PSL Programming Port", val);
268 pci_read_config_dword(dev, vsec + 0x44, &val);
269 show_reg("PSL Programming Control", val);
270
271 pci_read_config_dword(dev, vsec + 0x48, &val);
272 show_reg("Reserved", val);
273 pci_read_config_dword(dev, vsec + 0x4c, &val);
274 show_reg("Reserved", val);
275
276 pci_read_config_dword(dev, vsec + 0x50, &val);
277 show_reg("Flash Address Register", val);
278 pci_read_config_dword(dev, vsec + 0x54, &val);
279 show_reg("Flash Size Register", val);
280 pci_read_config_dword(dev, vsec + 0x58, &val);
281 show_reg("Flash Status/Control Register", val);
282 pci_read_config_dword(dev, vsec + 0x58, &val);
283 show_reg("Flash Data Port", val);
284
285#undef show_reg
286}
287
288static void dump_afu_descriptor(struct cxl_afu *afu)
289{
Michael Neulingbfcdc8f2015-05-27 16:07:06 +1000290 u64 val, afu_cr_num, afu_cr_off, afu_cr_len;
291 int i;
Ian Munsief204e0b2014-10-08 19:55:02 +1100292
293#define show_reg(name, what) \
294 dev_info(&afu->dev, "afu desc: %30s: %#llx\n", name, what)
295
296 val = AFUD_READ_INFO(afu);
297 show_reg("num_ints_per_process", AFUD_NUM_INTS_PER_PROC(val));
298 show_reg("num_of_processes", AFUD_NUM_PROCS(val));
299 show_reg("num_of_afu_CRs", AFUD_NUM_CRS(val));
300 show_reg("req_prog_mode", val & 0xffffULL);
Michael Neulingbfcdc8f2015-05-27 16:07:06 +1000301 afu_cr_num = AFUD_NUM_CRS(val);
Ian Munsief204e0b2014-10-08 19:55:02 +1100302
303 val = AFUD_READ(afu, 0x8);
304 show_reg("Reserved", val);
305 val = AFUD_READ(afu, 0x10);
306 show_reg("Reserved", val);
307 val = AFUD_READ(afu, 0x18);
308 show_reg("Reserved", val);
309
310 val = AFUD_READ_CR(afu);
311 show_reg("Reserved", (val >> (63-7)) & 0xff);
312 show_reg("AFU_CR_len", AFUD_CR_LEN(val));
Michael Neulingbfcdc8f2015-05-27 16:07:06 +1000313 afu_cr_len = AFUD_CR_LEN(val) * 256;
Ian Munsief204e0b2014-10-08 19:55:02 +1100314
315 val = AFUD_READ_CR_OFF(afu);
Michael Neulingbfcdc8f2015-05-27 16:07:06 +1000316 afu_cr_off = val;
Ian Munsief204e0b2014-10-08 19:55:02 +1100317 show_reg("AFU_CR_offset", val);
318
319 val = AFUD_READ_PPPSA(afu);
320 show_reg("PerProcessPSA_control", (val >> (63-7)) & 0xff);
321 show_reg("PerProcessPSA Length", AFUD_PPPSA_LEN(val));
322
323 val = AFUD_READ_PPPSA_OFF(afu);
324 show_reg("PerProcessPSA_offset", val);
325
326 val = AFUD_READ_EB(afu);
327 show_reg("Reserved", (val >> (63-7)) & 0xff);
328 show_reg("AFU_EB_len", AFUD_EB_LEN(val));
329
330 val = AFUD_READ_EB_OFF(afu);
331 show_reg("AFU_EB_offset", val);
332
Michael Neulingbfcdc8f2015-05-27 16:07:06 +1000333 for (i = 0; i < afu_cr_num; i++) {
334 val = AFUD_READ_LE(afu, afu_cr_off + i * afu_cr_len);
335 show_reg("CR Vendor", val & 0xffff);
336 show_reg("CR Device", (val >> 16) & 0xffff);
337 }
Ian Munsief204e0b2014-10-08 19:55:02 +1100338#undef show_reg
339}
340
341static int init_implementation_adapter_regs(struct cxl *adapter, struct pci_dev *dev)
342{
343 struct device_node *np;
344 const __be32 *prop;
345 u64 psl_dsnctl;
346 u64 chipid;
347
Ryan Grimm6f963ec2015-01-28 20:16:04 -0600348 if (!(np = pnv_pci_get_phb_node(dev)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100349 return -ENODEV;
350
351 while (np && !(prop = of_get_property(np, "ibm,chip-id", NULL)))
352 np = of_get_next_parent(np);
353 if (!np)
354 return -ENODEV;
355 chipid = be32_to_cpup(prop);
356 of_node_put(np);
357
358 /* Tell PSL where to route data to */
359 psl_dsnctl = 0x02E8900002000000ULL | (chipid << (63-5));
360 cxl_p1_write(adapter, CXL_PSL_DSNDCTL, psl_dsnctl);
361 cxl_p1_write(adapter, CXL_PSL_RESLCKTO, 0x20000000200ULL);
362 /* snoop write mask */
363 cxl_p1_write(adapter, CXL_PSL_SNWRALLOC, 0x00000000FFFFFFFFULL);
364 /* set fir_accum */
365 cxl_p1_write(adapter, CXL_PSL_FIR_CNTL, 0x0800000000000000ULL);
366 /* for debugging with trace arrays */
367 cxl_p1_write(adapter, CXL_PSL_TRACE, 0x0000FF7C00000000ULL);
368
369 return 0;
370}
371
372static int init_implementation_afu_regs(struct cxl_afu *afu)
373{
374 /* read/write masks for this slice */
375 cxl_p1n_write(afu, CXL_PSL_APCALLOC_A, 0xFFFFFFFEFEFEFEFEULL);
376 /* APC read/write masks for this slice */
377 cxl_p1n_write(afu, CXL_PSL_COALLOC_A, 0xFF000000FEFEFEFEULL);
378 /* for debugging with trace arrays */
379 cxl_p1n_write(afu, CXL_PSL_SLICE_TRACE, 0x0000FFFF00000000ULL);
Ian Munsied6a6af22014-12-08 19:17:59 +1100380 cxl_p1n_write(afu, CXL_PSL_RXCTL_A, CXL_PSL_RXCTL_AFUHP_4S);
Ian Munsief204e0b2014-10-08 19:55:02 +1100381
382 return 0;
383}
384
385int cxl_setup_irq(struct cxl *adapter, unsigned int hwirq,
386 unsigned int virq)
387{
388 struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
389
390 return pnv_cxl_ioda_msi_setup(dev, hwirq, virq);
391}
392
Ryan Grimm4beb5422015-01-19 11:52:48 -0600393int cxl_update_image_control(struct cxl *adapter)
394{
395 struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
396 int rc;
397 int vsec;
398 u8 image_state;
399
400 if (!(vsec = find_cxl_vsec(dev))) {
401 dev_err(&dev->dev, "ABORTING: CXL VSEC not found!\n");
402 return -ENODEV;
403 }
404
405 if ((rc = CXL_READ_VSEC_IMAGE_STATE(dev, vsec, &image_state))) {
406 dev_err(&dev->dev, "failed to read image state: %i\n", rc);
407 return rc;
408 }
409
410 if (adapter->perst_loads_image)
411 image_state |= CXL_VSEC_PERST_LOADS_IMAGE;
412 else
413 image_state &= ~CXL_VSEC_PERST_LOADS_IMAGE;
414
415 if (adapter->perst_select_user)
416 image_state |= CXL_VSEC_PERST_SELECT_USER;
417 else
418 image_state &= ~CXL_VSEC_PERST_SELECT_USER;
419
420 if ((rc = CXL_WRITE_VSEC_IMAGE_STATE(dev, vsec, image_state))) {
421 dev_err(&dev->dev, "failed to update image control: %i\n", rc);
422 return rc;
423 }
424
425 return 0;
426}
427
Ian Munsief204e0b2014-10-08 19:55:02 +1100428int cxl_alloc_one_irq(struct cxl *adapter)
429{
430 struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
431
432 return pnv_cxl_alloc_hwirqs(dev, 1);
433}
434
435void cxl_release_one_irq(struct cxl *adapter, int hwirq)
436{
437 struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
438
439 return pnv_cxl_release_hwirqs(dev, hwirq, 1);
440}
441
442int cxl_alloc_irq_ranges(struct cxl_irq_ranges *irqs, struct cxl *adapter, unsigned int num)
443{
444 struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
445
446 return pnv_cxl_alloc_hwirq_ranges(irqs, dev, num);
447}
448
449void cxl_release_irq_ranges(struct cxl_irq_ranges *irqs, struct cxl *adapter)
450{
451 struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
452
453 pnv_cxl_release_hwirq_ranges(irqs, dev);
454}
455
456static int setup_cxl_bars(struct pci_dev *dev)
457{
458 /* Safety check in case we get backported to < 3.17 without M64 */
459 if ((p1_base(dev) < 0x100000000ULL) ||
460 (p2_base(dev) < 0x100000000ULL)) {
461 dev_err(&dev->dev, "ABORTING: M32 BAR assignment incompatible with CXL\n");
462 return -ENODEV;
463 }
464
465 /*
466 * BAR 4/5 has a special meaning for CXL and must be programmed with a
467 * special value corresponding to the CXL protocol address range.
468 * For POWER 8 that means bits 48:49 must be set to 10
469 */
470 pci_write_config_dword(dev, PCI_BASE_ADDRESS_4, 0x00000000);
471 pci_write_config_dword(dev, PCI_BASE_ADDRESS_5, 0x00020000);
472
473 return 0;
474}
475
476/* pciex node: ibm,opal-m64-window = <0x3d058 0x0 0x3d058 0x0 0x8 0x0>; */
477static int switch_card_to_cxl(struct pci_dev *dev)
478{
479 int vsec;
480 u8 val;
481 int rc;
482
483 dev_info(&dev->dev, "switch card to CXL\n");
484
485 if (!(vsec = find_cxl_vsec(dev))) {
486 dev_err(&dev->dev, "ABORTING: CXL VSEC not found!\n");
487 return -ENODEV;
488 }
489
490 if ((rc = CXL_READ_VSEC_MODE_CONTROL(dev, vsec, &val))) {
491 dev_err(&dev->dev, "failed to read current mode control: %i", rc);
492 return rc;
493 }
494 val &= ~CXL_VSEC_PROTOCOL_MASK;
495 val |= CXL_VSEC_PROTOCOL_256TB | CXL_VSEC_PROTOCOL_ENABLE;
496 if ((rc = CXL_WRITE_VSEC_MODE_CONTROL(dev, vsec, val))) {
497 dev_err(&dev->dev, "failed to enable CXL protocol: %i", rc);
498 return rc;
499 }
500 /*
501 * The CAIA spec (v0.12 11.6 Bi-modal Device Support) states
502 * we must wait 100ms after this mode switch before touching
503 * PCIe config space.
504 */
505 msleep(100);
506
507 return 0;
508}
509
510static int cxl_map_slice_regs(struct cxl_afu *afu, struct cxl *adapter, struct pci_dev *dev)
511{
512 u64 p1n_base, p2n_base, afu_desc;
513 const u64 p1n_size = 0x100;
514 const u64 p2n_size = 0x1000;
515
516 p1n_base = p1_base(dev) + 0x10000 + (afu->slice * p1n_size);
517 p2n_base = p2_base(dev) + (afu->slice * p2n_size);
518 afu->psn_phys = p2_base(dev) + (adapter->ps_off + (afu->slice * adapter->ps_size));
519 afu_desc = p2_base(dev) + adapter->afu_desc_off + (afu->slice * adapter->afu_desc_size);
520
521 if (!(afu->p1n_mmio = ioremap(p1n_base, p1n_size)))
522 goto err;
523 if (!(afu->p2n_mmio = ioremap(p2n_base, p2n_size)))
524 goto err1;
525 if (afu_desc) {
526 if (!(afu->afu_desc_mmio = ioremap(afu_desc, adapter->afu_desc_size)))
527 goto err2;
528 }
529
530 return 0;
531err2:
532 iounmap(afu->p2n_mmio);
533err1:
534 iounmap(afu->p1n_mmio);
535err:
536 dev_err(&afu->dev, "Error mapping AFU MMIO regions\n");
537 return -ENOMEM;
538}
539
540static void cxl_unmap_slice_regs(struct cxl_afu *afu)
541{
Daniel Axtens8c00d5c2015-07-02 15:55:21 +1000542 if (afu->p2n_mmio)
Ian Munsief204e0b2014-10-08 19:55:02 +1100543 iounmap(afu->p2n_mmio);
544 if (afu->p1n_mmio)
545 iounmap(afu->p1n_mmio);
546}
547
548static void cxl_release_afu(struct device *dev)
549{
550 struct cxl_afu *afu = to_cxl_afu(dev);
551
552 pr_devel("cxl_release_afu\n");
553
Johannes Thumshirnbd664f82015-07-09 09:39:42 +0200554 idr_destroy(&afu->contexts_idr);
Daniel Axtens051557722015-08-14 17:41:19 +1000555 cxl_release_spa(afu);
556
Ian Munsief204e0b2014-10-08 19:55:02 +1100557 kfree(afu);
558}
559
560static struct cxl_afu *cxl_alloc_afu(struct cxl *adapter, int slice)
561{
562 struct cxl_afu *afu;
563
564 if (!(afu = kzalloc(sizeof(struct cxl_afu), GFP_KERNEL)))
565 return NULL;
566
567 afu->adapter = adapter;
568 afu->dev.parent = &adapter->dev;
569 afu->dev.release = cxl_release_afu;
570 afu->slice = slice;
571 idr_init(&afu->contexts_idr);
Ian Munsieee41d112014-12-08 19:17:55 +1100572 mutex_init(&afu->contexts_lock);
Ian Munsief204e0b2014-10-08 19:55:02 +1100573 spin_lock_init(&afu->afu_cntl_lock);
574 mutex_init(&afu->spa_mutex);
575
576 afu->prefault_mode = CXL_PREFAULT_NONE;
577 afu->irqs_max = afu->adapter->user_irqs;
578
579 return afu;
580}
581
582/* Expects AFU struct to have recently been zeroed out */
583static int cxl_read_afu_descriptor(struct cxl_afu *afu)
584{
585 u64 val;
586
587 val = AFUD_READ_INFO(afu);
588 afu->pp_irqs = AFUD_NUM_INTS_PER_PROC(val);
589 afu->max_procs_virtualised = AFUD_NUM_PROCS(val);
Ian Munsieb087e612015-02-04 19:09:01 +1100590 afu->crs_num = AFUD_NUM_CRS(val);
Ian Munsief204e0b2014-10-08 19:55:02 +1100591
592 if (AFUD_AFU_DIRECTED(val))
593 afu->modes_supported |= CXL_MODE_DIRECTED;
594 if (AFUD_DEDICATED_PROCESS(val))
595 afu->modes_supported |= CXL_MODE_DEDICATED;
596 if (AFUD_TIME_SLICED(val))
597 afu->modes_supported |= CXL_MODE_TIME_SLICED;
598
599 val = AFUD_READ_PPPSA(afu);
600 afu->pp_size = AFUD_PPPSA_LEN(val) * 4096;
601 afu->psa = AFUD_PPPSA_PSA(val);
602 if ((afu->pp_psa = AFUD_PPPSA_PP(val)))
603 afu->pp_offset = AFUD_READ_PPPSA_OFF(afu);
604
Ian Munsieb087e612015-02-04 19:09:01 +1100605 val = AFUD_READ_CR(afu);
606 afu->crs_len = AFUD_CR_LEN(val) * 256;
607 afu->crs_offset = AFUD_READ_CR_OFF(afu);
608
Vaibhav Jaine36f6fe2015-05-22 10:56:05 +0530609
610 /* eb_len is in multiple of 4K */
611 afu->eb_len = AFUD_EB_LEN(AFUD_READ_EB(afu)) * 4096;
612 afu->eb_offset = AFUD_READ_EB_OFF(afu);
613
614 /* eb_off is 4K aligned so lower 12 bits are always zero */
615 if (EXTRACT_PPC_BITS(afu->eb_offset, 0, 11) != 0) {
616 dev_warn(&afu->dev,
617 "Invalid AFU error buffer offset %Lx\n",
618 afu->eb_offset);
619 dev_info(&afu->dev,
620 "Ignoring AFU error buffer in the descriptor\n");
621 /* indicate that no afu buffer exists */
622 afu->eb_len = 0;
623 }
624
Ian Munsief204e0b2014-10-08 19:55:02 +1100625 return 0;
626}
627
628static int cxl_afu_descriptor_looks_ok(struct cxl_afu *afu)
629{
Ian Munsie3d5be032015-02-04 19:09:02 +1100630 int i;
631
Ian Munsief204e0b2014-10-08 19:55:02 +1100632 if (afu->psa && afu->adapter->ps_size <
633 (afu->pp_offset + afu->pp_size*afu->max_procs_virtualised)) {
634 dev_err(&afu->dev, "per-process PSA can't fit inside the PSA!\n");
635 return -ENODEV;
636 }
637
638 if (afu->pp_psa && (afu->pp_size < PAGE_SIZE))
639 dev_warn(&afu->dev, "AFU uses < PAGE_SIZE per-process PSA!");
640
Ian Munsie3d5be032015-02-04 19:09:02 +1100641 for (i = 0; i < afu->crs_num; i++) {
642 if ((cxl_afu_cr_read32(afu, i, 0) == 0)) {
643 dev_err(&afu->dev, "ABORTING: AFU configuration record %i is invalid\n", i);
644 return -EINVAL;
645 }
646 }
647
Ian Munsief204e0b2014-10-08 19:55:02 +1100648 return 0;
649}
650
651static int sanitise_afu_regs(struct cxl_afu *afu)
652{
653 u64 reg;
654
655 /*
656 * Clear out any regs that contain either an IVTE or address or may be
657 * waiting on an acknowledgement to try to be a bit safer as we bring
658 * it online
659 */
660 reg = cxl_p2n_read(afu, CXL_AFU_Cntl_An);
661 if ((reg & CXL_AFU_Cntl_An_ES_MASK) != CXL_AFU_Cntl_An_ES_Disabled) {
Rasmus Villemoesde369532015-06-11 13:27:52 +0200662 dev_warn(&afu->dev, "WARNING: AFU was not disabled: %#016llx\n", reg);
Michael Neulingb12994f2015-05-27 16:07:09 +1000663 if (__cxl_afu_reset(afu))
Ian Munsief204e0b2014-10-08 19:55:02 +1100664 return -EIO;
665 if (cxl_afu_disable(afu))
666 return -EIO;
667 if (cxl_psl_purge(afu))
668 return -EIO;
669 }
670 cxl_p1n_write(afu, CXL_PSL_SPAP_An, 0x0000000000000000);
671 cxl_p1n_write(afu, CXL_PSL_IVTE_Limit_An, 0x0000000000000000);
672 cxl_p1n_write(afu, CXL_PSL_IVTE_Offset_An, 0x0000000000000000);
673 cxl_p1n_write(afu, CXL_PSL_AMBAR_An, 0x0000000000000000);
674 cxl_p1n_write(afu, CXL_PSL_SPOffset_An, 0x0000000000000000);
675 cxl_p1n_write(afu, CXL_HAURP_An, 0x0000000000000000);
676 cxl_p2n_write(afu, CXL_CSRP_An, 0x0000000000000000);
677 cxl_p2n_write(afu, CXL_AURP1_An, 0x0000000000000000);
678 cxl_p2n_write(afu, CXL_AURP0_An, 0x0000000000000000);
679 cxl_p2n_write(afu, CXL_SSTP1_An, 0x0000000000000000);
680 cxl_p2n_write(afu, CXL_SSTP0_An, 0x0000000000000000);
681 reg = cxl_p2n_read(afu, CXL_PSL_DSISR_An);
682 if (reg) {
Rasmus Villemoesde369532015-06-11 13:27:52 +0200683 dev_warn(&afu->dev, "AFU had pending DSISR: %#016llx\n", reg);
Ian Munsief204e0b2014-10-08 19:55:02 +1100684 if (reg & CXL_PSL_DSISR_TRANS)
685 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_AE);
686 else
687 cxl_p2n_write(afu, CXL_PSL_TFC_An, CXL_PSL_TFC_An_A);
688 }
689 reg = cxl_p1n_read(afu, CXL_PSL_SERR_An);
690 if (reg) {
691 if (reg & ~0xffff)
Rasmus Villemoesde369532015-06-11 13:27:52 +0200692 dev_warn(&afu->dev, "AFU had pending SERR: %#016llx\n", reg);
Ian Munsief204e0b2014-10-08 19:55:02 +1100693 cxl_p1n_write(afu, CXL_PSL_SERR_An, reg & ~0xffff);
694 }
695 reg = cxl_p2n_read(afu, CXL_PSL_ErrStat_An);
696 if (reg) {
Rasmus Villemoesde369532015-06-11 13:27:52 +0200697 dev_warn(&afu->dev, "AFU had pending error status: %#016llx\n", reg);
Ian Munsief204e0b2014-10-08 19:55:02 +1100698 cxl_p2n_write(afu, CXL_PSL_ErrStat_An, reg);
699 }
700
701 return 0;
702}
703
Vaibhav Jaine36f6fe2015-05-22 10:56:05 +0530704#define ERR_BUFF_MAX_COPY_SIZE PAGE_SIZE
705/*
706 * afu_eb_read:
707 * Called from sysfs and reads the afu error info buffer. The h/w only supports
708 * 4/8 bytes aligned access. So in case the requested offset/count arent 8 byte
709 * aligned the function uses a bounce buffer which can be max PAGE_SIZE.
710 */
711ssize_t cxl_afu_read_err_buffer(struct cxl_afu *afu, char *buf,
712 loff_t off, size_t count)
713{
714 loff_t aligned_start, aligned_end;
715 size_t aligned_length;
716 void *tbuf;
717 const void __iomem *ebuf = afu->afu_desc_mmio + afu->eb_offset;
718
719 if (count == 0 || off < 0 || (size_t)off >= afu->eb_len)
720 return 0;
721
722 /* calculate aligned read window */
723 count = min((size_t)(afu->eb_len - off), count);
724 aligned_start = round_down(off, 8);
725 aligned_end = round_up(off + count, 8);
726 aligned_length = aligned_end - aligned_start;
727
728 /* max we can copy in one read is PAGE_SIZE */
729 if (aligned_length > ERR_BUFF_MAX_COPY_SIZE) {
730 aligned_length = ERR_BUFF_MAX_COPY_SIZE;
731 count = ERR_BUFF_MAX_COPY_SIZE - (off & 0x7);
732 }
733
734 /* use bounce buffer for copy */
735 tbuf = (void *)__get_free_page(GFP_TEMPORARY);
736 if (!tbuf)
737 return -ENOMEM;
738
739 /* perform aligned read from the mmio region */
740 memcpy_fromio(tbuf, ebuf + aligned_start, aligned_length);
741 memcpy(buf, tbuf + (off & 0x7), count);
742
743 free_page((unsigned long)tbuf);
744
745 return count;
746}
747
Ian Munsief204e0b2014-10-08 19:55:02 +1100748static int cxl_init_afu(struct cxl *adapter, int slice, struct pci_dev *dev)
749{
750 struct cxl_afu *afu;
751 bool free = true;
752 int rc;
753
754 if (!(afu = cxl_alloc_afu(adapter, slice)))
755 return -ENOMEM;
756
757 if ((rc = dev_set_name(&afu->dev, "afu%i.%i", adapter->adapter_num, slice)))
758 goto err1;
759
760 if ((rc = cxl_map_slice_regs(afu, adapter, dev)))
761 goto err1;
762
763 if ((rc = sanitise_afu_regs(afu)))
764 goto err2;
765
766 /* We need to reset the AFU before we can read the AFU descriptor */
Michael Neulingb12994f2015-05-27 16:07:09 +1000767 if ((rc = __cxl_afu_reset(afu)))
Ian Munsief204e0b2014-10-08 19:55:02 +1100768 goto err2;
769
770 if (cxl_verbose)
771 dump_afu_descriptor(afu);
772
773 if ((rc = cxl_read_afu_descriptor(afu)))
774 goto err2;
775
776 if ((rc = cxl_afu_descriptor_looks_ok(afu)))
777 goto err2;
778
779 if ((rc = init_implementation_afu_regs(afu)))
780 goto err2;
781
782 if ((rc = cxl_register_serr_irq(afu)))
783 goto err2;
784
785 if ((rc = cxl_register_psl_irq(afu)))
786 goto err3;
787
788 /* Don't care if this fails */
789 cxl_debugfs_afu_add(afu);
790
791 /*
792 * After we call this function we must not free the afu directly, even
793 * if it returns an error!
794 */
795 if ((rc = cxl_register_afu(afu)))
796 goto err_put1;
797
798 if ((rc = cxl_sysfs_afu_add(afu)))
799 goto err_put1;
800
801
802 if ((rc = cxl_afu_select_best_mode(afu)))
803 goto err_put2;
804
805 adapter->afu[afu->slice] = afu;
806
Michael Neuling6f7f0b32015-05-27 16:07:18 +1000807 if ((rc = cxl_pci_vphb_add(afu)))
808 dev_info(&afu->dev, "Can't register vPHB\n");
809
Ian Munsief204e0b2014-10-08 19:55:02 +1100810 return 0;
811
812err_put2:
813 cxl_sysfs_afu_remove(afu);
814err_put1:
815 device_unregister(&afu->dev);
816 free = false;
817 cxl_debugfs_afu_remove(afu);
818 cxl_release_psl_irq(afu);
819err3:
820 cxl_release_serr_irq(afu);
821err2:
822 cxl_unmap_slice_regs(afu);
823err1:
824 if (free)
825 kfree(afu);
826 return rc;
827}
828
829static void cxl_remove_afu(struct cxl_afu *afu)
830{
831 pr_devel("cxl_remove_afu\n");
832
833 if (!afu)
834 return;
835
836 cxl_sysfs_afu_remove(afu);
837 cxl_debugfs_afu_remove(afu);
838
839 spin_lock(&afu->adapter->afu_list_lock);
840 afu->adapter->afu[afu->slice] = NULL;
841 spin_unlock(&afu->adapter->afu_list_lock);
842
843 cxl_context_detach_all(afu);
844 cxl_afu_deactivate_mode(afu);
845
846 cxl_release_psl_irq(afu);
847 cxl_release_serr_irq(afu);
848 cxl_unmap_slice_regs(afu);
849
850 device_unregister(&afu->dev);
851}
852
Ryan Grimm62fa19d2015-01-19 11:52:51 -0600853int cxl_reset(struct cxl *adapter)
854{
855 struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
856 int rc;
857 int i;
858 u32 val;
859
860 dev_info(&dev->dev, "CXL reset\n");
861
Michael Neuling6f7f0b32015-05-27 16:07:18 +1000862 for (i = 0; i < adapter->slices; i++) {
863 cxl_pci_vphb_remove(adapter->afu[i]);
Ryan Grimm62fa19d2015-01-19 11:52:51 -0600864 cxl_remove_afu(adapter->afu[i]);
Michael Neuling6f7f0b32015-05-27 16:07:18 +1000865 }
Ryan Grimm62fa19d2015-01-19 11:52:51 -0600866
867 /* pcie_warm_reset requests a fundamental pci reset which includes a
868 * PERST assert/deassert. PERST triggers a loading of the image
869 * if "user" or "factory" is selected in sysfs */
870 if ((rc = pci_set_pcie_reset_state(dev, pcie_warm_reset))) {
871 dev_err(&dev->dev, "cxl: pcie_warm_reset failed\n");
872 return rc;
873 }
874
875 /* the PERST done above fences the PHB. So, reset depends on EEH
876 * to unbind the driver, tell Sapphire to reinit the PHB, and rebind
877 * the driver. Do an mmio read explictly to ensure EEH notices the
878 * fenced PHB. Retry for a few seconds before giving up. */
879 i = 0;
880 while (((val = mmio_read32be(adapter->p1_mmio)) != 0xffffffff) &&
881 (i < 5)) {
882 msleep(500);
883 i++;
884 }
885
886 if (val != 0xffffffff)
887 dev_err(&dev->dev, "cxl: PERST failed to trigger EEH\n");
888
889 return rc;
890}
Ian Munsief204e0b2014-10-08 19:55:02 +1100891
892static int cxl_map_adapter_regs(struct cxl *adapter, struct pci_dev *dev)
893{
894 if (pci_request_region(dev, 2, "priv 2 regs"))
895 goto err1;
896 if (pci_request_region(dev, 0, "priv 1 regs"))
897 goto err2;
898
Rasmus Villemoesde369532015-06-11 13:27:52 +0200899 pr_devel("cxl_map_adapter_regs: p1: %#016llx %#llx, p2: %#016llx %#llx",
Ian Munsief204e0b2014-10-08 19:55:02 +1100900 p1_base(dev), p1_size(dev), p2_base(dev), p2_size(dev));
901
902 if (!(adapter->p1_mmio = ioremap(p1_base(dev), p1_size(dev))))
903 goto err3;
904
905 if (!(adapter->p2_mmio = ioremap(p2_base(dev), p2_size(dev))))
906 goto err4;
907
908 return 0;
909
910err4:
911 iounmap(adapter->p1_mmio);
912 adapter->p1_mmio = NULL;
913err3:
914 pci_release_region(dev, 0);
915err2:
916 pci_release_region(dev, 2);
917err1:
918 return -ENOMEM;
919}
920
921static void cxl_unmap_adapter_regs(struct cxl *adapter)
922{
923 if (adapter->p1_mmio)
924 iounmap(adapter->p1_mmio);
925 if (adapter->p2_mmio)
926 iounmap(adapter->p2_mmio);
927}
928
929static int cxl_read_vsec(struct cxl *adapter, struct pci_dev *dev)
930{
931 int vsec;
932 u32 afu_desc_off, afu_desc_size;
933 u32 ps_off, ps_size;
934 u16 vseclen;
935 u8 image_state;
936
937 if (!(vsec = find_cxl_vsec(dev))) {
Ian Munsiebee30c72015-05-27 16:07:04 +1000938 dev_err(&dev->dev, "ABORTING: CXL VSEC not found!\n");
Ian Munsief204e0b2014-10-08 19:55:02 +1100939 return -ENODEV;
940 }
941
942 CXL_READ_VSEC_LENGTH(dev, vsec, &vseclen);
943 if (vseclen < CXL_VSEC_MIN_SIZE) {
Ian Munsiebee30c72015-05-27 16:07:04 +1000944 dev_err(&dev->dev, "ABORTING: CXL VSEC too short\n");
Ian Munsief204e0b2014-10-08 19:55:02 +1100945 return -EINVAL;
946 }
947
948 CXL_READ_VSEC_STATUS(dev, vsec, &adapter->vsec_status);
949 CXL_READ_VSEC_PSL_REVISION(dev, vsec, &adapter->psl_rev);
950 CXL_READ_VSEC_CAIA_MAJOR(dev, vsec, &adapter->caia_major);
951 CXL_READ_VSEC_CAIA_MINOR(dev, vsec, &adapter->caia_minor);
952 CXL_READ_VSEC_BASE_IMAGE(dev, vsec, &adapter->base_image);
953 CXL_READ_VSEC_IMAGE_STATE(dev, vsec, &image_state);
954 adapter->user_image_loaded = !!(image_state & CXL_VSEC_USER_IMAGE_LOADED);
Ryan Grimm4beb5422015-01-19 11:52:48 -0600955 adapter->perst_loads_image = true;
956 adapter->perst_select_user = !!(image_state & CXL_VSEC_USER_IMAGE_LOADED);
Ian Munsief204e0b2014-10-08 19:55:02 +1100957
958 CXL_READ_VSEC_NAFUS(dev, vsec, &adapter->slices);
959 CXL_READ_VSEC_AFU_DESC_OFF(dev, vsec, &afu_desc_off);
960 CXL_READ_VSEC_AFU_DESC_SIZE(dev, vsec, &afu_desc_size);
961 CXL_READ_VSEC_PS_OFF(dev, vsec, &ps_off);
962 CXL_READ_VSEC_PS_SIZE(dev, vsec, &ps_size);
963
964 /* Convert everything to bytes, because there is NO WAY I'd look at the
965 * code a month later and forget what units these are in ;-) */
966 adapter->ps_off = ps_off * 64 * 1024;
967 adapter->ps_size = ps_size * 64 * 1024;
968 adapter->afu_desc_off = afu_desc_off * 64 * 1024;
969 adapter->afu_desc_size = afu_desc_size *64 * 1024;
970
971 /* Total IRQs - 1 PSL ERROR - #AFU*(1 slice error + 1 DSI) */
972 adapter->user_irqs = pnv_cxl_get_irq_count(dev) - 1 - 2*adapter->slices;
973
974 return 0;
975}
976
977static int cxl_vsec_looks_ok(struct cxl *adapter, struct pci_dev *dev)
978{
979 if (adapter->vsec_status & CXL_STATUS_SECOND_PORT)
980 return -EBUSY;
981
982 if (adapter->vsec_status & CXL_UNSUPPORTED_FEATURES) {
Ian Munsiebee30c72015-05-27 16:07:04 +1000983 dev_err(&dev->dev, "ABORTING: CXL requires unsupported features\n");
Ian Munsief204e0b2014-10-08 19:55:02 +1100984 return -EINVAL;
985 }
986
987 if (!adapter->slices) {
988 /* Once we support dynamic reprogramming we can use the card if
989 * it supports loadable AFUs */
Ian Munsiebee30c72015-05-27 16:07:04 +1000990 dev_err(&dev->dev, "ABORTING: Device has no AFUs\n");
Ian Munsief204e0b2014-10-08 19:55:02 +1100991 return -EINVAL;
992 }
993
994 if (!adapter->afu_desc_off || !adapter->afu_desc_size) {
Ian Munsiebee30c72015-05-27 16:07:04 +1000995 dev_err(&dev->dev, "ABORTING: VSEC shows no AFU descriptors\n");
Ian Munsief204e0b2014-10-08 19:55:02 +1100996 return -EINVAL;
997 }
998
999 if (adapter->ps_size > p2_size(dev) - adapter->ps_off) {
Ian Munsiebee30c72015-05-27 16:07:04 +10001000 dev_err(&dev->dev, "ABORTING: Problem state size larger than "
Ian Munsief204e0b2014-10-08 19:55:02 +11001001 "available in BAR2: 0x%llx > 0x%llx\n",
1002 adapter->ps_size, p2_size(dev) - adapter->ps_off);
1003 return -EINVAL;
1004 }
1005
1006 return 0;
1007}
1008
1009static void cxl_release_adapter(struct device *dev)
1010{
1011 struct cxl *adapter = to_cxl_adapter(dev);
1012
1013 pr_devel("cxl_release_adapter\n");
1014
1015 kfree(adapter);
1016}
1017
1018static struct cxl *cxl_alloc_adapter(struct pci_dev *dev)
1019{
1020 struct cxl *adapter;
1021
1022 if (!(adapter = kzalloc(sizeof(struct cxl), GFP_KERNEL)))
1023 return NULL;
1024
1025 adapter->dev.parent = &dev->dev;
1026 adapter->dev.release = cxl_release_adapter;
1027 pci_set_drvdata(dev, adapter);
1028 spin_lock_init(&adapter->afu_list_lock);
1029
1030 return adapter;
1031}
1032
1033static int sanitise_adapter_regs(struct cxl *adapter)
1034{
1035 cxl_p1_write(adapter, CXL_PSL_ErrIVTE, 0x0000000000000000);
1036 return cxl_tlb_slb_invalidate(adapter);
1037}
1038
1039static struct cxl *cxl_init_adapter(struct pci_dev *dev)
1040{
1041 struct cxl *adapter;
1042 bool free = true;
1043 int rc;
1044
1045
1046 if (!(adapter = cxl_alloc_adapter(dev)))
1047 return ERR_PTR(-ENOMEM);
1048
Ian Munsiebee30c72015-05-27 16:07:04 +10001049 if ((rc = cxl_read_vsec(adapter, dev)))
1050 goto err1;
1051
1052 if ((rc = cxl_vsec_looks_ok(adapter, dev)))
1053 goto err1;
1054
1055 if ((rc = setup_cxl_bars(dev)))
1056 goto err1;
1057
Ian Munsief204e0b2014-10-08 19:55:02 +11001058 if ((rc = switch_card_to_cxl(dev)))
1059 goto err1;
1060
1061 if ((rc = cxl_alloc_adapter_nr(adapter)))
1062 goto err1;
1063
1064 if ((rc = dev_set_name(&adapter->dev, "card%i", adapter->adapter_num)))
1065 goto err2;
1066
Ryan Grimm4beb5422015-01-19 11:52:48 -06001067 if ((rc = cxl_update_image_control(adapter)))
1068 goto err2;
1069
Ian Munsief204e0b2014-10-08 19:55:02 +11001070 if ((rc = cxl_map_adapter_regs(adapter, dev)))
1071 goto err2;
1072
1073 if ((rc = sanitise_adapter_regs(adapter)))
1074 goto err2;
1075
1076 if ((rc = init_implementation_adapter_regs(adapter, dev)))
1077 goto err3;
1078
Ryan Grimm1212aa12015-01-19 11:52:50 -06001079 if ((rc = pnv_phb_to_cxl_mode(dev, OPAL_PHB_CAPI_MODE_CAPI)))
Ian Munsief204e0b2014-10-08 19:55:02 +11001080 goto err3;
1081
Ryan Grimm1212aa12015-01-19 11:52:50 -06001082 /* If recovery happened, the last step is to turn on snooping.
1083 * In the non-recovery case this has no effect */
1084 if ((rc = pnv_phb_to_cxl_mode(dev, OPAL_PHB_CAPI_MODE_SNOOP_ON))) {
1085 goto err3;
1086 }
1087
Ian Munsief204e0b2014-10-08 19:55:02 +11001088 if ((rc = cxl_register_psl_err_irq(adapter)))
1089 goto err3;
1090
1091 /* Don't care if this one fails: */
1092 cxl_debugfs_adapter_add(adapter);
1093
1094 /*
1095 * After we call this function we must not free the adapter directly,
1096 * even if it returns an error!
1097 */
1098 if ((rc = cxl_register_adapter(adapter)))
1099 goto err_put1;
1100
1101 if ((rc = cxl_sysfs_adapter_add(adapter)))
1102 goto err_put1;
1103
1104 return adapter;
1105
1106err_put1:
1107 device_unregister(&adapter->dev);
1108 free = false;
1109 cxl_debugfs_adapter_remove(adapter);
1110 cxl_release_psl_err_irq(adapter);
1111err3:
1112 cxl_unmap_adapter_regs(adapter);
1113err2:
1114 cxl_remove_adapter_nr(adapter);
1115err1:
1116 if (free)
1117 kfree(adapter);
1118 return ERR_PTR(rc);
1119}
1120
1121static void cxl_remove_adapter(struct cxl *adapter)
1122{
1123 struct pci_dev *pdev = to_pci_dev(adapter->dev.parent);
1124
1125 pr_devel("cxl_release_adapter\n");
1126
1127 cxl_sysfs_adapter_remove(adapter);
1128 cxl_debugfs_adapter_remove(adapter);
1129 cxl_release_psl_err_irq(adapter);
1130 cxl_unmap_adapter_regs(adapter);
1131 cxl_remove_adapter_nr(adapter);
1132
1133 device_unregister(&adapter->dev);
1134
1135 pci_release_region(pdev, 0);
1136 pci_release_region(pdev, 2);
1137 pci_disable_device(pdev);
1138}
1139
1140static int cxl_probe(struct pci_dev *dev, const struct pci_device_id *id)
1141{
1142 struct cxl *adapter;
1143 int slice;
1144 int rc;
1145
1146 pci_dev_get(dev);
1147
1148 if (cxl_verbose)
1149 dump_cxl_config_space(dev);
1150
Ian Munsief204e0b2014-10-08 19:55:02 +11001151 if ((rc = pci_enable_device(dev))) {
1152 dev_err(&dev->dev, "pci_enable_device failed: %i\n", rc);
1153 return rc;
1154 }
1155
1156 adapter = cxl_init_adapter(dev);
1157 if (IS_ERR(adapter)) {
1158 dev_err(&dev->dev, "cxl_init_adapter failed: %li\n", PTR_ERR(adapter));
Michael Neuling7f436b52015-05-27 16:07:05 +10001159 pci_disable_device(dev);
Ian Munsief204e0b2014-10-08 19:55:02 +11001160 return PTR_ERR(adapter);
1161 }
1162
1163 for (slice = 0; slice < adapter->slices; slice++) {
1164 if ((rc = cxl_init_afu(adapter, slice, dev)))
1165 dev_err(&dev->dev, "AFU %i failed to initialise: %i\n", slice, rc);
1166 }
1167
1168 return 0;
1169}
1170
1171static void cxl_remove(struct pci_dev *dev)
1172{
1173 struct cxl *adapter = pci_get_drvdata(dev);
Michael Neuling6f7f0b32015-05-27 16:07:18 +10001174 struct cxl_afu *afu;
1175 int i;
Ian Munsief204e0b2014-10-08 19:55:02 +11001176
Ian Munsief204e0b2014-10-08 19:55:02 +11001177 /*
1178 * Lock to prevent someone grabbing a ref through the adapter list as
1179 * we are removing it
1180 */
Michael Neuling6f7f0b32015-05-27 16:07:18 +10001181 for (i = 0; i < adapter->slices; i++) {
1182 afu = adapter->afu[i];
1183 cxl_pci_vphb_remove(afu);
1184 cxl_remove_afu(afu);
1185 }
Ian Munsief204e0b2014-10-08 19:55:02 +11001186 cxl_remove_adapter(adapter);
1187}
1188
1189struct pci_driver cxl_pci_driver = {
1190 .name = "cxl-pci",
1191 .id_table = cxl_pci_tbl,
1192 .probe = cxl_probe,
1193 .remove = cxl_remove,
Michael Neulingaa707752015-05-27 16:07:02 +10001194 .shutdown = cxl_remove,
Ian Munsief204e0b2014-10-08 19:55:02 +11001195};