pci-ar724x.c 9.2 KB
Newer Older
1
/*
2
 *  Atheros AR724X PCI host controller driver
3 4
 *
 *  Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com>
5
 *  Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
6 7 8 9 10 11
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License version 2 as published
 *  by the Free Software Foundation.
 */

12
#include <linux/irq.h>
13
#include <linux/pci.h>
14 15
#include <linux/module.h>
#include <linux/platform_device.h>
16
#include <asm/mach-ath79/ath79.h>
17
#include <asm/mach-ath79/ar71xx_regs.h>
18

19
#define AR724X_PCI_REG_RESET		0x18
20 21 22
#define AR724X_PCI_REG_INT_STATUS	0x4c
#define AR724X_PCI_REG_INT_MASK		0x50

23 24
#define AR724X_PCI_RESET_LINK_UP	BIT(0)

25 26 27 28
#define AR724X_PCI_INT_DEV0		BIT(14)

#define AR724X_PCI_IRQ_COUNT		1

29 30
#define AR7240_BAR0_WAR_VALUE	0xffff

31 32 33 34 35 36 37
#define AR724X_PCI_CMD_INIT	(PCI_COMMAND_MEMORY |		\
				 PCI_COMMAND_MASTER |		\
				 PCI_COMMAND_INVALIDATE |	\
				 PCI_COMMAND_PARITY |		\
				 PCI_COMMAND_SERR |		\
				 PCI_COMMAND_FAST_BACK)

38 39 40
struct ar724x_pci_controller {
	void __iomem *devcfg_base;
	void __iomem *ctrl_base;
41
	void __iomem *crp_base;
42

43
	int irq;
44
	int irq_base;
45 46 47 48 49 50

	bool link_up;
	bool bar0_is_cached;
	u32  bar0_value;

	struct pci_controller pci_controller;
51 52
	struct resource io_res;
	struct resource mem_res;
53
};
54

55
static inline bool ar724x_pci_check_link(struct ar724x_pci_controller *apc)
56 57 58
{
	u32 reset;

59
	reset = __raw_readl(apc->ctrl_base + AR724X_PCI_REG_RESET);
60 61
	return reset & AR724X_PCI_RESET_LINK_UP;
}
62

63 64 65 66 67 68 69 70 71
static inline struct ar724x_pci_controller *
pci_bus_to_ar724x_controller(struct pci_bus *bus)
{
	struct pci_controller *hose;

	hose = (struct pci_controller *) bus->sysdata;
	return container_of(hose, struct ar724x_pci_controller, pci_controller);
}

72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
static int ar724x_pci_local_write(struct ar724x_pci_controller *apc,
				  int where, int size, u32 value)
{
	void __iomem *base;
	u32 data;
	int s;

	WARN_ON(where & (size - 1));

	if (!apc->link_up)
		return PCIBIOS_DEVICE_NOT_FOUND;

	base = apc->crp_base;
	data = __raw_readl(base + (where & ~3));

	switch (size) {
	case 1:
		s = ((where & 3) * 8);
		data &= ~(0xff << s);
		data |= ((value & 0xff) << s);
		break;
	case 2:
		s = ((where & 2) * 8);
		data &= ~(0xffff << s);
		data |= ((value & 0xffff) << s);
		break;
	case 4:
		data = value;
		break;
	default:
		return PCIBIOS_BAD_REGISTER_NUMBER;
	}

	__raw_writel(data, base + (where & ~3));
	/* flush write */
	__raw_readl(base + (where & ~3));

	return PCIBIOS_SUCCESSFUL;
}

112
static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where,
113 114
			    int size, uint32_t *value)
{
115
	struct ar724x_pci_controller *apc;
116
	void __iomem *base;
117
	u32 data;
118

119 120
	apc = pci_bus_to_ar724x_controller(bus);
	if (!apc->link_up)
121 122
		return PCIBIOS_DEVICE_NOT_FOUND;

123 124 125
	if (devfn)
		return PCIBIOS_DEVICE_NOT_FOUND;

126
	base = apc->devcfg_base;
127
	data = __raw_readl(base + (where & ~3));
128 129 130

	switch (size) {
	case 1:
131 132 133 134 135
		if (where & 1)
			data >>= 8;
		if (where & 2)
			data >>= 16;
		data &= 0xff;
136 137
		break;
	case 2:
138 139 140
		if (where & 2)
			data >>= 16;
		data &= 0xffff;
141 142 143 144 145 146 147
		break;
	case 4:
		break;
	default:
		return PCIBIOS_BAD_REGISTER_NUMBER;
	}

148
	if (where == PCI_BASE_ADDRESS_0 && size == 4 &&
149
	    apc->bar0_is_cached) {
150
		/* use the cached value */
151
		*value = apc->bar0_value;
152 153 154
	} else {
		*value = data;
	}
155 156 157 158

	return PCIBIOS_SUCCESSFUL;
}

