aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fdt/simplebus.c
Commit message (Expand)AuthorAgeFilesLines
* simplebus: Stop accepting SYS_RES_IOPORT resourcesJohn Baldwin2025-01-291-3/+0
* Replace calls to bus_generic_attach with bus_attach_childrenJohn Baldwin2024-12-061-1/+2
* Check for errors when detaching children first, not lastJohn Baldwin2024-11-051-1/+6
* new-bus: Remove the 'rid' and 'type' arguments from BUS_RELEASE_RESOURCEJohn Baldwin2024-03-131-13/+1
* new-bus: Remove the 'rid' and 'type' arguments from BUS_*ACTIVATE_RESOURCEJohn Baldwin2024-03-131-26/+2
* new-bus: Remove the 'type' argument from BUS_MAP/UNMAP_RESOURCEJohn Baldwin2024-03-131-28/+2
* new-bus: Remove the 'type' argument from BUS_ADJUST_RESOURCEJohn Baldwin2024-03-131-13/+1
* simplebus: Implement bus_delete_resourceJohn Baldwin2024-02-161-0/+1
* simplebus: Map SYS_RES_IOPORT to SYS_RES_MEMORY later in alloc_resourceJohn Baldwin2024-02-161-3/+3
* simplebus: Consistently map SYS_RES_IOPORT to SYS_RES_MEMORYJohn Baldwin2024-01-231-7/+83
* sys: Automated cleanup of cdefs and other formattingWarner Losh2023-11-271-1/+0
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-1/+0
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
* ofw: add BUS_GET_DEVICE_PATH interface to openfirm/fdt, somewhat incomplete.Takanori Watanabe2022-10-181-0/+1
* device_get_property: add a HANDLE caseBjoern A. Zeeb2022-10-091-2/+17
* fdt simple drivers: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-091-5/+3
* Extend device_get_property APIKornel Duleba2022-03-101-3/+46
* device: add device_get_property and device_has_propertyBartlomiej Grzesik2021-09-201-0/+16
* newbus: Move from bus_child_{pnpinfo,location}_src to bus_child_{pnpinfo,loca...Warner Losh2021-06-231-1/+1
* Correctly handle nodes compatible with "syscon", "simple-bus".Michal Meloun2020-09-251-0/+10
* Make simplebus friendlier for subclassing.Michal Meloun2020-09-251-2/+27
* Allow child classes of simplebus to call attach directlyAndrew Turner2020-08-031-3/+3
* fdt: Add support for simple-mfd busEmmanuel Vadot2018-12-121-8/+1
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* "Buses" is the preferred plural of "bus"Conrad Meyer2017-01-151-1/+1
* Revert r306473.Justin Hibbits2016-10-011-9/+0
* Use the cell-index property as the unit number if available.Justin Hibbits2016-09-301-0/+9
* INTRNG: Rework handling with resources. Partially revert r301453.Michal Meloun2016-08-191-2/+0
* INTRNG - change the way how an interrupt mapping data are providedSvatopluk Kraus2016-06-051-0/+2
* Use uintmax_t (typedef'd to rman_res_t type) for rman ranges.Justin Hibbits2016-03-181-3/+3
* Introduce a RMAN_IS_DEFAULT_RANGE() macro, and use it.Justin Hibbits2016-02-201-1/+1
* Convert rman to use rman_res_t instead of u_longJustin Hibbits2016-01-271-2/+2
* SIMPLEBUS: Don't panic if child device doesn't have devinfo set.Michal Meloun2015-12-131-0/+6
* Provide the number of interrupt resources added to the listRuslan Bukin2015-05-151-1/+1
* Make simplebus a base class of ofwbus. This allows the elimination ofIan Lepore2015-03-271-42/+101
* Allow creating subclass of FDT simplebusJayachandran C.2015-02-271-25/+4
* Introduce ofw_bus_reg_to_rl() to replace part of common bus codeZbigniew Bodek2015-01-131-30/+1
* Fail to probe on simplebus nodes that lack a "ranges" property.Ian Lepore2014-10-191-1/+7
* Replace multiple nearly-identical copies of code to walk through an FDTIan Lepore2014-09-251-31/+2
* Rename OF_xref_phandle() to OF_node_from_xref() and add a new functionIan Lepore2014-09-011-1/+1
* Adjust ofwbus and simplebus to attach at BUS_PASS_ORDER_MIDDLE, so thatIan Lepore2014-08-051-1/+1
* Set ofwbus and simplebus to attach during BUS_PASS_BUS.Ian Lepore2014-08-051-2/+4
* Better nomatch messages: include compat string. Also, flag devices asWarner Losh2014-02-121-4/+11
* Move Open Firmware device root on PowerPC, ARM, and MIPS systems toNathan Whitehorn2014-02-051-1/+1
* Follow r261352 by updating all drivers which are children of simplebusIan Lepore2014-02-021-0/+3
* Be more robust with malformed interrupt config data. Instead of crashingIan Lepore2014-02-021-5/+17
* Allow nesting of simplebuses.Nathan Whitehorn2014-02-021-0/+1
* Provide a simpler and more standards-compliant simplebus implementation toNathan Whitehorn2014-02-011-265/+252
* Retire machine/fdt.h as a header used by MI code, as its function is nowNathan Whitehorn2014-01-051-2/+0
* Reimplement fdt_intr_to_rl() in terms of OFW_BUS_MAP_INTR() andNathan Whitehorn2014-01-041-1/+1