summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/leon2/pci/at697_pci.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-11-14bsps/sparc: Change license to BSD-2 for files with Gaisler copyrightDaniel Cederman1-3/+22
This patch changes the license to BSD-2 for all source files where the copyright is held by Aeroflex Gaisler, Cobham Gaisler, or Gaisler Research. Some files also includes copyright right statements from OAR and/or embedded Brains in addition to Gaisler. Updates #3053.
2018-04-20bsps/leon2: Move PCI driver to bspsSebastian Huber1-0/+0
This patch is a part of the BSP source reorganization. Update #3285.
2015-04-17DRVMGR: KEY_TYPE now a enum drvmgr_ktDaniel Hellstrom1-4/+4
2015-04-17sparc bsps: updated license to rtems.orgDaniel Hellstrom1-1/+1
2015-04-17LEON: converted AT697,GRPCi,GRPCI2,PCIF to BSD headerDaniel Hellstrom1-3/+0
2015-04-17LEON: move driver headers to bsp/ directoryDaniel Hellstrom1-1/+1
2015-04-17AT697PCI: fix build warningsDaniel Hellstrom1-12/+12
2015-04-17AT697PCI: fix PCI cfg writesDaniel Hellstrom1-2/+2
2015-04-17AT697 PCI: abort whhen a peripheral PCI system detectedDaniel Hellstrom1-1/+8
2015-04-17LEON PCI: host bridge driver support for probing dev0=AD16Daniel Hellstrom1-6/+2
Before the LIBPCI didn't probe device0 (AD16), the host bridge drivers used bus=dev=func=0 to internally probe the host bridge's target interface. Now that LIBPCI uses bus=dev=func=0 to access device0, bus=0xff is introduced internally to identify the host bridge target configuration space.
2015-04-17LEON: replaced old BSP PCI layer with new generic libpci PCI layerDaniel Hellstrom1-0/+656
The old code used a limited PCI configuration library, which was duplicated into LEON2 and LEON3 BSP pci.c together with respective Host controller PCI interface. The LEON2 BSP had support for AT697 PCI, and LEON3 for GRPCI PCI Host controller. With this update new PCI Host drivers are added, and all support the new generic PCI Library: * AT697 PCI (LEON2 only) * GRPCI (LEON2-GRLIB and LEON3) * GRPCI2 (LEON2-GRLIB and LEON3) * Actel PCIF GRLIB Wrapper (LEON3 only) The LEON2 BSP is defined as big-endian PCI in bsp.h, since the AT697 supports only big-endian PCI.