159
static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where,
160 161
			     int size, uint32_t value)
{
162
	struct ar724x_pci_controller *apc;
163
	void __iomem *base;
164 165
	u32 data;
	int s;
166

167 168
	apc = pci_bus_to_ar724x_controller(bus);
	if (!apc->link_up)
169 170
		return PCIBIOS_DEVICE_NOT_FOUND;

171 172 173
	if (devfn)
		return PCIBIOS_DEVICE_NOT_FOUND;

174 175 176 177 178 179 180 181 182 183 184 185
	if (soc_is_ar7240() && where == PCI_BASE_ADDRESS_0 && size == 4) {
		if (value != 0xffffffff) {
			/*
			 * WAR for a hw issue. If the BAR0 register of the
			 * device is set to the proper base address, the
			 * memory space of the device is not accessible.
			 *
			 * Cache the intended value so it can be read back,
			 * and write a SoC specific constant value to the
			 * BAR0 register in order to make the device memory
			 * accessible.
			 */
186 187
			apc->bar0_is_cached = true;
			apc->bar0_value = value;
188 189 190

			value = AR7240_BAR0_WAR_VALUE;
		} else {
191
			apc->bar0_is_cached = false;
192 193 194
		}
	}

195
	base = apc->devcfg_base;
196
	data = __raw_readl(base + (where & ~3));
197 198 199

	switch (size) {
	case 1:
200 201 202
		s = ((where & 3) * 8);
		data &= ~(0xff << s);
		data |= ((value & 0xff) << s);
203 204
		break;
	case 2:
205 206 207
		s = ((where & 2) * 8);
		data &= ~(0xffff << s);
		data |= ((value & 0xffff) << s);
208 209
		break;
	case 4:
210
		data = value;
211 212 213 214 215
		break;
	default:
		return PCIBIOS_BAD_REGISTER_NUMBER;
	}

216 217 218
	__raw_writel(data, base + (where & ~3));
	/* flush write */
	__raw_readl(base + (where & ~3));
219 220 221 222

	return PCIBIOS_SUCCESSFUL;
}

223 224 225
static struct pci_ops ar724x_pci_ops = {
	.read	= ar724x_pci_read,
	.write	= ar724x_pci_write,
226 227
};

228
static void ar724x_pci_irq_handler(struct irq_desc *desc)
229
{
230
	struct ar724x_pci_controller *apc;
231 232 233
	void __iomem *base;
	u32 pending;

234
	apc = irq_desc_get_handler_data(desc);
235
	base = apc->ctrl_base;
236 237 238 239 240

	pending = __raw_readl(base + AR724X_PCI_REG_INT_STATUS) &
		  __raw_readl(base + AR724X_PCI_REG_INT_MASK);

	if (pending & AR724X_PCI_INT_DEV0)
241
		generic_handle_irq(apc->irq_base + 0);
242 243 244 245 246 247 248

	else
		spurious_interrupt();
}

static void ar724x_pci_irq_unmask(struct irq_data *d)
{
249
	struct ar724x_pci_controller *apc;
250
	void __iomem *base;
251
	int offset;
252 253
	u32 t;

254 255
	apc = irq_data_get_irq_chip_data(d);
	base = apc->ctrl_base;
256
	offset = apc->irq_base - d->irq;
257

258 259
	switch (offset) {
	case 0:
260 261 262 263 264 265 266 267 268 269
		t = __raw_readl(base + AR724X_PCI_REG_INT_MASK);
		__raw_writel(t | AR724X_PCI_INT_DEV0,
			     base + AR724X_PCI_REG_INT_MASK);
		/* flush write */
		__raw_readl(base + AR724X_PCI_REG_INT_MASK);
	}
}

