History log of /src/sys/arch/alpha/pci/tsc.c |
Revision | | Date | Author | Comments |
1.30 |
| 04-Dec-2023 |
thorpej | Convert the Alpha port's bus_space back-end to manage address space with vmem(9) arenas (using statically-allocated private boundary tags for very early-in-boot) rather than extent(9).
As a side-effect, there's arguments to some initialization functions that are no longer required, so garbage-collect those, update all the call sites.
|
1.29 |
| 07-Aug-2021 |
thorpej | Merge thorpej-cfargs2.
|
1.28 |
| 04-Jul-2021 |
thorpej | branches: 1.28.2; Remove unnecessary #include <sys/malloc.h>
|
1.27 |
| 19-Jun-2021 |
thorpej | Don't use a bunch of switch() statements in the core logic drivers to select the PCI interrupt initialization routine. Instead, register said routines by systype in a link set, and look them up and invoke them in a new function alpha_pci_intr_init().
|
1.26 |
| 27-May-2021 |
thorpej | The Tsunami / Typhoon chipsets have a static "monster window" for DMA that allows for up to 32GB of RAM to be direct-mapped if the PCI device can issue a 64-bit address (the monster window lives at 0x10000000000). Enable this window and provide this to the PCI bus as a "dmat64".
|
1.25 |
| 24-Apr-2021 |
thorpej | branches: 1.25.2; 1.25.4; 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.24 |
| 22-Feb-2014 |
martin | branches: 1.24.44; Allow kernels without tsciic to build.
|
1.23 |
| 21-Feb-2014 |
jdc | Add tsciic, a driver for the DECchip 21272 Core Logic chipset I2C controller. Tested on DS20L.
|
1.22 |
| 23-Sep-2013 |
tsutsui | KNF and TAB/space cleanup.
|
1.21 |
| 23-Sep-2013 |
tsutsui | Remove a 'register' declaration. Noted in PR port-alpha/48148.
|
1.20 |
| 23-Sep-2013 |
tsutsui | Add support for AlphaStation DS15.
Ported from OpenBSD via PR port-alpha/48148 by nullnilaki. Note support for the secondary PCI bus still needs more improvements.
|
1.19 |
| 17-May-2011 |
dyoung | branches: 1.19.4; 1.19.14; 1.19.18; 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.18 |
| 07-Oct-2010 |
hans | branches: 1.18.2; Enable Pchip and Cchip error interrupts (machine checks) on DEC 6600 systems. Add some basic pretty-printing for those errors. Tested on a DS20.
|
1.17 |
| 15-Apr-2010 |
jakllsch | Give tsc(4)/tsp(4) some attention. - Convert to CFATTACH_DECL_NEW(). - Sprinkle static on functions. - Improve KNF conformance. - Use C99 integer types. - Recycle now-empty-and/or-unused softc structures.
|
1.16 |
| 14-Mar-2009 |
dsl | branches: 1.16.2; 1.16.4; ANSIfy another 1261 function definitions. The only ones left in sys are beyond by sed script! (or in sys/dist or sys/external) Mostly they have function pointer parameters.
|
1.15 |
| 14-Mar-2009 |
dsl | Change about 4500 of the K&R function definitions to ANSI ones. There are still about 1600 left, but they have ',' or /* ... */ in the actual variable definitions - which my awk script doesn't handle. There are also many that need () -> (void). (The script does handle misordered arguments.)
|
1.14 |
| 14-Mar-2009 |
dsl | Remove all the __P() from sys (excluding sys/dist) Diff checked with grep and MK1 eyeball. i386 and amd64 GENERIC and sys still build.
|
1.13 |
| 11-Dec-2005 |
christos | branches: 1.13.78; 1.13.86; 1.13.92; merge ktrace-lwp.
|
1.12 |
| 30-Aug-2004 |
drochner | 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.11 |
| 15-Jun-2003 |
fvdl | branches: 1.11.2; Handle 64bit DMA addresses on PCI for platforms that can (currently only enabled on amd64). Add a dmat64 field to various PCI attach structures, and pass it down where needed. Implement a simple new function called pci_dma64_available(pa) to test if 64bit DMA addresses may be used. This returns 1 iff _PCI_HAVE_DMA64 is defined in <machine/pci_machdep.h>, and there is more than 4G of memory.
|
1.10 |
| 01-Jan-2003 |
thorpej | Use aprint_normal() for cfprint routines.
|
1.9 |
| 02-Oct-2002 |
thorpej | Use CFATTACH_DECL().
|
1.8 |
| 27-Sep-2002 |
thorpej | Declare all cfattach structures const.
|
1.7 |
| 16-May-2002 |
thorpej | * Add "pcitag_t *pba_bridgetag" to pci_attach_args. This is set to NULL for root PCI busses. For busses behind a bridge, it points to a persistent copy of the bridge's pcitag_t. This can be very useful for machine-dependent PCI bus enumeration code. * Implement a machine-dependent pci_enumerate_bus() for sparc64 which uses OFW device nodes to enumerate the bus. When a PCI bus that is behind a bridge is attached, pci_attach_hook() allocates a new PCI chipset tag for the new bus and sets it's "curnode" to the OFW node of the bridge. This is used as a starting point when enumerating that bus. Root busses get the OFW node of the host bridge (psycho). * Garbage-collect "ofpci" and "ofppb" from the sparc64 port.
|
1.6 |
| 12-Jul-2001 |
thorpej | branches: 1.6.2; 1.6.14; bzero -> memset
|
1.5 |
| 29-Nov-2000 |
thorpej | branches: 1.5.4; Allocate the DMA windows out of the PCI memory extent map after DMA is initialized.
|
1.4 |
| 26-Jun-2000 |
thorpej | Do the previously slightly differently, to avoid confusing the internal space extent maps. Pointed out by msaitoh@netbsd.org. (Someone should send me an EV6 machine!)
|
1.3 |
| 25-Jun-2000 |
thorpej | Implement tsp_bus_get_window().
|
1.2 |
| 04-Nov-1999 |
thorpej | branches: 1.2.4; Allow rd/line, rd/mult, and wr/inval.
|
1.1 |
| 29-Jun-1999 |
ross | branches: 1.1.2; 1.1.4; 1.1.6; 1.1.8; 1.1.14; Support for EV6 Tsunami core logic and system type 6600. This covers most or all of the presently-available 21264 systems.
|
1.1.14.1 |
| 27-Dec-1999 |
wrstuden | Pull up to last week's -current.
|
1.1.8.1 |
| 14-Nov-1999 |
fvdl | Sync with -current.
|
1.1.6.2 |
| 08-Dec-2000 |
bouyer | Sync with HEAD.
|
1.1.6.1 |
| 20-Nov-2000 |
bouyer | Update thorpej_scsipi to -current as of a month ago A i386 GENERIC kernel compiles without the siop, ahc and bha drivers (will be updated later). i386 IDE/ATAPI and ncr work, as well as sparc/esp_sbus. alpha should work as well (untested yet). siop, ahc and bha will be updated once I've updated the branch to current -current, as well as machine-dependant code.
|
1.1.4.2 |
| 29-Jun-1999 |
ross | Support for EV6 Tsunami core logic and system type 6600. This covers most or all of the presently-available 21264 systems.
|
1.1.4.1 |
| 29-Jun-1999 |
ross | file tsc.c was added on branch netbsd-1-4 on 1999-06-29 06:46:47 +0000
|
1.1.2.2 |
| 01-Jul-1999 |
thorpej | Sync w/ -current.
|
1.1.2.1 |
| 29-Jun-1999 |
thorpej | file tsc.c was added on branch chs-ubc2 on 1999-07-01 23:00:57 +0000
|
1.2.4.1 |
| 27-Jun-2000 |
thorpej | Update from trunk: Implement bus_get_window on Tsunami and MCPCIA, and compensate for the Cool sign-extend hack we use on EV6 when mapping PCI space into userspace.
|
1.5.4.3 |
| 10-Oct-2002 |
jdolecek | sync kqueue with -current; this includes merge of gehenna-devsw branch, merge of i386 MP branch, and part of autoconf rototil work
|
1.5.4.2 |
| 23-Jun-2002 |
jdolecek | catch up with -current on kqueue branch
|
1.5.4.1 |
| 03-Aug-2001 |
lukem | update to -current
|
1.6.14.1 |
| 30-May-2002 |
gehenna | Catch up with -current.
|
1.6.2.4 |
| 03-Jan-2003 |
thorpej | Sync with HEAD.
|
1.6.2.3 |
| 18-Oct-2002 |
nathanw | Catch up to -current.
|
1.6.2.2 |
| 20-Jun-2002 |
nathanw | Catch up to -current.
|
1.6.2.1 |
| 12-Jul-2001 |
nathanw | file tsc.c was added on branch nathanw_sa on 2002-06-20 03:37:45 +0000
|
1.11.2.3 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.11.2.2 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.11.2.1 |
| 03-Sep-2004 |
skrll | Sync with HEAD
|
1.13.92.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
1.13.86.1 |
| 28-Apr-2009 |
skrll | Sync with HEAD.
|
1.13.78.3 |
| 09-Oct-2010 |
yamt | sync with head
|
1.13.78.2 |
| 11-Aug-2010 |
yamt | sync with head.
|
1.13.78.1 |
| 04-May-2009 |
yamt | sync with head.
|
1.16.4.3 |
| 31-May-2011 |
rmind | sync with head
|
1.16.4.2 |
| 05-Mar-2011 |
rmind | sync with head
|
1.16.4.1 |
| 30-May-2010 |
rmind | sync with head
|
1.16.2.2 |
| 22-Oct-2010 |
uebayasi | Sync with HEAD (-D20101022).
|
1.16.2.1 |
| 30-Apr-2010 |
uebayasi | Sync with HEAD.
|
1.18.2.1 |
| 06-Jun-2011 |
jruoho | Sync with HEAD.
|
1.19.18.1 |
| 18-May-2014 |
rmind | sync with head
|
1.19.14.1 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.19.4.1 |
| 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.24.44.2 |
| 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.24.44.1 |
| 21-Mar-2021 |
thorpej | Give config_found() the same variadic arguments treatment as config_search(). This commit only adds the CFARG_EOL sentinel to the existing config_found() calls. Conversion of config_found_sm_loc() and config_found_ia() call sites will be in subsequent commits.
|
1.25.4.1 |
| 31-May-2021 |
cjep | sync with head
|
1.25.2.2 |
| 01-Aug-2021 |
thorpej | Sync with HEAD.
|
1.25.2.1 |
| 17-Jun-2021 |
thorpej | Sync w/ HEAD.
|
1.28.2.1 |
| 03-Aug-2021 |
thorpej | Adapt to CFARGS().
|