summaryrefslogtreecommitdiffstats
path: root/sys/sparc64/pci
Commit message (Collapse)AuthorAgeFilesLines
* add support for peeking at pci busses on UltraSparc systems. This preventsjmg2003-06-221-12/+19
| | | | | | | | | data access errors when trying to read/write to non-existant PCI devices. fix the psycho bridge to use peek for probing devices. This no longer fakes it if the OFW node doesn't exist (and the reg == 0). Reviewed by: jake, tmm
* Further cleanup of the sparc64 busdma implementation:tmm2003-06-181-9/+2
| | | | | | | | | | | | | | | | | | | | | | | | | - Move prototypes for sparc64-specific helper functions from bus.h to bus_private.h - Move the method pointers from struct bus_dma_tag into a separate structure; this saves some memory, and allows to use a single method table for each busdma backend, so that the bus drivers need no longer be changed if the methods tables need to be modified. - Remove the hierarchical tag method lookup. It was never really useful, since the layering is fixed, and the current implementations do not need to call into parent implementations anyway. Each tag inherits its method table pointer and cookie from the parent (or the root tag) now, and the method wrapper macros directly use the method table of the tag. - Add a method table to the non-IOMMU backend, remove unnecessary prototypes, remove the extra parent tag argument. - Rename sparc64_dmamem_alloc_map() and sparc64_dmamem_free_map() to sparc64_dma_alloc_map() and sparc64_dma_free_map(), move them to a better place and use them for all map allocations and deallocations. - Add a method table to the iommu backend, and staticize functions, remove the extra parent tag argument. - Change the psycho and sbus drivers to just set cookie and method table in the root tag. - Miscellaneous small fixes.
* Hardwire APB's PCI buses down. If we don't do this, pciconf -l returnsjmg2003-06-131-5/+2
| | | | | | | selectors that are incorrect to use with pciconf -[rw] Fixes-PR: sparc64/50789 Ok's by: tmm
* Remove the PSYCHO_STRAY option - it was never really useful. Adjust atmm2003-06-121-49/+5
| | | | | nearby comment. PSYCHO_DEBUG remains, as it is quite useful for debugging interrupt routing problems.
* Remove the psycho and sbus iommu function stubs, and put the pointertmm2003-06-111-144/+23
| | | | | to the iommu_state structure directly into dt_cookie. The stubs have not been needed for a long time now.
* Fix interrupt assignment for non-builtin PCI devices on e450s.tmm2003-05-305-32/+135
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This machine uses a non-standard scheme to specify the interrupts to be assigned for devices in PCI slots; instead of giving the INO or full interrupt number (which is done for the other devices in this box), the firmware interrupt properties contain intpin numbers, which have to be swizzled as usual on PCI-PCI bridges; however, the PCI host bridge nodes have no interrupt map, so we need to guess the correct INO by slot number of the device or the closest PCI-PCI bridge leading to it, and the intpin. To do this, this fix makes the following changes: - Add a newbus method for sparc64 PCI host bridges to guess the INO, and glue code in ofw_pci_orb_callback() to invoke it based on a new quirk entry. The guessing is only done for interrupt numbers too low to contain any IGN found on e450s. - Create another new quirk entry was created to prevent mapping of EBus interrupts at PCI level; the e450 has full INOs in the interrupt properties of EBus devices, so trying to remap them could cause problems. - Set both quirk entries for e450s; remove the no-swizzle entry. - Determine the psycho half (bus A or B) a driver instance manages in psycho_attach() - Implement the new guessing method for psycho, using the slot number, psycho half and property value (intpin). Thanks go to the testers, especially Brian Denehy, who tested many kernels for me until I had found the right workaround. Tested by: Brian Denehy <B.Denehy@90east.com>, jake, fenner, Marius Strobl <marius@alchemy.franken.de>, Marian Dobre <mari@onix.ro> Approved by: re (scottl)
* Bring back bus_dmasync_op_t. It is now a typedef to an int, though thescottl2003-05-271-2/+3
| | | | | | | | BUS_DMASYNC_ definitions remain as before. The does not change the ABI, and reverts the API to be a bit more compatible and flexible. This has survived a full 'make universe'. Approved by: re (bmah)
* De-orbit bus_dmamem_alloc_size(). It's a hack and was never used anyways.scottl2003-05-261-27/+0
| | | | | | No need for it to pollute the 5.x API any further. Approved by: re (bmah)
* - Reduce the DVMA preallocation limit from 128kB to 32kB. 128kB weretmm2003-05-021-1/+1
| | | | | | | | | | | | | quite excessive, and caused the available space to be used up too easily. The new limit should be a better estimation of how much the caller will need at most. - Double the IOTSB size 64kB, for a DVMA area size of 64MB. This should fix DMA problems on e450s and other large machines due to DVMA space exhaustion, which were introduced in my last IOMMU code revision in January. Reported and tested by: fenner
* Change the operation parameter of bus_dmamap_sync() from anmux2003-04-101-3/+2
| | | | | | enum to an int and redefine the BUS_DMASYNC_* constants as flags. This allows us to specify several operations in one call to bus_dmamap_sync() as in NetBSD.
* Use vm_paddr_t for physical addresses.jake2003-04-082-4/+5
|
* Set the cache line size for subordinate pci bridges as well as for theirjake2003-03-271-2/+2
| | | | | | | child devices. This fixes dma timeouts for devices behind the bridge. Reported by: simokawa Tested by: simokawa
* Back out M_* changes, per decision of the TRB.imp2003-02-192-3/+3
| | | | Approved by: trb
* Fix some more missing dt_ prefixes for dma tag fields.scottl2003-01-291-2/+2
|
* Implement bus_dmamem_alloc_size() and bus_dmamem_free_size() asscottl2003-01-291-0/+27
| | | | | | | | | | | | | | | | | | | | counterparts to bus_dmamem_alloc() and bus_dmamem_free(). This allows the caller to specify the size of the allocation instead of it defaulting to the max_size field of the busdma tag. This is intended to aid in converting drivers to busdma. Lots of hardware cannot understand scatter/gather lists, which forces the driver to copy the i/o buffers to a single contiguous region before sending it to the hardware. Without these new methods, this would require a new busdma tag for each operation, or a complex internal allocator/cache for each driver. Allocations greater than PAGE_SIZE are rounded up to the next PAGE_SIZE by contigmalloc(), so this is not suitable for multiple static allocations that would be better served by a single fixed-length subdivided allocation. Reviewed by: jake (sparc64)
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.alfred2003-01-212-3/+3
| | | | Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
* Change the iommu code to be able to handle more than one DVMA area pertmm2003-01-061-0/+30
| | | | | | | | | | | map. Use this new feature to implement iommu_dvmamap_load_mbuf() and iommu_dvmamap_load_uio() functions in terms of a new helper function, iommu_dvmamap_load_buffer(). Reimplement the iommu_dvmamap_load() to use it, too. This requires some changes to the map format; in addition to that, remove unused or redundant members. Add SBus and Psycho wrappers for the new functions, and make them available through the respective DMA tags.
* Prefix the members of struct bus_space_tag and struct bus_dma_tag withtmm2003-01-061-18/+18
| | | | a uniqifier. No functional changes.
* Initialize the cache line size register of all PCI devices in thetmm2003-01-061-0/+15
| | | | initial setup pass.
* - remove some outdated commentstmm2003-01-063-33/+20
| | | | | | | | | - tweak the announce message a bit - remove '\n's from a few panic() calls - don't use the DVMA base adress the firmware reports; instead, figure it out from the appropriate register on Sabres and let the IOMMU code choose it on Psychos. This also makes the IOMMU TSB size freely selectable.
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/schweikh2002-12-301-1/+1
| | | | Add FreeBSD Id tag where missing.
* Exclude yet more interrupt mapping registers from the OBIO INO search,tmm2002-12-061-2/+2
| | | | | | | | | | namely the ones for the timers, error handling and power management. The registers for the timers, power management and PCI bus b errors are reserved on Sabres (US-IIi) and can lead to false matches there. Since all of them are never used for devices on the bus, they can be omitted safely. Approved by: re
* Always initialize the UPA target module id in the interrupt mappingtmm2002-12-011-7/+7
| | | | | | | | | | | | register to the one of the processor doing the interrupt setup. This is required since this field is preinitialized to 0, but there exist machines which have no processor with a MID of 0 (e.g. e450s with 1 or 2 processors). Add some more macros for handle the interrupt mapping registers, and rename some existing ones for consistency. Approved by: re
* 1.) Do not look for PCI INOs in the FFB interrupt mapping registers; theytmm2002-12-011-2/+6
| | | | | | | | | | | are nevers used for PCI interrupts, but can cause false matches since they are fully programmable. 2.) Skip the mapping registers for slot a2 and a3 on "psycho" bridges, since they are not present there. Again, this could cause false matches, which would result in the interrupt being delivered at most once. Submitted by: jake (2) Approved by: re
* Reverse the quirk table entry for swizzling on a missing interrupt map;tmm2002-12-011-7/+10
| | | | | | | | | | | | | this is now done on all machines except for some known problematic ones. Add an additional guard to make sure that the interrupt numbers are in the correct range before swizzling. This should catch any remaining models for which the swizzle is inappropriate. Correct the swizzle calculation to account for the fact that the parent interrupt numbers to be swizzled are 1-based. Approved by: re
* Fix some comments describing psycho registers.tmm2002-12-011-2/+2
| | | | Approved by: re
* Don't register the powerfail interrupt as fast in thetmm2002-11-141-2/+8
| | | | | | | non-DEBUGGER_ON_POWERFAIL case so that shutdown_nice() can be called without problems. Reported & tested by: Gavin Atkinson <gavin@ury.york.ac.uk>
* Add two new workaround for firmware anomalies:tmm2002-11-073-11/+70
| | | | | | | | | | | | | | | | | 1. At least some Netra t1 models have PCI buses with no associated interrupt map, but obviously expect the PCI swizzle to be done with the interrupt number from the higher level as intpin. In this case, the mapping also needs to continue at parent bus nodes. To handle that, add a quirk table based on the "name" property of the root node to avoid breaking other boxen. This property is now retrieved and printed at boot. 2. On SPARCengine Ultra AX machines, interrupt numbers are not mapped at all, and full interrupt numbers (not just INOs) are given in the interrupt properties. This is more or less cosmetical; the PCI interrupt numbers would be wrong, but the psycho resource allocation method would pass the right numbers on anyway. Tested by: mux (1), Maxim Mazurok <maxim@km.ua> (2)
* Add "pci108e,8000" (psycho) and "pci108e,a000" (US-IIi sabre) to the list oftmm2002-10-161-37/+54
| | | | | | | | | | recognized compat properties. This should make the psycho driver attach properly on SPARCengine Ultra AX machines. Switch to a table-driven logic to recognize the ID's, since their number is now large enough to justify this. These changes are analogous to those made in NetBSD r.1.35, but implemented a bit differently.
* Use a linked list to keep the psycho softcs instead of a staticallytmm2002-10-162-22/+12
| | | | | | sized array. While being there, deuglify the psycho pair detection loop which became quite awkward in a previous code reorganization.
* Renamed intr_enqueue to intr_vector and intr_dequeue to intr_fast, tojake2002-09-281-1/+1
| | | | better reflect how they are called.
* When multiple IOMMUs are present in a system, use a single TSB for alltmm2002-07-161-1/+1
| | | | | | | | | | | of them, and couple them by always performing all operations on all present IOMMUs. This is required because with the current API there is no way to determine on which bus a busdma operation is performed. While being there, clean up the iommu code a bit. This should be a step in the direction of allow some of larger machines to work; tests have shown that there still seem to be problems left.
* Add PCI bus enumeration and latency timer setup to the sparc64 MD PCItmm2002-06-124-88/+203
| | | | | | | | code. Both tasks are not always performed completely by the firmware. The former is required to get some e450 models to boot; the latter fixes the repeated fifo underruns with hme(4)s and gem(4)s observed on some machines (and probably performance problems with other peripherals as well).
* Do not try to set up the PCI bus B error interrupt on "sabre"s, sincetmm2002-04-021-12/+14
| | | | | it is only available on "psycho"s. The same applies to the power management interrupt, which is not enabled by default though.
* Revamp the busdma implementation a bit:tmm2002-03-241-32/+41
| | | | | | | | | | | | - change the IOMMU support code so that it supports overcommittting the available DVMA memory, while still allocating as lazily as possible. This is achieved by limiting the preallocation, and deferring the allocation to map load time when it fails. In the latter case, the DVMA memory reserved for unloaded maps can be stolen to free up enough memory for loading a map. - allow NULL settings in the method tables, and search the parent tags until an appropriate implementation is found. This allows to remove some kluges in the old implementation.
* Make the OpenFirmware interrupt mapping code more generic, to reducetmm2002-03-245-127/+66
| | | | | | | | | | the bus-dependent code and to be able to support more systems. The core of the new code is mostly obtained from NetBSD. Kluge the interrupt routing methods of the psycho and apb drivers so that an intline of 0 can be handled for now; real routing is still not possible (all intline registers are preinitialized instead); this will require a sparc64-specific adaption of the driver for generic PCI-PCI bridges with a custom routing method to work right.
* Map the device memory belonging to resources of type SYS_RES_MEMORY intotmm2002-03-241-0/+17
| | | | KVA upon activation so that rman_get_virtual() works as expected.
* Add code to print the fault virtual address for uncorrectable DMA errorstmm2002-03-232-0/+17
| | | | | caused by IOMMU misses to aid debugging. This will only work on UltraSPARC-IIi and IIe.
* Add PCIfunctions 2 and 3 of the PCIO2 chip to the intpin quirk table.tmm2002-03-231-2/+4
|
* Add a DEBUGGER_ON_POWERFAIL option. This makes the power button on ultra 10sjake2002-03-131-0/+7
| | | | work like an NMI button.
* Merge r1.39 from NetBSD (manage both streaming caches for psycho pairs).tmm2002-02-133-473/+368
| | | | | | Use explicit bus space accesses instead of mapping the device memory into kva. Fix support for psycho pairs, and catch up with iommu code changes.
* Don't panic when no interrupt map can be found for a PCI bus; this seemstmm2002-02-131-2/+5
| | | | to happen on some models, like the Netra T1.
* Correct the defintion of struct ofw_upa_regs, and use it instead oftmm2002-01-022-31/+37
| | | | | | | struct ofw_nexus_reg. Implement UPA device memory management in the nexus driver. Adapt the psycho driver to these changes, and do some minor cleanup work while being there.
* Do not include pcib.h, which only existed in my development tree, and dotmm2001-12-301-2/+1
| | | | | | | not use struct pcib_softc when struct apb_softc would be correct. Spotted by: jake Pointy hat to: tmm
* Add a workaround for quirky PCI devices that set the intpin register totmm2001-12-211-20/+66
| | | | | | 0, but use this mechanism to generate interrupts. Preserve the child device when setting up and tearing down interrupts. Some style nits.
* Make the apb driver independent of the standard PCI bridge driver.tmm2001-12-211-30/+82
|
* Add a file forgotten in the previous commit (a kobj interface thattmm2001-11-091-0/+75
| | | | defines methods that need to be implemented by sparc64 host bridge drivers).
* Add support for the Sun psycho/sabre UPA-PCI bridge, some OpenFirmwaretmm2001-11-096-0/+2382
PCI support code, and a driver for the Sun APB PCI-PCI bridge. Partly ported from NetBSD.
OpenPOWER on IntegriCloud