static void ar724x_pci_irq_mask(struct irq_data *d)
{
270
	struct ar724x_pci_controller *apc;
271
	void __iomem *base;
272
	int offset;
273 274
	u32 t;

275 276
	apc = irq_data_get_irq_chip_data(d);
	base = apc->ctrl_base;
277
	offset = apc->irq_base - d->irq;
278

279 280
	switch (offset) {
	case 0:
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
		t = __raw_readl(base + AR724X_PCI_REG_INT_MASK);
		__raw_writel(t & ~AR724X_PCI_INT_DEV0,
			     base + AR724X_PCI_REG_INT_MASK);

		/* flush write */
		__raw_readl(base + AR724X_PCI_REG_INT_MASK);

		t = __raw_readl(base + AR724X_PCI_REG_INT_STATUS);
		__raw_writel(t | AR724X_PCI_INT_DEV0,
			     base + AR724X_PCI_REG_INT_STATUS);

		/* flush write */
		__raw_readl(base + AR724X_PCI_REG_INT_STATUS);
	}
}

static struct irq_chip ar724x_pci_irq_chip = {
	.name		= "AR724X PCI ",
	.irq_mask	= ar724x_pci_irq_mask,
	.irq_unmask	= ar724x_pci_irq_unmask,
	.irq_mask_ack	= ar724x_pci_irq_mask,
};

304 305
static void ar724x_pci_irq_init(struct ar724x_pci_controller *apc,
				int id)
306 307 308 309
{
	void __iomem *base;
	int i;

310
	base = apc->ctrl_base;
311 312 313 314

	__raw_writel(0, base + AR724X_PCI_REG_INT_MASK);
	__raw_writel(0, base + AR724X_PCI_REG_INT_STATUS);

315
	apc->irq_base = ATH79_PCI_IRQ_BASE + (id * AR724X_PCI_IRQ_COUNT);
316

317 318
	for (i = apc->irq_base;
	     i < apc->irq_base + AR724X_PCI_IRQ_COUNT; i++) {
319 320
		irq_set_chip_and_handler(i, &ar724x_pci_irq_chip,
					 handle_level_irq);
321 322
		irq_set_chip_data(i, apc);
	}
323

324 325
	irq_set_chained_handler_and_data(apc->irq, ar724x_pci_irq_handler,
					 apc);
326 327
}

328 329
static int ar724x_pci_probe(struct platform_device *pdev)
{
330
	struct ar724x_pci_controller *apc;
331
	struct resource *res;
332 333 334 335 336
	int id;

	id = pdev->id;
	if (id == -1)
		id = 0;
337 338 339 340 341

	apc = devm_kzalloc(&pdev->dev, sizeof(struct ar724x_pci_controller),
			    GFP_KERNEL);
	if (!apc)
		return -ENOMEM;
342 343

	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ctrl_base");
344 345 346
	apc->ctrl_base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(apc->ctrl_base))
		return PTR_ERR(apc->ctrl_base);
347 348

	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cfg_base");
349 350 351
	apc->devcfg_base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(apc->devcfg_base))
		return PTR_ERR(apc->devcfg_base);
352

353
	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "crp_base");
354 355 356
	apc->crp_base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(apc->crp_base))
		return PTR_ERR(apc->crp_base);
357

358 359
	apc->irq = platform_get_irq(pdev, 0);
	if (apc->irq < 0)
360 361
		return -EINVAL;

362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
	res = platform_get_resource_byname(pdev, IORESOURCE_IO, "io_base");
	if (!res)
		return -EINVAL;

	apc->io_res.parent = res;
	apc->io_res.name = "PCI IO space";
	apc->io_res.start = res->start;
	apc->io_res.end = res->end;
	apc->io_res.flags = IORESOURCE_IO;

	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mem_base");
	if (!res)
		return -EINVAL;

	apc->mem_res.parent = res;
	apc->mem_res.name = "PCI memory space";
	apc->mem_res.start = res->start;
	apc->mem_res.end = res->end;
	apc->mem_res.flags = IORESOURCE_MEM;

382
	apc->pci_controller.pci_ops = &ar724x_pci_ops;
383 384
	apc->pci_controller.io_resource = &apc->io_res;
	apc->pci_controller.mem_resource = &apc->mem_res;
385 386 387

	apc->link_up = ar724x_pci_check_link(apc);
	if (!apc->link_up)
388 389
		dev_warn(&pdev->dev, "PCIe link is down\n");

390
	ar724x_pci_irq_init(apc, id);
391

392 393
	ar724x_pci_local_write(apc, PCI_COMMAND, 4, AR724X_PCI_CMD_INIT);

394
	register_pci_controller(&apc->pci_controller);
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411

	return 0;
}

static struct platform_driver ar724x_pci_driver = {
	.probe = ar724x_pci_probe,
	.driver = {
		.name = "ar724x-pci",
	},
};

static int __init ar724x_pci_init(void)
{
	return platform_driver_register(&ar724x_pci_driver);
}

postcore_initcall(ar724x_pci_init);