2 * Copyright 2017 IBM Corp.
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.
10 #ifndef _MISC_CXLLIB_H
11 #define _MISC_CXLLIB_H
13 #include <linux/pci.h>
17 * cxl driver exports a in-kernel 'library' API which can be called by
18 * other drivers to help interacting with an IBM XSL.
22 * tells whether capi is supported on the PCIe slot where the
26 * dev: device whose slot needs to be checked
27 * flags: 0 for the time being
29 bool cxllib_slot_is_supported(struct pci_dev
*dev
, unsigned long flags
);
33 * Returns the configuration parameters to be used by the XSL or device
36 * dev: device, used to find PHB
38 * struct cxllib_xsl_config:
40 * capi BAR address, i.e. 0x2000000000000-0x2FFFFFFFFFFFF
42 * data send control (XSL_DSNCTL)
43 * dummy read address (XSL_DRA)
45 #define CXL_XSL_CONFIG_VERSION1 1
46 struct cxllib_xsl_config
{
47 u32 version
; /* format version for register encoding */
48 u32 log_bar_size
;/* log size of the capi_window */
49 u64 bar_addr
; /* address of the start of capi window */
50 u64 dsnctl
; /* matches definition of XSL_DSNCTL */
51 u64 dra
; /* real address that can be used for dummy read */
54 int cxllib_get_xsl_config(struct pci_dev
*dev
, struct cxllib_xsl_config
*cfg
);
58 * Activate capi for the pci host bridge associated with the device.
59 * Can be extended to deactivate once we know how to do it.
60 * Device must be ready to accept messages from the CAPP unit and
61 * respond accordingly (TLB invalidates, ...)
63 * PHB is switched to capi mode through calls to skiboot.
64 * CAPP snooping is activated
67 * dev: device whose PHB should switch mode
68 * mode: mode to switch to i.e. CAPI or PCI
69 * flags: options related to the mode
76 #define CXL_MODE_NO_DMA 0
77 #define CXL_MODE_DMA_TVT0 1
78 #define CXL_MODE_DMA_TVT1 2
80 int cxllib_switch_phb_mode(struct pci_dev
*dev
, enum cxllib_mode mode
,
85 * Set the device for capi DMA.
86 * Define its dma_ops and dma offset so that allocations will be using TVT#1
90 * flags: options. CXL_MODE_DMA_TVT1 should be used
92 int cxllib_set_device_dma(struct pci_dev
*dev
, unsigned long flags
);
96 * Get the Process Element structure for the given thread
99 * task: task_struct for the context of the translation
100 * translation_mode: whether addresses should be translated
102 * attr: attributes to fill up the Process Element structure from CAIA
104 struct cxllib_pe_attributes
{
110 #define CXL_TRANSLATED_MODE 0
111 #define CXL_REAL_MODE 1
113 int cxllib_get_PE_attributes(struct task_struct
*task
,
114 unsigned long translation_mode
, struct cxllib_pe_attributes
*attr
);
118 * Handle memory fault.
119 * Fault in all the pages of the specified buffer for the permissions
120 * provided in ‘flags’
122 * Shouldn't be called from interrupt context
125 * mm: struct mm for the thread faulting the pages
126 * addr: base address of the buffer to page in
127 * size: size of the buffer to page in
128 * flags: permission requested (DSISR_ISSTORE...)
130 int cxllib_handle_fault(struct mm_struct
*mm
, u64 addr
, u64 size
, u64 flags
);
133 #endif /* _MISC_CXLLIB_H */