1 // SPDX-License-Identifier: GPL-2.0-only
3 * DMA translation between STA2x11 AMBA memory mapping and the x86 memory mapping
5 * ST Microelectronics ConneXt (STA2X11/STA2X10)
7 * Copyright (c) 2010-2011 Wind River Systems, Inc.
10 #include <linux/pci.h>
11 #include <linux/pci_ids.h>
12 #include <linux/export.h>
13 #include <linux/list.h>
14 #include <linux/dma-direct.h>
15 #include <asm/iommu.h>
17 #define STA2X11_SWIOTLB_SIZE (4*1024*1024)
18 extern int swiotlb_late_init_with_default_size(size_t default_size
);
21 * We build a list of bus numbers that are under the ConneXt. The
22 * main bridge hosts 4 busses, which are the 4 endpoints, in order.
24 #define STA2X11_NR_EP 4 /* 0..3 included */
25 #define STA2X11_NR_FUNCS 8 /* 0..7 included */
26 #define STA2X11_AMBA_SIZE (512 << 20)
28 struct sta2x11_ahb_regs
{ /* saved during suspend */
29 u32 base
, pexlbase
, pexhbase
, crw
;
32 struct sta2x11_mapping
{
34 struct sta2x11_ahb_regs regs
[STA2X11_NR_FUNCS
];
37 struct sta2x11_instance
{
38 struct list_head list
;
40 struct sta2x11_mapping map
[STA2X11_NR_EP
];
43 static LIST_HEAD(sta2x11_instance_list
);
45 /* At probe time, record new instances of this bridge (likely one only) */
46 static void sta2x11_new_instance(struct pci_dev
*pdev
)
48 struct sta2x11_instance
*instance
;
50 instance
= kzalloc(sizeof(*instance
), GFP_ATOMIC
);
53 /* This has a subordinate bridge, with 4 more-subordinate ones */
54 instance
->bus0
= pdev
->subordinate
->number
+ 1;
56 if (list_empty(&sta2x11_instance_list
)) {
57 int size
= STA2X11_SWIOTLB_SIZE
;
58 /* First instance: register your own swiotlb area */
59 dev_info(&pdev
->dev
, "Using SWIOTLB (size %i)\n", size
);
60 if (swiotlb_late_init_with_default_size(size
))
61 dev_emerg(&pdev
->dev
, "init swiotlb failed\n");
63 list_add(&instance
->list
, &sta2x11_instance_list
);
65 DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_STMICRO
, 0xcc17, sta2x11_new_instance
);
68 * Utility functions used in this file from below
70 static struct sta2x11_instance
*sta2x11_pdev_to_instance(struct pci_dev
*pdev
)
72 struct sta2x11_instance
*instance
;
75 list_for_each_entry(instance
, &sta2x11_instance_list
, list
) {
76 ep
= pdev
->bus
->number
- instance
->bus0
;
77 if (ep
>= 0 && ep
< STA2X11_NR_EP
)
83 static int sta2x11_pdev_to_ep(struct pci_dev
*pdev
)
85 struct sta2x11_instance
*instance
;
87 instance
= sta2x11_pdev_to_instance(pdev
);
91 return pdev
->bus
->number
- instance
->bus0
;
94 /* This is exported, as some devices need to access the MFD registers */
95 struct sta2x11_instance
*sta2x11_get_instance(struct pci_dev
*pdev
)
97 return sta2x11_pdev_to_instance(pdev
);
99 EXPORT_SYMBOL(sta2x11_get_instance
);
101 /* At setup time, we use our own ops if the device is a ConneXt one */
102 static void sta2x11_setup_pdev(struct pci_dev
*pdev
)
104 struct sta2x11_instance
*instance
= sta2x11_pdev_to_instance(pdev
);
106 if (!instance
) /* either a sta2x11 bridge or another ST device */
109 /* We must enable all devices as master, for audio DMA to work */
110 pci_set_master(pdev
);
112 DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_STMICRO
, PCI_ANY_ID
, sta2x11_setup_pdev
);
115 * At boot we must set up the mappings for the pcie-to-amba bridge.
116 * It involves device access, and the same happens at suspend/resume time
119 #define AHB_MAPB 0xCA4
120 #define AHB_CRW(i) (AHB_MAPB + 0 + (i) * 0x10)
121 #define AHB_CRW_SZMASK 0xfffffc00UL
122 #define AHB_CRW_ENABLE (1 << 0)
123 #define AHB_CRW_WTYPE_MEM (2 << 1)
124 #define AHB_CRW_ROE (1UL << 3) /* Relax Order Ena */
125 #define AHB_CRW_NSE (1UL << 4) /* No Snoop Enable */
126 #define AHB_BASE(i) (AHB_MAPB + 4 + (i) * 0x10)
127 #define AHB_PEXLBASE(i) (AHB_MAPB + 8 + (i) * 0x10)
128 #define AHB_PEXHBASE(i) (AHB_MAPB + 12 + (i) * 0x10)
130 /* At probe time, enable mapping for each endpoint, using the pdev */
131 static void sta2x11_map_ep(struct pci_dev
*pdev
)
133 struct sta2x11_instance
*instance
= sta2x11_pdev_to_instance(pdev
);
134 struct device
*dev
= &pdev
->dev
;
135 u32 amba_base
, max_amba_addr
;
141 pci_read_config_dword(pdev
, AHB_BASE(0), &amba_base
);
142 max_amba_addr
= amba_base
+ STA2X11_AMBA_SIZE
- 1;
144 dev
->dma_pfn_offset
= PFN_DOWN(-amba_base
);
146 dev
->bus_dma_limit
= max_amba_addr
;
147 pci_set_consistent_dma_mask(pdev
, max_amba_addr
);
148 pci_set_dma_mask(pdev
, max_amba_addr
);
150 /* Configure AHB mapping */
151 pci_write_config_dword(pdev
, AHB_PEXLBASE(0), 0);
152 pci_write_config_dword(pdev
, AHB_PEXHBASE(0), 0);
153 pci_write_config_dword(pdev
, AHB_CRW(0), STA2X11_AMBA_SIZE
|
154 AHB_CRW_WTYPE_MEM
| AHB_CRW_ENABLE
);
156 /* Disable all the other windows */
157 for (i
= 1; i
< STA2X11_NR_FUNCS
; i
++)
158 pci_write_config_dword(pdev
, AHB_CRW(i
), 0);
161 "sta2x11: Map EP %i: AMBA address %#8x-%#8x\n",
162 sta2x11_pdev_to_ep(pdev
), amba_base
, max_amba_addr
);
164 DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_STMICRO
, PCI_ANY_ID
, sta2x11_map_ep
);
166 #ifdef CONFIG_PM /* Some register values must be saved and restored */
168 static struct sta2x11_mapping
*sta2x11_pdev_to_mapping(struct pci_dev
*pdev
)
170 struct sta2x11_instance
*instance
;
173 instance
= sta2x11_pdev_to_instance(pdev
);
176 ep
= sta2x11_pdev_to_ep(pdev
);
177 return instance
->map
+ ep
;
180 static void suspend_mapping(struct pci_dev
*pdev
)
182 struct sta2x11_mapping
*map
= sta2x11_pdev_to_mapping(pdev
);
188 if (map
->is_suspended
)
190 map
->is_suspended
= 1;
192 /* Save all window configs */
193 for (i
= 0; i
< STA2X11_NR_FUNCS
; i
++) {
194 struct sta2x11_ahb_regs
*regs
= map
->regs
+ i
;
196 pci_read_config_dword(pdev
, AHB_BASE(i
), ®s
->base
);
197 pci_read_config_dword(pdev
, AHB_PEXLBASE(i
), ®s
->pexlbase
);
198 pci_read_config_dword(pdev
, AHB_PEXHBASE(i
), ®s
->pexhbase
);
199 pci_read_config_dword(pdev
, AHB_CRW(i
), ®s
->crw
);
202 DECLARE_PCI_FIXUP_SUSPEND(PCI_VENDOR_ID_STMICRO
, PCI_ANY_ID
, suspend_mapping
);
204 static void resume_mapping(struct pci_dev
*pdev
)
206 struct sta2x11_mapping
*map
= sta2x11_pdev_to_mapping(pdev
);
213 if (!map
->is_suspended
)
215 map
->is_suspended
= 0;
217 /* Restore all window configs */
218 for (i
= 0; i
< STA2X11_NR_FUNCS
; i
++) {
219 struct sta2x11_ahb_regs
*regs
= map
->regs
+ i
;
221 pci_write_config_dword(pdev
, AHB_BASE(i
), regs
->base
);
222 pci_write_config_dword(pdev
, AHB_PEXLBASE(i
), regs
->pexlbase
);
223 pci_write_config_dword(pdev
, AHB_PEXHBASE(i
), regs
->pexhbase
);
224 pci_write_config_dword(pdev
, AHB_CRW(i
), regs
->crw
);
227 pci_set_master(pdev
); /* Like at boot, enable master on all devices */
229 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_STMICRO
, PCI_ANY_ID
, resume_mapping
);
231 #endif /* CONFIG_PM */