blob: 484a56e81dcc61f438b4c4c84b3fb6636756d4c6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Daniel Hellstrom26893c12011-05-23 21:04:47 +00002/*
3 * asm/leon_pci.h
4 *
5 * Copyright (C) 2011 Aeroflex Gaisler AB, Daniel Hellstrom
6 */
7
8#ifndef _ASM_LEON_PCI_H_
9#define _ASM_LEON_PCI_H_
10
11/* PCI related definitions */
12struct leon_pci_info {
13 struct pci_ops *ops;
14 struct resource io_space;
15 struct resource mem_space;
Daniel Hellstromaa90b692013-03-04 00:24:27 +000016 struct resource busn;
Ralf Baechled5341942011-06-10 15:30:21 +010017 int (*map_irq)(const struct pci_dev *dev, u8 slot, u8 pin);
Daniel Hellstrom26893c12011-05-23 21:04:47 +000018};
19
Sam Ravnborgf05a6862014-05-16 23:25:50 +020020void leon_pci_init(struct platform_device *ofdev,
21 struct leon_pci_info *info);
Daniel Hellstrom26893c12011-05-23 21:04:47 +000022
23#endif /* _ASM_LEON_PCI_H_ */