History log of /src/sys/dev/marvell/gtpci.c |
Revision | | Date | Author | Comments |
1.38 |
| 25-Sep-2022 |
thorpej | Remove unnecessary include of <sys/malloc.h>.
|
1.37 |
| 21-Jul-2022 |
andvar | fix typos in comments and log messages, mainly s/intrrupt/interrupt/.
|
1.36 |
| 07-Aug-2021 |
thorpej | Merge thorpej-cfargs2.
|
1.35 |
| 24-Apr-2021 |
thorpej | branches: 1.35.8; Merge thorpej-cfargs branch:
Simplify and make extensible the config_search() / config_found() / config_attach() interfaces: rather than having different variants for which arguments you want pass along, just have a single call that takes a variadic list of tag-value arguments.
Adjust all call sites: - Simplify wherever possible; don't pass along arguments that aren't actually needed. - Don't be explicit about what interface attribute is attaching if the device only has one. (More simplification.) - Add a config_probe() function to be used in indirect configuiration situations, making is visibly easier to see when indirect config is in play, and allowing for future change in semantics. (As of now, this is just a wrapper around config_match(), but that is an implementation detail.)
Remove unnecessary or redundant interface attributes where they're not needed.
There are currently 5 "cfargs" defined: - CFARG_SUBMATCH (submatch function for direct config) - CFARG_SEARCH (search function for indirect config) - CFARG_IATTR (interface attribte) - CFARG_LOCATORS (locators array) - CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)
...and a sentinel value CFARG_EOL.
Add some extra sanity checking to ensure that interface attributes aren't ambiguous.
Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark ports to associate those device handles with device_t instance. This will trickle trough to more places over time (need back-end for pre-OFW Sun OBP; any others?).
|
1.34 |
| 07-Jul-2020 |
thorpej | branches: 1.34.4; Overhaul the interface to pci_configure_bus(): - Don't expose how PCI bus configuration resource management is implemented. Provide a new resource provider API:
==> pciconf_resource_init() -- Initialize a PCI configuration resources container. ==> pciconf_resource_add() -- Add a PCI configuration resource to the container (I/O, MEM, or prefetchable MEM). Multiple resources of each type may be added. ==> pciconf_resource_fini() -- Tear down the PCI configurtation resources container once the bus has been configured.
This is much easier to use than the previous method of providing an extent map for each kind of resource, and works better for e.g. ACPI platforms that provide potentially multiple PCI resources in tables provided by firmware.
- Re-implement PCI configuration resource management using vmem arenas, rather than extent maps.
|
1.33 |
| 14-Jun-2020 |
chs | replace EX_NOWAIT with EX_WAITOK in device attach methods. remove checks for failures that can no longer occur.
|
1.32 |
| 02-Oct-2015 |
msaitoh | PCI Extended Configuration stuff written by nonaka@: - Add PCI Extended Configuration Space support into x86. - Check register offset of pci_conf_read() in MD part. It returns (pcireg_t)-1 if it isn't accessible. - Decode Extended Capability in PCI Extended Configuration Space. Currently the following extended capabilities are decoded: - Advanced Error Reporting - Virtual Channel - Device Serial Number - Power Budgeting - Root Complex Link Declaration - Root Complex Event Collector Association - Access Control Services - Alternative Routing-ID Interpretation - Address Translation Services - Single Root IO Virtualization - Page Request - TPH Requester - Latency Tolerance Reporting - Secondary PCI Express - Process Address Space ID - LN Requester - L1 PM Substates The following extended capabilities are not decoded yet: - Root Complex Internal Link Control - Multi-Function Virtual Channel - RCRB Header - Vendor Unique - Configuration Access Correction - Multiple Root IO Virtualization - Multicast - Resizable BAR - Dynamic Power Allocation - Protocol Multiplexing - Downstream Port Containment - Precision Time Management - M-PCIe - Function Reading Status Queueing - Readiness Time Reporting - Designated Vendor-Specific
|
1.31 |
| 06-Nov-2013 |
mrg | branches: 1.31.6; move some variables inside their #ifdef use.
|
1.30 |
| 07-Sep-2012 |
matt | branches: 1.30.2; 1.30.4; Fix pci_conf_hook/interrupt for ARM.
|
1.29 |
| 27-Jan-2012 |
para | converting extent(9) from malloc(9) to kmem(9) preceding kmem-vmem-pool-uvm patch
releng@ acknowledged
|
1.28 |
| 17-May-2011 |
dyoung | branches: 1.28.4; 1.28.8; PCI_FLAGS_IO_ENABLED and PCI_FLAGS_MEM_ENABLED changed their functional role in NetBSD (drivers are no longer supposed to write these to pa_flags) without changing name. Correct that.
Rename PCI_FLAGS_IO_ENABLED to PCI_FLAGS_IO_OKAY and PCI_FLAGS_MEM_ENABLED to PCI_FLAGS_MEM_OKAY, thus making their names consistent with the other PCI flags and poisoning 3rd-party driver sources that use the flags in the old bad way.
This patch produces no binary changes in this set of PCI kernels when they are compiled w/o 'options DIAGNOSTIC' and w/ -V MKREPRO=yes:
algor P4032 P5064 P6032 alpha GENERIC amd64 GENERIC XEN3_DOM0 arc GENERIC atari HADES MILAN-PCIIDE bebox GENERIC cats GENERIC cobalt GENERIC evbarm-el ADI_BRH ARMADILLO9 CP3100 GEMINI GEMINI_MASTER GEMINI_SLAVE evbarm-el GUMSTIX HDL_G IMX31LITE INTEGRATOR IQ31244 IQ80310 IQ80321 evbarm-el IXDP425 IXM1200 KUROBOX_PRO evbarm-el LUBBOCK MARVELL_NAS NAPPI NSLU2 SHEEVAPLUG SMDK2800 TEAMASA_NPWR evbarm-el TEAMASA_NPWR_FC TS7200 TWINTAIL ZAO425 evbmips-el AP30 DBAU1500 DBAU1550 MALTA MERAKI MTX-1 OMSAL400 RB153 WGT624V3 evbmips64-el XLSATX evbppc EV64260 MPC8536DS MPC8548CDS OPENBLOCKS200 OPENBLOCKS266 evbppc OPENBLOCKS266_OPT P2020RDB PMPPC RB800 WALNUT hp700 GENERIC i386 ALL XEN3_DOM0 XEN3_DOMU ibmnws GENERIC iyonix GENERIC landisk GENERIC macppc GENERIC mvmeppc GENERIC netwinder GENERIC ofppc GENERIC prep GENERIC sandpoint GENERIC sbmips-el GENERIC sgimips GENERIC32_IP2x GENERIC32_IP3x sparc GENERIC_SUN4U KRUPS sparc64 GENERIC
|
1.27 |
| 01-Aug-2010 |
kiyohara | branches: 1.27.2; Cleanup foo_match(). + Remove check for model. + Remove unnecessary null line.
|
1.26 |
| 11-Jul-2010 |
kiyohara | Add macro MVA_{UNIT,OFFSET,IRQ}_DEFAULT.
|
1.25 |
| 02-Jun-2010 |
kiyohara | Move memory protection parameters to MI part. Gtpci believes the initialization of the firmware(boot-loader) if protection information is not obtained.
|
1.24 |
| 02-Jun-2010 |
kiyohara | Set NULL to tag when the property doesn't get it.
|
1.23 |
| 02-Jun-2010 |
kiyohara | Remove unused gpio.h.
|
1.22 |
| 28-Apr-2010 |
kiyohara | Clean up gt and peripherals. This change tested compile only.
|
1.21 |
| 12-May-2009 |
cegger | branches: 1.21.2; 1.21.4; struct device * -> device_t, no functional changes intended.
|
1.20 |
| 12-May-2009 |
cegger | struct cfdata * -> cfdata_t, no functional changes intended.
|
1.19 |
| 11-Apr-2008 |
he | branches: 1.19.4; 1.19.18; Put back a %s so that the format matches again. Fixes build for evbppc.
|
1.18 |
| 08-Apr-2008 |
cegger | use aprint_*_dev and device_xname
|
1.17 |
| 03-Dec-2007 |
ad | branches: 1.17.14; Interrupt handling changes, in discussion since February:
- Reduce available SPL levels for hardware devices to none, vm, sched, high. - Acquire kernel_lock only for interrupts at IPL_VM. - Implement threaded soft interrupts.
|
1.16 |
| 19-Oct-2007 |
ad | branches: 1.16.2; machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
|
1.15 |
| 29-Jan-2007 |
hubertf | branches: 1.15.6; 1.15.18; 1.15.20; 1.15.24; Remove more duplicate headers. Patch by Slava Semushin <slava.semushin@gmail.com>
Again, this was tested by comparing obj files from a pristine and a patched source tree against an i386/ALL kernel, and also for src/sbin/fsck_ffs, src/sbin/fsdb and src/usr.sbin/makefs. Only changes in assert() line numbers were detected in 'objdump -d' output.
|
1.14 |
| 29-Mar-2006 |
thorpej | branches: 1.14.8; Use device_private().
|
1.13 |
| 11-Dec-2005 |
christos | branches: 1.13.4; 1.13.6; 1.13.8; 1.13.10; 1.13.12; merge ktrace-lwp.
|
1.12 |
| 27-Feb-2005 |
perry | branches: 1.12.4; nuke trailing whitespace
|
1.11 |
| 30-Aug-2004 |
drochner | branches: 1.11.4; 1.11.6; Phase out the use of a string as first "attach args" member to control which bustype should be attached with a specific call to config_found() (from a "mainbus" or a bus bridge). Do it for isa/eisa/mca and pci/agp for now. These buses all attach to an mi interface attribute "isabus", "eisabus" etc., and the autoconf framework now allows to specify an interface attribute on config_found() and config_search(), which limits the search of matching config data to these which attach to that specific attribute. So we basically have to call config_found_ia(..., "foobus", ...) where such a bus is attached. As a consequence, where a "mainbus" or alike also attaches other devices (eg CPUs) which do not attach to a specific attribute yet, we need at least pass an attribute name (different from "foobus") so that the foo bus is not found at these places. This made some minor changes necessary which are not obviously related to the mentioned buses.
|
1.10 |
| 14-Jul-2003 |
lukem | add missing __KERNEL_RCSID()
|
1.9 |
| 12-Jun-2003 |
scw | branches: 1.9.2; Add basic support for non-PCI host mode.
|
1.8 |
| 27-May-2003 |
scw | Add an option to control whether the GT's internal PCI Arbiter should be enabled or not.
|
1.7 |
| 04-Apr-2003 |
matt | Remove #define DEBUG. (this was working right. The problem I encountered was due to a bug in PPCBOOT. It was not ordering DIMM space largest to smallest so that you could badly alignment memory).
|
1.6 |
| 01-Apr-2003 |
matt | Cleanup PCI support.
|
1.5 |
| 18-Mar-2003 |
matt | Split PCI initialization out of attach hook.
|
1.4 |
| 18-Mar-2003 |
matt | Enable I/O & memory access too.
|
1.3 |
| 18-Mar-2003 |
matt | Do minimal initialization of PCI.
|
1.2 |
| 16-Mar-2003 |
matt | Cleanup. Move much of the code to bus_space instead of using private mechanisms.
|
1.1 |
| 05-Mar-2003 |
matt | Add preliminary support Marvell (Galileo) Discovery System Controllers. This code was contributed by Allegro Networks.
|
1.9.2.5 |
| 04-Mar-2005 |
skrll | Sync with HEAD.
Hi Perry!
|
1.9.2.4 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.9.2.3 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.9.2.2 |
| 03-Sep-2004 |
skrll | Sync with HEAD
|
1.9.2.1 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
1.11.6.1 |
| 19-Mar-2005 |
yamt | sync with head. xen and whitespace. xen part is not finished.
|
1.11.4.1 |
| 29-Apr-2005 |
kent | sync with -current
|
1.12.4.4 |
| 07-Dec-2007 |
yamt | sync with head
|
1.12.4.3 |
| 27-Oct-2007 |
yamt | sync with head.
|
1.12.4.2 |
| 26-Feb-2007 |
yamt | sync with head.
|
1.12.4.1 |
| 21-Jun-2006 |
yamt | sync with head.
|
1.13.12.1 |
| 31-Mar-2006 |
tron | Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
|
1.13.10.1 |
| 19-Apr-2006 |
elad | sync with head.
|
1.13.8.1 |
| 01-Apr-2006 |
yamt | sync with head.
|
1.13.6.1 |
| 22-Apr-2006 |
simonb | Sync with head.
|
1.13.4.1 |
| 09-Sep-2006 |
rpaulo | sync with head
|
1.14.8.1 |
| 01-Feb-2007 |
ad | Sync with head.
|
1.15.24.1 |
| 25-Oct-2007 |
bouyer | Sync with HEAD.
|
1.15.20.2 |
| 09-Jan-2008 |
matt | sync with HEAD
|
1.15.20.1 |
| 06-Nov-2007 |
matt | sync with HEAD
|
1.15.18.2 |
| 09-Dec-2007 |
jmcneill | Sync with HEAD.
|
1.15.18.1 |
| 26-Oct-2007 |
joerg | Sync with HEAD.
Follow the merge of pmap.c on i386 and amd64 and move pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup code to restore CR4 before jumping back into kernel space as the large page option might cover that.
|
1.15.6.1 |
| 23-Oct-2007 |
ad | Sync with head.
|
1.16.2.1 |
| 08-Dec-2007 |
mjf | Sync with HEAD.
|
1.17.14.1 |
| 02-Jun-2008 |
mjf | Sync with HEAD.
|
1.19.18.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
1.19.4.2 |
| 11-Aug-2010 |
yamt | sync with head.
|
1.19.4.1 |
| 16-May-2009 |
yamt | sync with head
|
1.21.4.4 |
| 31-May-2011 |
rmind | sync with head
|
1.21.4.3 |
| 05-Mar-2011 |
rmind | sync with head
|
1.21.4.2 |
| 03-Jul-2010 |
rmind | sync with head
|
1.21.4.1 |
| 30-May-2010 |
rmind | sync with head
|
1.21.2.2 |
| 17-Aug-2010 |
uebayasi | Sync with HEAD.
|
1.21.2.1 |
| 30-Apr-2010 |
uebayasi | Sync with HEAD.
|
1.27.2.1 |
| 06-Jun-2011 |
jruoho | Sync with HEAD.
|
1.28.8.1 |
| 18-Feb-2012 |
mrg | merge to -current.
|
1.28.4.3 |
| 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
1.28.4.2 |
| 30-Oct-2012 |
yamt | sync with head
|
1.28.4.1 |
| 17-Apr-2012 |
yamt | sync with head
|
1.30.4.1 |
| 18-May-2014 |
rmind | sync with head
|
1.30.2.2 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.30.2.1 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.31.6.1 |
| 27-Dec-2015 |
skrll | Sync with HEAD (as of 26th Dec)
|
1.34.4.1 |
| 23-Mar-2021 |
thorpej | Convert config_found_ia() call sites where the device only carries a single interface attribute to bare config_found() calls.
|
1.35.8.1 |
| 04-Aug-2021 |
thorpej | Adapt to CFARGS().
|