Linux Audio

Check our new training course

Loading...
v3.1
  1/*
  2 * Sonics Silicon Backplane
  3 * Broadcom PCI-core driver
  4 *
  5 * Copyright 2005, Broadcom Corporation
  6 * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
  7 *
  8 * Licensed under the GNU/GPL. See COPYING for details.
  9 */
 10
 11#include <linux/ssb/ssb.h>
 12#include <linux/pci.h>
 
 13#include <linux/delay.h>
 14#include <linux/ssb/ssb_embedded.h>
 15
 16#include "ssb_private.h"
 17
 18static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address);
 19static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data);
 20static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address);
 21static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
 22				u8 address, u16 data);
 23
 24static inline
 25u32 pcicore_read32(struct ssb_pcicore *pc, u16 offset)
 26{
 27	return ssb_read32(pc->dev, offset);
 28}
 29
 30static inline
 31void pcicore_write32(struct ssb_pcicore *pc, u16 offset, u32 value)
 32{
 33	ssb_write32(pc->dev, offset, value);
 34}
 35
 36static inline
 37u16 pcicore_read16(struct ssb_pcicore *pc, u16 offset)
 38{
 39	return ssb_read16(pc->dev, offset);
 40}
 41
 42static inline
 43void pcicore_write16(struct ssb_pcicore *pc, u16 offset, u16 value)
 44{
 45	ssb_write16(pc->dev, offset, value);
 46}
 47
 48/**************************************************
 49 * Code for hostmode operation.
 50 **************************************************/
 51
 52#ifdef CONFIG_SSB_PCICORE_HOSTMODE
 53
 54#include <asm/paccess.h>
 55/* Probe a 32bit value on the bus and catch bus exceptions.
 56 * Returns nonzero on a bus exception.
 57 * This is MIPS specific */
 58#define mips_busprobe32(val, addr)	get_dbe((val), ((u32 *)(addr)))
 59
 60/* Assume one-hot slot wiring */
 61#define SSB_PCI_SLOT_MAX	16
 62
 63/* Global lock is OK, as we won't have more than one extpci anyway. */
 64static DEFINE_SPINLOCK(cfgspace_lock);
 65/* Core to access the external PCI config space. Can only have one. */
 66static struct ssb_pcicore *extpci_core;
 67
 68
 69static u32 get_cfgspace_addr(struct ssb_pcicore *pc,
 70			     unsigned int bus, unsigned int dev,
 71			     unsigned int func, unsigned int off)
 72{
 73	u32 addr = 0;
 74	u32 tmp;
 75
 76	/* We do only have one cardbus device behind the bridge. */
 77	if (pc->cardbusmode && (dev >= 1))
 78		goto out;
 79
 80	if (bus == 0) {
 81		/* Type 0 transaction */
 82		if (unlikely(dev >= SSB_PCI_SLOT_MAX))
 83			goto out;
 84		/* Slide the window */
 85		tmp = SSB_PCICORE_SBTOPCI_CFG0;
 86		tmp |= ((1 << (dev + 16)) & SSB_PCICORE_SBTOPCI1_MASK);
 87		pcicore_write32(pc, SSB_PCICORE_SBTOPCI1, tmp);
 88		/* Calculate the address */
 89		addr = SSB_PCI_CFG;
 90		addr |= ((1 << (dev + 16)) & ~SSB_PCICORE_SBTOPCI1_MASK);
 91		addr |= (func << 8);
 92		addr |= (off & ~3);
 93	} else {
 94		/* Type 1 transaction */
 95		pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
 96				SSB_PCICORE_SBTOPCI_CFG1);
 97		/* Calculate the address */
 98		addr = SSB_PCI_CFG;
 99		addr |= (bus << 16);
100		addr |= (dev << 11);
101		addr |= (func << 8);
102		addr |= (off & ~3);
103	}
104out:
105	return addr;
106}
107
108static int ssb_extpci_read_config(struct ssb_pcicore *pc,
109				  unsigned int bus, unsigned int dev,
110				  unsigned int func, unsigned int off,
111				  void *buf, int len)
112{
113	int err = -EINVAL;
114	u32 addr, val;
115	void __iomem *mmio;
116
117	SSB_WARN_ON(!pc->hostmode);
118	if (unlikely(len != 1 && len != 2 && len != 4))
119		goto out;
120	addr = get_cfgspace_addr(pc, bus, dev, func, off);
121	if (unlikely(!addr))
122		goto out;
123	err = -ENOMEM;
124	mmio = ioremap_nocache(addr, len);
125	if (!mmio)
126		goto out;
127
128	if (mips_busprobe32(val, mmio)) {
129		val = 0xffffffff;
130		goto unmap;
131	}
132
133	val = readl(mmio);
134	val >>= (8 * (off & 3));
135
136	switch (len) {
137	case 1:
138		*((u8 *)buf) = (u8)val;
139		break;
140	case 2:
141		*((u16 *)buf) = (u16)val;
142		break;
143	case 4:
144		*((u32 *)buf) = (u32)val;
145		break;
146	}
147	err = 0;
148unmap:
149	iounmap(mmio);
150out:
151	return err;
152}
153
154static int ssb_extpci_write_config(struct ssb_pcicore *pc,
155				   unsigned int bus, unsigned int dev,
156				   unsigned int func, unsigned int off,
157				   const void *buf, int len)
158{
159	int err = -EINVAL;
160	u32 addr, val = 0;
161	void __iomem *mmio;
162
163	SSB_WARN_ON(!pc->hostmode);
164	if (unlikely(len != 1 && len != 2 && len != 4))
165		goto out;
166	addr = get_cfgspace_addr(pc, bus, dev, func, off);
167	if (unlikely(!addr))
168		goto out;
169	err = -ENOMEM;
170	mmio = ioremap_nocache(addr, len);
171	if (!mmio)
172		goto out;
173
174	if (mips_busprobe32(val, mmio)) {
175		val = 0xffffffff;
176		goto unmap;
177	}
178
179	switch (len) {
180	case 1:
181		val = readl(mmio);
182		val &= ~(0xFF << (8 * (off & 3)));
183		val |= *((const u8 *)buf) << (8 * (off & 3));
184		break;
185	case 2:
186		val = readl(mmio);
187		val &= ~(0xFFFF << (8 * (off & 3)));
188		val |= *((const u16 *)buf) << (8 * (off & 3));
189		break;
190	case 4:
191		val = *((const u32 *)buf);
192		break;
193	}
194	writel(val, mmio);
195
196	err = 0;
197unmap:
198	iounmap(mmio);
199out:
200	return err;
201}
202
203static int ssb_pcicore_read_config(struct pci_bus *bus, unsigned int devfn,
204				   int reg, int size, u32 *val)
205{
206	unsigned long flags;
207	int err;
208
209	spin_lock_irqsave(&cfgspace_lock, flags);
210	err = ssb_extpci_read_config(extpci_core, bus->number, PCI_SLOT(devfn),
211				     PCI_FUNC(devfn), reg, val, size);
212	spin_unlock_irqrestore(&cfgspace_lock, flags);
213
214	return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
215}
216
217static int ssb_pcicore_write_config(struct pci_bus *bus, unsigned int devfn,
218				    int reg, int size, u32 val)
219{
220	unsigned long flags;
221	int err;
222
223	spin_lock_irqsave(&cfgspace_lock, flags);
224	err = ssb_extpci_write_config(extpci_core, bus->number, PCI_SLOT(devfn),
225				      PCI_FUNC(devfn), reg, &val, size);
226	spin_unlock_irqrestore(&cfgspace_lock, flags);
227
228	return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
229}
230
231static struct pci_ops ssb_pcicore_pciops = {
232	.read	= ssb_pcicore_read_config,
233	.write	= ssb_pcicore_write_config,
234};
235
236static struct resource ssb_pcicore_mem_resource = {
237	.name	= "SSB PCIcore external memory",
238	.start	= SSB_PCI_DMA,
239	.end	= SSB_PCI_DMA + SSB_PCI_DMA_SZ - 1,
240	.flags	= IORESOURCE_MEM | IORESOURCE_PCI_FIXED,
241};
242
243static struct resource ssb_pcicore_io_resource = {
244	.name	= "SSB PCIcore external I/O",
245	.start	= 0x100,
246	.end	= 0x7FF,
247	.flags	= IORESOURCE_IO | IORESOURCE_PCI_FIXED,
248};
249
250static struct pci_controller ssb_pcicore_controller = {
251	.pci_ops	= &ssb_pcicore_pciops,
252	.io_resource	= &ssb_pcicore_io_resource,
253	.mem_resource	= &ssb_pcicore_mem_resource,
254};
255
256/* This function is called when doing a pci_enable_device().
257 * We must first check if the device is a device on the PCI-core bridge. */
258int ssb_pcicore_plat_dev_init(struct pci_dev *d)
259{
260	if (d->bus->ops != &ssb_pcicore_pciops) {
261		/* This is not a device on the PCI-core bridge. */
262		return -ENODEV;
263	}
264
265	ssb_printk(KERN_INFO "PCI: Fixing up device %s\n",
266		   pci_name(d));
267
268	/* Fix up interrupt lines */
269	d->irq = ssb_mips_irq(extpci_core->dev) + 2;
270	pci_write_config_byte(d, PCI_INTERRUPT_LINE, d->irq);
271
272	return 0;
273}
274
275/* Early PCI fixup for a device on the PCI-core bridge. */
276static void ssb_pcicore_fixup_pcibridge(struct pci_dev *dev)
277{
278	u8 lat;
279
280	if (dev->bus->ops != &ssb_pcicore_pciops) {
281		/* This is not a device on the PCI-core bridge. */
282		return;
283	}
284	if (dev->bus->number != 0 || PCI_SLOT(dev->devfn) != 0)
285		return;
286
287	ssb_printk(KERN_INFO "PCI: Fixing up bridge %s\n", pci_name(dev));
288
289	/* Enable PCI bridge bus mastering and memory space */
290	pci_set_master(dev);
291	if (pcibios_enable_device(dev, ~0) < 0) {
292		ssb_printk(KERN_ERR "PCI: SSB bridge enable failed\n");
293		return;
294	}
295
296	/* Enable PCI bridge BAR1 prefetch and burst */
297	pci_write_config_dword(dev, SSB_BAR1_CONTROL, 3);
298
299	/* Make sure our latency is high enough to handle the devices behind us */
300	lat = 168;
301	ssb_printk(KERN_INFO "PCI: Fixing latency timer of device %s to %u\n",
302		   pci_name(dev), lat);
303	pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
304}
305DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, ssb_pcicore_fixup_pcibridge);
306
307/* PCI device IRQ mapping. */
308int ssb_pcicore_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
309{
310	if (dev->bus->ops != &ssb_pcicore_pciops) {
311		/* This is not a device on the PCI-core bridge. */
312		return -ENODEV;
313	}
314	return ssb_mips_irq(extpci_core->dev) + 2;
315}
316
317static void __devinit ssb_pcicore_init_hostmode(struct ssb_pcicore *pc)
318{
319	u32 val;
320
321	if (WARN_ON(extpci_core))
322		return;
323	extpci_core = pc;
324
325	ssb_dprintk(KERN_INFO PFX "PCIcore in host mode found\n");
326	/* Reset devices on the external PCI bus */
327	val = SSB_PCICORE_CTL_RST_OE;
328	val |= SSB_PCICORE_CTL_CLK_OE;
329	pcicore_write32(pc, SSB_PCICORE_CTL, val);
330	val |= SSB_PCICORE_CTL_CLK; /* Clock on */
331	pcicore_write32(pc, SSB_PCICORE_CTL, val);
332	udelay(150); /* Assertion time demanded by the PCI standard */
333	val |= SSB_PCICORE_CTL_RST; /* Deassert RST# */
334	pcicore_write32(pc, SSB_PCICORE_CTL, val);
335	val = SSB_PCICORE_ARBCTL_INTERN;
336	pcicore_write32(pc, SSB_PCICORE_ARBCTL, val);
337	udelay(1); /* Assertion time demanded by the PCI standard */
338
339	if (pc->dev->bus->has_cardbus_slot) {
340		ssb_dprintk(KERN_INFO PFX "CardBus slot detected\n");
341		pc->cardbusmode = 1;
342		/* GPIO 1 resets the bridge */
343		ssb_gpio_out(pc->dev->bus, 1, 1);
344		ssb_gpio_outen(pc->dev->bus, 1, 1);
345		pcicore_write16(pc, SSB_PCICORE_SPROM(0),
346				pcicore_read16(pc, SSB_PCICORE_SPROM(0))
347				| 0x0400);
348	}
349
350	/* 64MB I/O window */
351	pcicore_write32(pc, SSB_PCICORE_SBTOPCI0,
352			SSB_PCICORE_SBTOPCI_IO);
353	/* 64MB config space */
354	pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
355			SSB_PCICORE_SBTOPCI_CFG0);
356	/* 1GB memory window */
357	pcicore_write32(pc, SSB_PCICORE_SBTOPCI2,
358			SSB_PCICORE_SBTOPCI_MEM | SSB_PCI_DMA);
359
360	/* Enable PCI bridge BAR0 prefetch and burst */
361	val = PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
362	ssb_extpci_write_config(pc, 0, 0, 0, PCI_COMMAND, &val, 2);
363	/* Clear error conditions */
364	val = 0;
365	ssb_extpci_write_config(pc, 0, 0, 0, PCI_STATUS, &val, 2);
366
367	/* Enable PCI interrupts */
368	pcicore_write32(pc, SSB_PCICORE_IMASK,
369			SSB_PCICORE_IMASK_INTA);
370
371	/* Ok, ready to run, register it to the system.
372	 * The following needs change, if we want to port hostmode
373	 * to non-MIPS platform. */
374	ssb_pcicore_controller.io_map_base = (unsigned long)ioremap_nocache(SSB_PCI_MEM, 0x04000000);
375	set_io_port_base(ssb_pcicore_controller.io_map_base);
376	/* Give some time to the PCI controller to configure itself with the new
377	 * values. Not waiting at this point causes crashes of the machine. */
378	mdelay(10);
379	register_pci_controller(&ssb_pcicore_controller);
380}
381
382static int __devinit pcicore_is_in_hostmode(struct ssb_pcicore *pc)
383{
384	struct ssb_bus *bus = pc->dev->bus;
385	u16 chipid_top;
386	u32 tmp;
387
388	chipid_top = (bus->chip_id & 0xFF00);
389	if (chipid_top != 0x4700 &&
390	    chipid_top != 0x5300)
391		return 0;
392
393	if (bus->sprom.boardflags_lo & SSB_PCICORE_BFL_NOPCI)
394		return 0;
395
396	/* The 200-pin BCM4712 package does not bond out PCI. Even when
397	 * PCI is bonded out, some boards may leave the pins floating. */
398	if (bus->chip_id == 0x4712) {
399		if (bus->chip_package == SSB_CHIPPACK_BCM4712S)
400			return 0;
401		if (bus->chip_package == SSB_CHIPPACK_BCM4712M)
402			return 0;
403	}
404	if (bus->chip_id == 0x5350)
405		return 0;
406
407	return !mips_busprobe32(tmp, (bus->mmio + (pc->dev->core_index * SSB_CORE_SIZE)));
408}
409#endif /* CONFIG_SSB_PCICORE_HOSTMODE */
410
411/**************************************************
412 * Workarounds.
413 **************************************************/
414
415static void __devinit ssb_pcicore_fix_sprom_core_index(struct ssb_pcicore *pc)
416{
417	u16 tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(0));
418	if (((tmp & 0xF000) >> 12) != pc->dev->core_index) {
419		tmp &= ~0xF000;
420		tmp |= (pc->dev->core_index << 12);
421		pcicore_write16(pc, SSB_PCICORE_SPROM(0), tmp);
422	}
423}
424
425static u8 ssb_pcicore_polarity_workaround(struct ssb_pcicore *pc)
426{
427	return (ssb_pcie_read(pc, 0x204) & 0x10) ? 0xC0 : 0x80;
428}
429
430static void ssb_pcicore_serdes_workaround(struct ssb_pcicore *pc)
431{
432	const u8 serdes_pll_device = 0x1D;
433	const u8 serdes_rx_device = 0x1F;
434	u16 tmp;
435
436	ssb_pcie_mdio_write(pc, serdes_rx_device, 1 /* Control */,
437			    ssb_pcicore_polarity_workaround(pc));
438	tmp = ssb_pcie_mdio_read(pc, serdes_pll_device, 1 /* Control */);
439	if (tmp & 0x4000)
440		ssb_pcie_mdio_write(pc, serdes_pll_device, 1, tmp & ~0x4000);
441}
442
443static void ssb_pcicore_pci_setup_workarounds(struct ssb_pcicore *pc)
444{
445	struct ssb_device *pdev = pc->dev;
446	struct ssb_bus *bus = pdev->bus;
447	u32 tmp;
448
449	tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
450	tmp |= SSB_PCICORE_SBTOPCI_PREF;
451	tmp |= SSB_PCICORE_SBTOPCI_BURST;
452	pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
453
454	if (pdev->id.revision < 5) {
455		tmp = ssb_read32(pdev, SSB_IMCFGLO);
456		tmp &= ~SSB_IMCFGLO_SERTO;
457		tmp |= 2;
458		tmp &= ~SSB_IMCFGLO_REQTO;
459		tmp |= 3 << SSB_IMCFGLO_REQTO_SHIFT;
460		ssb_write32(pdev, SSB_IMCFGLO, tmp);
461		ssb_commit_settings(bus);
462	} else if (pdev->id.revision >= 11) {
463		tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
464		tmp |= SSB_PCICORE_SBTOPCI_MRM;
465		pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
466	}
467}
468
469static void ssb_pcicore_pcie_setup_workarounds(struct ssb_pcicore *pc)
470{
471	u32 tmp;
472	u8 rev = pc->dev->id.revision;
473
474	if (rev == 0 || rev == 1) {
475		/* TLP Workaround register. */
476		tmp = ssb_pcie_read(pc, 0x4);
477		tmp |= 0x8;
478		ssb_pcie_write(pc, 0x4, tmp);
479	}
480	if (rev == 1) {
481		/* DLLP Link Control register. */
482		tmp = ssb_pcie_read(pc, 0x100);
483		tmp |= 0x40;
484		ssb_pcie_write(pc, 0x100, tmp);
485	}
486
487	if (rev == 0) {
488		const u8 serdes_rx_device = 0x1F;
489
490		ssb_pcie_mdio_write(pc, serdes_rx_device,
491					2 /* Timer */, 0x8128);
492		ssb_pcie_mdio_write(pc, serdes_rx_device,
493					6 /* CDR */, 0x0100);
494		ssb_pcie_mdio_write(pc, serdes_rx_device,
495					7 /* CDR BW */, 0x1466);
496	} else if (rev == 3 || rev == 4 || rev == 5) {
497		/* TODO: DLLP Power Management Threshold */
498		ssb_pcicore_serdes_workaround(pc);
499		/* TODO: ASPM */
500	} else if (rev == 7) {
501		/* TODO: No PLL down */
502	}
503
504	if (rev >= 6) {
505		/* Miscellaneous Configuration Fixup */
506		tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(5));
507		if (!(tmp & 0x8000))
508			pcicore_write16(pc, SSB_PCICORE_SPROM(5),
509					tmp | 0x8000);
510	}
511}
512
513/**************************************************
514 * Generic and Clientmode operation code.
515 **************************************************/
516
517static void __devinit ssb_pcicore_init_clientmode(struct ssb_pcicore *pc)
518{
519	ssb_pcicore_fix_sprom_core_index(pc);
 
 
 
 
520
521	/* Disable PCI interrupts. */
522	ssb_write32(pc->dev, SSB_INTVEC, 0);
523
524	/* Additional PCIe always once-executed workarounds */
525	if (pc->dev->id.coreid == SSB_DEV_PCIE) {
526		ssb_pcicore_serdes_workaround(pc);
527		/* TODO: ASPM */
528		/* TODO: Clock Request Update */
529	}
530}
531
532void __devinit ssb_pcicore_init(struct ssb_pcicore *pc)
533{
534	struct ssb_device *dev = pc->dev;
535
536	if (!dev)
537		return;
538	if (!ssb_device_is_enabled(dev))
539		ssb_device_enable(dev, 0);
540
541#ifdef CONFIG_SSB_PCICORE_HOSTMODE
542	pc->hostmode = pcicore_is_in_hostmode(pc);
543	if (pc->hostmode)
544		ssb_pcicore_init_hostmode(pc);
545#endif /* CONFIG_SSB_PCICORE_HOSTMODE */
546	if (!pc->hostmode)
547		ssb_pcicore_init_clientmode(pc);
548}
549
550static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address)
551{
552	pcicore_write32(pc, 0x130, address);
553	return pcicore_read32(pc, 0x134);
554}
555
556static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data)
557{
558	pcicore_write32(pc, 0x130, address);
559	pcicore_write32(pc, 0x134, data);
560}
561
562static void ssb_pcie_mdio_set_phy(struct ssb_pcicore *pc, u8 phy)
563{
564	const u16 mdio_control = 0x128;
565	const u16 mdio_data = 0x12C;
566	u32 v;
567	int i;
568
569	v = (1 << 30); /* Start of Transaction */
570	v |= (1 << 28); /* Write Transaction */
571	v |= (1 << 17); /* Turnaround */
572	v |= (0x1F << 18);
573	v |= (phy << 4);
574	pcicore_write32(pc, mdio_data, v);
575
576	udelay(10);
577	for (i = 0; i < 200; i++) {
578		v = pcicore_read32(pc, mdio_control);
579		if (v & 0x100 /* Trans complete */)
580			break;
581		msleep(1);
582	}
583}
584
585static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address)
586{
587	const u16 mdio_control = 0x128;
588	const u16 mdio_data = 0x12C;
589	int max_retries = 10;
590	u16 ret = 0;
591	u32 v;
592	int i;
593
594	v = 0x80; /* Enable Preamble Sequence */
595	v |= 0x2; /* MDIO Clock Divisor */
596	pcicore_write32(pc, mdio_control, v);
597
598	if (pc->dev->id.revision >= 10) {
599		max_retries = 200;
600		ssb_pcie_mdio_set_phy(pc, device);
601	}
602
603	v = (1 << 30); /* Start of Transaction */
604	v |= (1 << 29); /* Read Transaction */
605	v |= (1 << 17); /* Turnaround */
606	if (pc->dev->id.revision < 10)
607		v |= (u32)device << 22;
608	v |= (u32)address << 18;
609	pcicore_write32(pc, mdio_data, v);
610	/* Wait for the device to complete the transaction */
611	udelay(10);
612	for (i = 0; i < max_retries; i++) {
613		v = pcicore_read32(pc, mdio_control);
614		if (v & 0x100 /* Trans complete */) {
615			udelay(10);
616			ret = pcicore_read32(pc, mdio_data);
617			break;
618		}
619		msleep(1);
620	}
621	pcicore_write32(pc, mdio_control, 0);
622	return ret;
623}
624
625static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
626				u8 address, u16 data)
627{
628	const u16 mdio_control = 0x128;
629	const u16 mdio_data = 0x12C;
630	int max_retries = 10;
631	u32 v;
632	int i;
633
634	v = 0x80; /* Enable Preamble Sequence */
635	v |= 0x2; /* MDIO Clock Divisor */
636	pcicore_write32(pc, mdio_control, v);
637
638	if (pc->dev->id.revision >= 10) {
639		max_retries = 200;
640		ssb_pcie_mdio_set_phy(pc, device);
641	}
642
643	v = (1 << 30); /* Start of Transaction */
644	v |= (1 << 28); /* Write Transaction */
645	v |= (1 << 17); /* Turnaround */
646	if (pc->dev->id.revision < 10)
647		v |= (u32)device << 22;
648	v |= (u32)address << 18;
649	v |= data;
650	pcicore_write32(pc, mdio_data, v);
651	/* Wait for the device to complete the transaction */
652	udelay(10);
653	for (i = 0; i < max_retries; i++) {
654		v = pcicore_read32(pc, mdio_control);
655		if (v & 0x100 /* Trans complete */)
656			break;
657		msleep(1);
658	}
659	pcicore_write32(pc, mdio_control, 0);
660}
661
662int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc,
663				   struct ssb_device *dev)
664{
665	struct ssb_device *pdev = pc->dev;
666	struct ssb_bus *bus;
667	int err = 0;
668	u32 tmp;
669
670	if (dev->bus->bustype != SSB_BUSTYPE_PCI) {
671		/* This SSB device is not on a PCI host-bus. So the IRQs are
672		 * not routed through the PCI core.
673		 * So we must not enable routing through the PCI core. */
674		goto out;
675	}
676
677	if (!pdev)
678		goto out;
679	bus = pdev->bus;
680
681	might_sleep_if(pdev->id.coreid != SSB_DEV_PCI);
682
683	/* Enable interrupts for this device. */
684	if ((pdev->id.revision >= 6) || (pdev->id.coreid == SSB_DEV_PCIE)) {
685		u32 coremask;
686
687		/* Calculate the "coremask" for the device. */
688		coremask = (1 << dev->core_index);
689
690		SSB_WARN_ON(bus->bustype != SSB_BUSTYPE_PCI);
691		err = pci_read_config_dword(bus->host_pci, SSB_PCI_IRQMASK, &tmp);
692		if (err)
693			goto out;
694		tmp |= coremask << 8;
695		err = pci_write_config_dword(bus->host_pci, SSB_PCI_IRQMASK, tmp);
696		if (err)
697			goto out;
698	} else {
699		u32 intvec;
700
701		intvec = ssb_read32(pdev, SSB_INTVEC);
702		tmp = ssb_read32(dev, SSB_TPSFLAG);
703		tmp &= SSB_TPSFLAG_BPFLAG;
704		intvec |= (1 << tmp);
705		ssb_write32(pdev, SSB_INTVEC, intvec);
706	}
707
708	/* Setup PCIcore operation. */
709	if (pc->setup_done)
710		goto out;
711	if (pdev->id.coreid == SSB_DEV_PCI) {
712		ssb_pcicore_pci_setup_workarounds(pc);
713	} else {
714		WARN_ON(pdev->id.coreid != SSB_DEV_PCIE);
715		ssb_pcicore_pcie_setup_workarounds(pc);
716	}
717	pc->setup_done = 1;
718out:
719	return err;
720}
721EXPORT_SYMBOL(ssb_pcicore_dev_irqvecs_enable);
v3.5.6
  1/*
  2 * Sonics Silicon Backplane
  3 * Broadcom PCI-core driver
  4 *
  5 * Copyright 2005, Broadcom Corporation
  6 * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
  7 *
  8 * Licensed under the GNU/GPL. See COPYING for details.
  9 */
 10
 11#include <linux/ssb/ssb.h>
 12#include <linux/pci.h>
 13#include <linux/export.h>
 14#include <linux/delay.h>
 15#include <linux/ssb/ssb_embedded.h>
 16
 17#include "ssb_private.h"
 18
 19static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address);
 20static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data);
 21static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address);
 22static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
 23				u8 address, u16 data);
 24
 25static inline
 26u32 pcicore_read32(struct ssb_pcicore *pc, u16 offset)
 27{
 28	return ssb_read32(pc->dev, offset);
 29}
 30
 31static inline
 32void pcicore_write32(struct ssb_pcicore *pc, u16 offset, u32 value)
 33{
 34	ssb_write32(pc->dev, offset, value);
 35}
 36
 37static inline
 38u16 pcicore_read16(struct ssb_pcicore *pc, u16 offset)
 39{
 40	return ssb_read16(pc->dev, offset);
 41}
 42
 43static inline
 44void pcicore_write16(struct ssb_pcicore *pc, u16 offset, u16 value)
 45{
 46	ssb_write16(pc->dev, offset, value);
 47}
 48
 49/**************************************************
 50 * Code for hostmode operation.
 51 **************************************************/
 52
 53#ifdef CONFIG_SSB_PCICORE_HOSTMODE
 54
 55#include <asm/paccess.h>
 56/* Probe a 32bit value on the bus and catch bus exceptions.
 57 * Returns nonzero on a bus exception.
 58 * This is MIPS specific */
 59#define mips_busprobe32(val, addr)	get_dbe((val), ((u32 *)(addr)))
 60
 61/* Assume one-hot slot wiring */
 62#define SSB_PCI_SLOT_MAX	16
 63
 64/* Global lock is OK, as we won't have more than one extpci anyway. */
 65static DEFINE_SPINLOCK(cfgspace_lock);
 66/* Core to access the external PCI config space. Can only have one. */
 67static struct ssb_pcicore *extpci_core;
 68
 69
 70static u32 get_cfgspace_addr(struct ssb_pcicore *pc,
 71			     unsigned int bus, unsigned int dev,
 72			     unsigned int func, unsigned int off)
 73{
 74	u32 addr = 0;
 75	u32 tmp;
 76
 77	/* We do only have one cardbus device behind the bridge. */
 78	if (pc->cardbusmode && (dev > 1))
 79		goto out;
 80
 81	if (bus == 0) {
 82		/* Type 0 transaction */
 83		if (unlikely(dev >= SSB_PCI_SLOT_MAX))
 84			goto out;
 85		/* Slide the window */
 86		tmp = SSB_PCICORE_SBTOPCI_CFG0;
 87		tmp |= ((1 << (dev + 16)) & SSB_PCICORE_SBTOPCI1_MASK);
 88		pcicore_write32(pc, SSB_PCICORE_SBTOPCI1, tmp);
 89		/* Calculate the address */
 90		addr = SSB_PCI_CFG;
 91		addr |= ((1 << (dev + 16)) & ~SSB_PCICORE_SBTOPCI1_MASK);
 92		addr |= (func << 8);
 93		addr |= (off & ~3);
 94	} else {
 95		/* Type 1 transaction */
 96		pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
 97				SSB_PCICORE_SBTOPCI_CFG1);
 98		/* Calculate the address */
 99		addr = SSB_PCI_CFG;
100		addr |= (bus << 16);
101		addr |= (dev << 11);
102		addr |= (func << 8);
103		addr |= (off & ~3);
104	}
105out:
106	return addr;
107}
108
109static int ssb_extpci_read_config(struct ssb_pcicore *pc,
110				  unsigned int bus, unsigned int dev,
111				  unsigned int func, unsigned int off,
112				  void *buf, int len)
113{
114	int err = -EINVAL;
115	u32 addr, val;
116	void __iomem *mmio;
117
118	SSB_WARN_ON(!pc->hostmode);
119	if (unlikely(len != 1 && len != 2 && len != 4))
120		goto out;
121	addr = get_cfgspace_addr(pc, bus, dev, func, off);
122	if (unlikely(!addr))
123		goto out;
124	err = -ENOMEM;
125	mmio = ioremap_nocache(addr, len);
126	if (!mmio)
127		goto out;
128
129	if (mips_busprobe32(val, mmio)) {
130		val = 0xffffffff;
131		goto unmap;
132	}
133
134	val = readl(mmio);
135	val >>= (8 * (off & 3));
136
137	switch (len) {
138	case 1:
139		*((u8 *)buf) = (u8)val;
140		break;
141	case 2:
142		*((u16 *)buf) = (u16)val;
143		break;
144	case 4:
145		*((u32 *)buf) = (u32)val;
146		break;
147	}
148	err = 0;
149unmap:
150	iounmap(mmio);
151out:
152	return err;
153}
154
155static int ssb_extpci_write_config(struct ssb_pcicore *pc,
156				   unsigned int bus, unsigned int dev,
157				   unsigned int func, unsigned int off,
158				   const void *buf, int len)
159{
160	int err = -EINVAL;
161	u32 addr, val = 0;
162	void __iomem *mmio;
163
164	SSB_WARN_ON(!pc->hostmode);
165	if (unlikely(len != 1 && len != 2 && len != 4))
166		goto out;
167	addr = get_cfgspace_addr(pc, bus, dev, func, off);
168	if (unlikely(!addr))
169		goto out;
170	err = -ENOMEM;
171	mmio = ioremap_nocache(addr, len);
172	if (!mmio)
173		goto out;
174
175	if (mips_busprobe32(val, mmio)) {
176		val = 0xffffffff;
177		goto unmap;
178	}
179
180	switch (len) {
181	case 1:
182		val = readl(mmio);
183		val &= ~(0xFF << (8 * (off & 3)));
184		val |= *((const u8 *)buf) << (8 * (off & 3));
185		break;
186	case 2:
187		val = readl(mmio);
188		val &= ~(0xFFFF << (8 * (off & 3)));
189		val |= *((const u16 *)buf) << (8 * (off & 3));
190		break;
191	case 4:
192		val = *((const u32 *)buf);
193		break;
194	}
195	writel(val, mmio);
196
197	err = 0;
198unmap:
199	iounmap(mmio);
200out:
201	return err;
202}
203
204static int ssb_pcicore_read_config(struct pci_bus *bus, unsigned int devfn,
205				   int reg, int size, u32 *val)
206{
207	unsigned long flags;
208	int err;
209
210	spin_lock_irqsave(&cfgspace_lock, flags);
211	err = ssb_extpci_read_config(extpci_core, bus->number, PCI_SLOT(devfn),
212				     PCI_FUNC(devfn), reg, val, size);
213	spin_unlock_irqrestore(&cfgspace_lock, flags);
214
215	return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
216}
217
218static int ssb_pcicore_write_config(struct pci_bus *bus, unsigned int devfn,
219				    int reg, int size, u32 val)
220{
221	unsigned long flags;
222	int err;
223
224	spin_lock_irqsave(&cfgspace_lock, flags);
225	err = ssb_extpci_write_config(extpci_core, bus->number, PCI_SLOT(devfn),
226				      PCI_FUNC(devfn), reg, &val, size);
227	spin_unlock_irqrestore(&cfgspace_lock, flags);
228
229	return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
230}
231
232static struct pci_ops ssb_pcicore_pciops = {
233	.read	= ssb_pcicore_read_config,
234	.write	= ssb_pcicore_write_config,
235};
236
237static struct resource ssb_pcicore_mem_resource = {
238	.name	= "SSB PCIcore external memory",
239	.start	= SSB_PCI_DMA,
240	.end	= SSB_PCI_DMA + SSB_PCI_DMA_SZ - 1,
241	.flags	= IORESOURCE_MEM | IORESOURCE_PCI_FIXED,
242};
243
244static struct resource ssb_pcicore_io_resource = {
245	.name	= "SSB PCIcore external I/O",
246	.start	= 0x100,
247	.end	= 0x7FF,
248	.flags	= IORESOURCE_IO | IORESOURCE_PCI_FIXED,
249};
250
251static struct pci_controller ssb_pcicore_controller = {
252	.pci_ops	= &ssb_pcicore_pciops,
253	.io_resource	= &ssb_pcicore_io_resource,
254	.mem_resource	= &ssb_pcicore_mem_resource,
255};
256
257/* This function is called when doing a pci_enable_device().
258 * We must first check if the device is a device on the PCI-core bridge. */
259int ssb_pcicore_plat_dev_init(struct pci_dev *d)
260{
261	if (d->bus->ops != &ssb_pcicore_pciops) {
262		/* This is not a device on the PCI-core bridge. */
263		return -ENODEV;
264	}
265
266	ssb_printk(KERN_INFO "PCI: Fixing up device %s\n",
267		   pci_name(d));
268
269	/* Fix up interrupt lines */
270	d->irq = ssb_mips_irq(extpci_core->dev) + 2;
271	pci_write_config_byte(d, PCI_INTERRUPT_LINE, d->irq);
272
273	return 0;
274}
275
276/* Early PCI fixup for a device on the PCI-core bridge. */
277static void ssb_pcicore_fixup_pcibridge(struct pci_dev *dev)
278{
279	u8 lat;
280
281	if (dev->bus->ops != &ssb_pcicore_pciops) {
282		/* This is not a device on the PCI-core bridge. */
283		return;
284	}
285	if (dev->bus->number != 0 || PCI_SLOT(dev->devfn) != 0)
286		return;
287
288	ssb_printk(KERN_INFO "PCI: Fixing up bridge %s\n", pci_name(dev));
289
290	/* Enable PCI bridge bus mastering and memory space */
291	pci_set_master(dev);
292	if (pcibios_enable_device(dev, ~0) < 0) {
293		ssb_printk(KERN_ERR "PCI: SSB bridge enable failed\n");
294		return;
295	}
296
297	/* Enable PCI bridge BAR1 prefetch and burst */
298	pci_write_config_dword(dev, SSB_BAR1_CONTROL, 3);
299
300	/* Make sure our latency is high enough to handle the devices behind us */
301	lat = 168;
302	ssb_printk(KERN_INFO "PCI: Fixing latency timer of device %s to %u\n",
303		   pci_name(dev), lat);
304	pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
305}
306DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, ssb_pcicore_fixup_pcibridge);
307
308/* PCI device IRQ mapping. */
309int ssb_pcicore_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
310{
311	if (dev->bus->ops != &ssb_pcicore_pciops) {
312		/* This is not a device on the PCI-core bridge. */
313		return -ENODEV;
314	}
315	return ssb_mips_irq(extpci_core->dev) + 2;
316}
317
318static void __devinit ssb_pcicore_init_hostmode(struct ssb_pcicore *pc)
319{
320	u32 val;
321
322	if (WARN_ON(extpci_core))
323		return;
324	extpci_core = pc;
325
326	ssb_dprintk(KERN_INFO PFX "PCIcore in host mode found\n");
327	/* Reset devices on the external PCI bus */
328	val = SSB_PCICORE_CTL_RST_OE;
329	val |= SSB_PCICORE_CTL_CLK_OE;
330	pcicore_write32(pc, SSB_PCICORE_CTL, val);
331	val |= SSB_PCICORE_CTL_CLK; /* Clock on */
332	pcicore_write32(pc, SSB_PCICORE_CTL, val);
333	udelay(150); /* Assertion time demanded by the PCI standard */
334	val |= SSB_PCICORE_CTL_RST; /* Deassert RST# */
335	pcicore_write32(pc, SSB_PCICORE_CTL, val);
336	val = SSB_PCICORE_ARBCTL_INTERN;
337	pcicore_write32(pc, SSB_PCICORE_ARBCTL, val);
338	udelay(1); /* Assertion time demanded by the PCI standard */
339
340	if (pc->dev->bus->has_cardbus_slot) {
341		ssb_dprintk(KERN_INFO PFX "CardBus slot detected\n");
342		pc->cardbusmode = 1;
343		/* GPIO 1 resets the bridge */
344		ssb_gpio_out(pc->dev->bus, 1, 1);
345		ssb_gpio_outen(pc->dev->bus, 1, 1);
346		pcicore_write16(pc, SSB_PCICORE_SPROM(0),
347				pcicore_read16(pc, SSB_PCICORE_SPROM(0))
348				| 0x0400);
349	}
350
351	/* 64MB I/O window */
352	pcicore_write32(pc, SSB_PCICORE_SBTOPCI0,
353			SSB_PCICORE_SBTOPCI_IO);
354	/* 64MB config space */
355	pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
356			SSB_PCICORE_SBTOPCI_CFG0);
357	/* 1GB memory window */
358	pcicore_write32(pc, SSB_PCICORE_SBTOPCI2,
359			SSB_PCICORE_SBTOPCI_MEM | SSB_PCI_DMA);
360
361	/* Enable PCI bridge BAR0 prefetch and burst */
362	val = PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
363	ssb_extpci_write_config(pc, 0, 0, 0, PCI_COMMAND, &val, 2);
364	/* Clear error conditions */
365	val = 0;
366	ssb_extpci_write_config(pc, 0, 0, 0, PCI_STATUS, &val, 2);
367
368	/* Enable PCI interrupts */
369	pcicore_write32(pc, SSB_PCICORE_IMASK,
370			SSB_PCICORE_IMASK_INTA);
371
372	/* Ok, ready to run, register it to the system.
373	 * The following needs change, if we want to port hostmode
374	 * to non-MIPS platform. */
375	ssb_pcicore_controller.io_map_base = (unsigned long)ioremap_nocache(SSB_PCI_MEM, 0x04000000);
376	set_io_port_base(ssb_pcicore_controller.io_map_base);
377	/* Give some time to the PCI controller to configure itself with the new
378	 * values. Not waiting at this point causes crashes of the machine. */
379	mdelay(10);
380	register_pci_controller(&ssb_pcicore_controller);
381}
382
383static int __devinit pcicore_is_in_hostmode(struct ssb_pcicore *pc)
384{
385	struct ssb_bus *bus = pc->dev->bus;
386	u16 chipid_top;
387	u32 tmp;
388
389	chipid_top = (bus->chip_id & 0xFF00);
390	if (chipid_top != 0x4700 &&
391	    chipid_top != 0x5300)
392		return 0;
393
394	if (bus->sprom.boardflags_lo & SSB_PCICORE_BFL_NOPCI)
395		return 0;
396
397	/* The 200-pin BCM4712 package does not bond out PCI. Even when
398	 * PCI is bonded out, some boards may leave the pins floating. */
399	if (bus->chip_id == 0x4712) {
400		if (bus->chip_package == SSB_CHIPPACK_BCM4712S)
401			return 0;
402		if (bus->chip_package == SSB_CHIPPACK_BCM4712M)
403			return 0;
404	}
405	if (bus->chip_id == 0x5350)
406		return 0;
407
408	return !mips_busprobe32(tmp, (bus->mmio + (pc->dev->core_index * SSB_CORE_SIZE)));
409}
410#endif /* CONFIG_SSB_PCICORE_HOSTMODE */
411
412/**************************************************
413 * Workarounds.
414 **************************************************/
415
416static void __devinit ssb_pcicore_fix_sprom_core_index(struct ssb_pcicore *pc)
417{
418	u16 tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(0));
419	if (((tmp & 0xF000) >> 12) != pc->dev->core_index) {
420		tmp &= ~0xF000;
421		tmp |= (pc->dev->core_index << 12);
422		pcicore_write16(pc, SSB_PCICORE_SPROM(0), tmp);
423	}
424}
425
426static u8 ssb_pcicore_polarity_workaround(struct ssb_pcicore *pc)
427{
428	return (ssb_pcie_read(pc, 0x204) & 0x10) ? 0xC0 : 0x80;
429}
430
431static void ssb_pcicore_serdes_workaround(struct ssb_pcicore *pc)
432{
433	const u8 serdes_pll_device = 0x1D;
434	const u8 serdes_rx_device = 0x1F;
435	u16 tmp;
436
437	ssb_pcie_mdio_write(pc, serdes_rx_device, 1 /* Control */,
438			    ssb_pcicore_polarity_workaround(pc));
439	tmp = ssb_pcie_mdio_read(pc, serdes_pll_device, 1 /* Control */);
440	if (tmp & 0x4000)
441		ssb_pcie_mdio_write(pc, serdes_pll_device, 1, tmp & ~0x4000);
442}
443
444static void ssb_pcicore_pci_setup_workarounds(struct ssb_pcicore *pc)
445{
446	struct ssb_device *pdev = pc->dev;
447	struct ssb_bus *bus = pdev->bus;
448	u32 tmp;
449
450	tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
451	tmp |= SSB_PCICORE_SBTOPCI_PREF;
452	tmp |= SSB_PCICORE_SBTOPCI_BURST;
453	pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
454
455	if (pdev->id.revision < 5) {
456		tmp = ssb_read32(pdev, SSB_IMCFGLO);
457		tmp &= ~SSB_IMCFGLO_SERTO;
458		tmp |= 2;
459		tmp &= ~SSB_IMCFGLO_REQTO;
460		tmp |= 3 << SSB_IMCFGLO_REQTO_SHIFT;
461		ssb_write32(pdev, SSB_IMCFGLO, tmp);
462		ssb_commit_settings(bus);
463	} else if (pdev->id.revision >= 11) {
464		tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
465		tmp |= SSB_PCICORE_SBTOPCI_MRM;
466		pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
467	}
468}
469
470static void ssb_pcicore_pcie_setup_workarounds(struct ssb_pcicore *pc)
471{
472	u32 tmp;
473	u8 rev = pc->dev->id.revision;
474
475	if (rev == 0 || rev == 1) {
476		/* TLP Workaround register. */
477		tmp = ssb_pcie_read(pc, 0x4);
478		tmp |= 0x8;
479		ssb_pcie_write(pc, 0x4, tmp);
480	}
481	if (rev == 1) {
482		/* DLLP Link Control register. */
483		tmp = ssb_pcie_read(pc, 0x100);
484		tmp |= 0x40;
485		ssb_pcie_write(pc, 0x100, tmp);
486	}
487
488	if (rev == 0) {
489		const u8 serdes_rx_device = 0x1F;
490
491		ssb_pcie_mdio_write(pc, serdes_rx_device,
492					2 /* Timer */, 0x8128);
493		ssb_pcie_mdio_write(pc, serdes_rx_device,
494					6 /* CDR */, 0x0100);
495		ssb_pcie_mdio_write(pc, serdes_rx_device,
496					7 /* CDR BW */, 0x1466);
497	} else if (rev == 3 || rev == 4 || rev == 5) {
498		/* TODO: DLLP Power Management Threshold */
499		ssb_pcicore_serdes_workaround(pc);
500		/* TODO: ASPM */
501	} else if (rev == 7) {
502		/* TODO: No PLL down */
503	}
504
505	if (rev >= 6) {
506		/* Miscellaneous Configuration Fixup */
507		tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(5));
508		if (!(tmp & 0x8000))
509			pcicore_write16(pc, SSB_PCICORE_SPROM(5),
510					tmp | 0x8000);
511	}
512}
513
514/**************************************************
515 * Generic and Clientmode operation code.
516 **************************************************/
517
518static void __devinit ssb_pcicore_init_clientmode(struct ssb_pcicore *pc)
519{
520	struct ssb_device *pdev = pc->dev;
521	struct ssb_bus *bus = pdev->bus;
522
523	if (bus->bustype == SSB_BUSTYPE_PCI)
524		ssb_pcicore_fix_sprom_core_index(pc);
525
526	/* Disable PCI interrupts. */
527	ssb_write32(pdev, SSB_INTVEC, 0);
528
529	/* Additional PCIe always once-executed workarounds */
530	if (pc->dev->id.coreid == SSB_DEV_PCIE) {
531		ssb_pcicore_serdes_workaround(pc);
532		/* TODO: ASPM */
533		/* TODO: Clock Request Update */
534	}
535}
536
537void __devinit ssb_pcicore_init(struct ssb_pcicore *pc)
538{
539	struct ssb_device *dev = pc->dev;
540
541	if (!dev)
542		return;
543	if (!ssb_device_is_enabled(dev))
544		ssb_device_enable(dev, 0);
545
546#ifdef CONFIG_SSB_PCICORE_HOSTMODE
547	pc->hostmode = pcicore_is_in_hostmode(pc);
548	if (pc->hostmode)
549		ssb_pcicore_init_hostmode(pc);
550#endif /* CONFIG_SSB_PCICORE_HOSTMODE */
551	if (!pc->hostmode)
552		ssb_pcicore_init_clientmode(pc);
553}
554
555static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address)
556{
557	pcicore_write32(pc, 0x130, address);
558	return pcicore_read32(pc, 0x134);
559}
560
561static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data)
562{
563	pcicore_write32(pc, 0x130, address);
564	pcicore_write32(pc, 0x134, data);
565}
566
567static void ssb_pcie_mdio_set_phy(struct ssb_pcicore *pc, u8 phy)
568{
569	const u16 mdio_control = 0x128;
570	const u16 mdio_data = 0x12C;
571	u32 v;
572	int i;
573
574	v = (1 << 30); /* Start of Transaction */
575	v |= (1 << 28); /* Write Transaction */
576	v |= (1 << 17); /* Turnaround */
577	v |= (0x1F << 18);
578	v |= (phy << 4);
579	pcicore_write32(pc, mdio_data, v);
580
581	udelay(10);
582	for (i = 0; i < 200; i++) {
583		v = pcicore_read32(pc, mdio_control);
584		if (v & 0x100 /* Trans complete */)
585			break;
586		msleep(1);
587	}
588}
589
590static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address)
591{
592	const u16 mdio_control = 0x128;
593	const u16 mdio_data = 0x12C;
594	int max_retries = 10;
595	u16 ret = 0;
596	u32 v;
597	int i;
598
599	v = 0x80; /* Enable Preamble Sequence */
600	v |= 0x2; /* MDIO Clock Divisor */
601	pcicore_write32(pc, mdio_control, v);
602
603	if (pc->dev->id.revision >= 10) {
604		max_retries = 200;
605		ssb_pcie_mdio_set_phy(pc, device);
606	}
607
608	v = (1 << 30); /* Start of Transaction */
609	v |= (1 << 29); /* Read Transaction */
610	v |= (1 << 17); /* Turnaround */
611	if (pc->dev->id.revision < 10)
612		v |= (u32)device << 22;
613	v |= (u32)address << 18;
614	pcicore_write32(pc, mdio_data, v);
615	/* Wait for the device to complete the transaction */
616	udelay(10);
617	for (i = 0; i < max_retries; i++) {
618		v = pcicore_read32(pc, mdio_control);
619		if (v & 0x100 /* Trans complete */) {
620			udelay(10);
621			ret = pcicore_read32(pc, mdio_data);
622			break;
623		}
624		msleep(1);
625	}
626	pcicore_write32(pc, mdio_control, 0);
627	return ret;
628}
629
630static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
631				u8 address, u16 data)
632{
633	const u16 mdio_control = 0x128;
634	const u16 mdio_data = 0x12C;
635	int max_retries = 10;
636	u32 v;
637	int i;
638
639	v = 0x80; /* Enable Preamble Sequence */
640	v |= 0x2; /* MDIO Clock Divisor */
641	pcicore_write32(pc, mdio_control, v);
642
643	if (pc->dev->id.revision >= 10) {
644		max_retries = 200;
645		ssb_pcie_mdio_set_phy(pc, device);
646	}
647
648	v = (1 << 30); /* Start of Transaction */
649	v |= (1 << 28); /* Write Transaction */
650	v |= (1 << 17); /* Turnaround */
651	if (pc->dev->id.revision < 10)
652		v |= (u32)device << 22;
653	v |= (u32)address << 18;
654	v |= data;
655	pcicore_write32(pc, mdio_data, v);
656	/* Wait for the device to complete the transaction */
657	udelay(10);
658	for (i = 0; i < max_retries; i++) {
659		v = pcicore_read32(pc, mdio_control);
660		if (v & 0x100 /* Trans complete */)
661			break;
662		msleep(1);
663	}
664	pcicore_write32(pc, mdio_control, 0);
665}
666
667int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc,
668				   struct ssb_device *dev)
669{
670	struct ssb_device *pdev = pc->dev;
671	struct ssb_bus *bus;
672	int err = 0;
673	u32 tmp;
674
675	if (dev->bus->bustype != SSB_BUSTYPE_PCI) {
676		/* This SSB device is not on a PCI host-bus. So the IRQs are
677		 * not routed through the PCI core.
678		 * So we must not enable routing through the PCI core. */
679		goto out;
680	}
681
682	if (!pdev)
683		goto out;
684	bus = pdev->bus;
685
686	might_sleep_if(pdev->id.coreid != SSB_DEV_PCI);
687
688	/* Enable interrupts for this device. */
689	if ((pdev->id.revision >= 6) || (pdev->id.coreid == SSB_DEV_PCIE)) {
690		u32 coremask;
691
692		/* Calculate the "coremask" for the device. */
693		coremask = (1 << dev->core_index);
694
695		SSB_WARN_ON(bus->bustype != SSB_BUSTYPE_PCI);
696		err = pci_read_config_dword(bus->host_pci, SSB_PCI_IRQMASK, &tmp);
697		if (err)
698			goto out;
699		tmp |= coremask << 8;
700		err = pci_write_config_dword(bus->host_pci, SSB_PCI_IRQMASK, tmp);
701		if (err)
702			goto out;
703	} else {
704		u32 intvec;
705
706		intvec = ssb_read32(pdev, SSB_INTVEC);
707		tmp = ssb_read32(dev, SSB_TPSFLAG);
708		tmp &= SSB_TPSFLAG_BPFLAG;
709		intvec |= (1 << tmp);
710		ssb_write32(pdev, SSB_INTVEC, intvec);
711	}
712
713	/* Setup PCIcore operation. */
714	if (pc->setup_done)
715		goto out;
716	if (pdev->id.coreid == SSB_DEV_PCI) {
717		ssb_pcicore_pci_setup_workarounds(pc);
718	} else {
719		WARN_ON(pdev->id.coreid != SSB_DEV_PCIE);
720		ssb_pcicore_pcie_setup_workarounds(pc);
721	}
722	pc->setup_done = 1;
723out:
724	return err;
725}
726EXPORT_SYMBOL(ssb_pcicore_dev_irqvecs_enable);