2 * Sonics Silicon Backplane
3 * PCMCIA-Hostbus related functions
5 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
6 * Copyright 2007 Michael Buesch <mb@bu3sch.de>
8 * Licensed under the GNU/GPL. See COPYING for details.
11 #include <linux/ssb/ssb.h>
12 #include <linux/delay.h>
15 #include <pcmcia/cs_types.h>
16 #include <pcmcia/cs.h>
17 #include <pcmcia/cistpl.h>
18 #include <pcmcia/ciscode.h>
19 #include <pcmcia/ds.h>
20 #include <pcmcia/cisreg.h>
22 #include "ssb_private.h"
25 /* Define the following to 1 to enable a printk on each coreswitch. */
26 #define SSB_VERBOSE_PCMCIACORESWITCH_DEBUG 0
29 int ssb_pcmcia_switch_coreidx(struct ssb_bus
*bus
,
32 struct pcmcia_device
*pdev
= bus
->host_pcmcia
;
40 addr
= (coreidx
* SSB_CORE_SIZE
) + SSB_ENUM_BASE
;
42 reg
.Action
= CS_WRITE
;
44 reg
.Value
= (addr
& 0x0000F000) >> 12;
45 err
= pcmcia_access_configuration_register(pdev
, ®
);
46 if (err
!= CS_SUCCESS
)
49 reg
.Value
= (addr
& 0x00FF0000) >> 16;
50 err
= pcmcia_access_configuration_register(pdev
, ®
);
51 if (err
!= CS_SUCCESS
)
54 reg
.Value
= (addr
& 0xFF000000) >> 24;
55 err
= pcmcia_access_configuration_register(pdev
, ®
);
56 if (err
!= CS_SUCCESS
)
63 err
= pcmcia_access_configuration_register(pdev
, ®
);
64 if (err
!= CS_SUCCESS
)
66 read_addr
|= (reg
.Value
& 0xF) << 12;
68 err
= pcmcia_access_configuration_register(pdev
, ®
);
69 if (err
!= CS_SUCCESS
)
71 read_addr
|= reg
.Value
<< 16;
73 err
= pcmcia_access_configuration_register(pdev
, ®
);
74 if (err
!= CS_SUCCESS
)
76 read_addr
|= reg
.Value
<< 24;
78 cur_core
= (read_addr
- SSB_ENUM_BASE
) / SSB_CORE_SIZE
;
79 if (cur_core
== coreidx
)
82 if (attempts
++ > SSB_BAR0_MAX_RETRIES
)
89 ssb_printk(KERN_ERR PFX
"Failed to switch to core %u\n", coreidx
);
93 int ssb_pcmcia_switch_core(struct ssb_bus
*bus
,
94 struct ssb_device
*dev
)
99 #if SSB_VERBOSE_PCMCIACORESWITCH_DEBUG
100 ssb_printk(KERN_INFO PFX
101 "Switching to %s core, index %d\n",
102 ssb_core_name(dev
->id
.coreid
),
106 spin_lock_irqsave(&bus
->bar_lock
, flags
);
107 err
= ssb_pcmcia_switch_coreidx(bus
, dev
->core_index
);
109 bus
->mapped_device
= dev
;
110 spin_unlock_irqrestore(&bus
->bar_lock
, flags
);
115 int ssb_pcmcia_switch_segment(struct ssb_bus
*bus
, u8 seg
)
122 SSB_WARN_ON((seg
!= 0) && (seg
!= 1));
125 spin_lock_irqsave(&bus
->bar_lock
, flags
);
127 reg
.Action
= CS_WRITE
;
129 res
= pcmcia_access_configuration_register(bus
->host_pcmcia
, ®
);
130 if (unlikely(res
!= CS_SUCCESS
))
133 reg
.Action
= CS_READ
;
134 res
= pcmcia_access_configuration_register(bus
->host_pcmcia
, ®
);
135 if (unlikely(res
!= CS_SUCCESS
))
138 if (reg
.Value
== seg
)
141 if (unlikely(attempts
++ > SSB_BAR0_MAX_RETRIES
))
145 bus
->mapped_pcmcia_seg
= seg
;
147 spin_unlock_irqrestore(&bus
->bar_lock
, flags
);
150 ssb_printk(KERN_ERR PFX
"Failed to switch pcmcia segment\n");
155 /* These are the main device register access functions.
156 * do_select_core is inline to have the likely hotpath inline.
157 * All unlikely codepaths are out-of-line. */
158 static inline int do_select_core(struct ssb_bus
*bus
,
159 struct ssb_device
*dev
,
163 u8 need_seg
= (*offset
>= 0x800) ? 1 : 0;
165 if (unlikely(dev
!= bus
->mapped_device
)) {
166 err
= ssb_pcmcia_switch_core(bus
, dev
);
170 if (unlikely(need_seg
!= bus
->mapped_pcmcia_seg
)) {
171 err
= ssb_pcmcia_switch_segment(bus
, need_seg
);
181 static u16
ssb_pcmcia_read16(struct ssb_device
*dev
, u16 offset
)
183 struct ssb_bus
*bus
= dev
->bus
;
186 if (unlikely(do_select_core(bus
, dev
, &offset
)))
188 x
= readw(bus
->mmio
+ offset
);
193 static u32
ssb_pcmcia_read32(struct ssb_device
*dev
, u16 offset
)
195 struct ssb_bus
*bus
= dev
->bus
;
198 if (unlikely(do_select_core(bus
, dev
, &offset
)))
200 x
= readl(bus
->mmio
+ offset
);
205 static void ssb_pcmcia_write16(struct ssb_device
*dev
, u16 offset
, u16 value
)
207 struct ssb_bus
*bus
= dev
->bus
;
209 if (unlikely(do_select_core(bus
, dev
, &offset
)))
211 writew(value
, bus
->mmio
+ offset
);
214 static void ssb_pcmcia_write32(struct ssb_device
*dev
, u16 offset
, u32 value
)
216 struct ssb_bus
*bus
= dev
->bus
;
218 if (unlikely(do_select_core(bus
, dev
, &offset
)))
220 readw(bus
->mmio
+ offset
);
221 writew(value
>> 16, bus
->mmio
+ offset
+ 2);
222 readw(bus
->mmio
+ offset
);
223 writew(value
, bus
->mmio
+ offset
);
226 /* Not "static", as it's used in main.c */
227 const struct ssb_bus_ops ssb_pcmcia_ops
= {
228 .read16
= ssb_pcmcia_read16
,
229 .read32
= ssb_pcmcia_read32
,
230 .write16
= ssb_pcmcia_write16
,
231 .write32
= ssb_pcmcia_write32
,
234 int ssb_pcmcia_get_invariants(struct ssb_bus
*bus
,
235 struct ssb_init_invariants
*iv
)
241 int ssb_pcmcia_init(struct ssb_bus
*bus
)
246 if (bus
->bustype
!= SSB_BUSTYPE_PCMCIA
)
249 /* Switch segment to a known state and sync
250 * bus->mapped_pcmcia_seg with hardware state. */
251 ssb_pcmcia_switch_segment(bus
, 0);
253 /* Init IRQ routing */
254 reg
.Action
= CS_READ
;
256 if (bus
->chip_id
== 0x4306)
260 err
= pcmcia_access_configuration_register(bus
->host_pcmcia
, ®
);
261 if (err
!= CS_SUCCESS
)
263 reg
.Action
= CS_WRITE
;
264 reg
.Value
|= 0x04 | 0x01;
265 err
= pcmcia_access_configuration_register(bus
->host_pcmcia
, ®
);
266 if (err
!= CS_SUCCESS
)