mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [RFC v3 0/5] barebox PCI support
@ 2014-06-25 22:32 Antony Pavlov
  2014-06-25 22:32 ` [RFC v3 1/5] PCI: initial commit Antony Pavlov
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Antony Pavlov @ 2014-06-25 22:32 UTC (permalink / raw)
  To: barebox; +Cc: Clément Leger

This patchseries introduce simple PCI bus support for barebox.

Previous (RFC v2) version can be found here:

  http://lists.infradead.org/pipermail/barebox/2012-March/006327.html

TODOs for RFC v3:

  * no PCI bridges support;
  * introduce dma_alloc_coherent();
  * introduce pci_resource_start();
  * introduce pci_iomap();
  * introduce pci_set_master() & pci_clear_master();
  * clean '#if 0'.

This patchseries can be found on github:

  https://github.com/frantony/barebox/tree/pci.20140626

Antony Pavlov (5):
  PCI: initial commit
  commands: add 'lspci' command
  net: add RealTek RTL-8139 PCI Ethernet driver
  MIPS: add PCI support for GT64120-based Malta board
  MIPS: qemu-malta_defconfig: enable PCI & network stuff

 arch/mips/Kconfig                                |  22 +
 arch/mips/configs/qemu-malta_defconfig           |   4 +
 arch/mips/include/asm/gt64120.h                  |  53 ++
 arch/mips/mach-malta/Makefile                    |   1 +
 arch/mips/mach-malta/include/mach/mach-gt64120.h |   2 +
 arch/mips/mach-malta/pci.c                       | 246 +++++++++
 commands/Kconfig                                 |   8 +
 commands/Makefile                                |   1 +
 commands/lspci.c                                 |  49 ++
 drivers/Makefile                                 |   1 +
 drivers/net/Kconfig                              |   8 +
 drivers/net/Makefile                             |   1 +
 drivers/net/rtl8139.c                            | 621 +++++++++++++++++++++++
 drivers/pci/Kconfig                              |  12 +
 drivers/pci/Makefile                             |   8 +
 drivers/pci/bus.c                                | 110 ++++
 drivers/pci/pci.c                                | 282 ++++++++++
 include/linux/mod_devicetable.h                  |  20 +
 include/linux/pci.h                              | 241 +++++++++
 include/linux/pci_ids.h                          | 141 +++++
 include/linux/pci_regs.h                         | 118 +++++
 21 files changed, 1949 insertions(+)
 create mode 100644 arch/mips/mach-malta/pci.c
 create mode 100644 commands/lspci.c
 create mode 100644 drivers/net/rtl8139.c
 create mode 100644 drivers/pci/Kconfig
 create mode 100644 drivers/pci/Makefile
 create mode 100644 drivers/pci/bus.c
 create mode 100644 drivers/pci/pci.c
 create mode 100644 include/linux/mod_devicetable.h
 create mode 100644 include/linux/pci.h
 create mode 100644 include/linux/pci_ids.h
 create mode 100644 include/linux/pci_regs.h

-- 
1.9.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-07-01  7:36 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-25 22:32 [RFC v3 0/5] barebox PCI support Antony Pavlov
2014-06-25 22:32 ` [RFC v3 1/5] PCI: initial commit Antony Pavlov
2014-06-30 10:18   ` Lucas Stach
2014-07-01  7:29     ` Clément Léger
2014-07-01  7:48       ` Antony Pavlov
2014-06-25 22:32 ` [RFC v3 2/5] commands: add 'lspci' command Antony Pavlov
2014-06-30 10:21   ` Lucas Stach
2014-06-30 17:32     ` Antony Pavlov
2014-06-25 22:32 ` [RFC v3 3/5] net: add RealTek RTL-8139 PCI Ethernet driver Antony Pavlov
2014-06-25 22:32 ` [RFC v3 4/5] MIPS: add PCI support for GT64120-based Malta board Antony Pavlov
2014-06-25 22:32 ` [RFC v3 5/5] MIPS: qemu-malta_defconfig: enable PCI & network stuff Antony Pavlov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox