c71e73b0fbd8b142ebb4a933bb0e93ec2b0d830e |
|
01-Sep-2020 |
mjg <mjg@FreeBSD.org> |
ofw: clean up empty lines in .c and .h files
|
fb8ca856fb68faaad5158cd962e12215948b6de4 |
|
12-Jun-2018 |
manu <manu@FreeBSD.org> |
simplebus pnp: Do not generate pnp info is the bus status is not okay Generating the pnp info have the side effect to include all nodes even if the status isn't "okay". That means that loading the module will load but not attach as it checks the status in the probe function. On pine64 before : root@pine64-lts:~ # devmatch -u unattached on ofwbus pnpinfo name=memory unattached on ofwbus pnpinfo name=chosen unattached on ofwbus pnpinfo name=sound_spdif compat=simple-audio-card unattached on ofwbus pnpinfo name=spdif-out compat=linux,spdif-dit unattached on simplebus pnpinfo name=dma-controller@1c02000 compat=allwinner,sun50i-a64-dma unattached on simplebus pnpinfo name=mmc@1c10000 compat=allwinner,sun50i-a64-mmc unattached on simplebus pnpinfo name=usb@1c19000 compat=allwinner,sun8i-a33-musb unattached on simplebus pnpinfo name=spdif@1c21000 compat=allwinner,sun50i-a64-spdif unattached on simplebus pnpinfo name=i2s@1c22000 compat=allwinner,sun50i-a64-i2s unattached on simplebus pnpinfo name=i2s@1c22400 compat=allwinner,sun50i-a64-i2s unattached on simplebus pnpinfo name=serial@1c28400 compat=snps,dw-apb-uart unattached on simplebus pnpinfo name=serial@1c28800 compat=snps,dw-apb-uart unattached on simplebus pnpinfo name=serial@1c28c00 compat=snps,dw-apb-uart unattached on simplebus pnpinfo name=serial@1c29000 compat=snps,dw-apb-uart unattached on simplebus pnpinfo name=i2c@1c2ac00 compat=allwinner,sun6i-a31-i2c unattached on simplebus pnpinfo name=i2c@1c2b000 compat=allwinner,sun6i-a31-i2c unattached on simplebus pnpinfo name=i2c@1c2b400 compat=allwinner,sun6i-a31-i2c unattached on ofwbus pnpinfo name=aliases unattached on ofwbus pnpinfo name=symbols All simplebus node are disabled After : root@pine64-lts:~ # devmatch -u unattached on ofwbus pnpinfo name=memory unattached on ofwbus pnpinfo name=chosen unattached on ofwbus pnpinfo name=sound_spdif compat=simple-audio-card unattached on ofwbus pnpinfo name=spdif-out compat=linux,spdif-dit unattached on simplebus pnpinfo name=dma-controller@1c02000 compat=allwinner,sun50i-a64-dma unattached on simplebus pnpinfo name=usb@1c19000 compat=allwinner,sun8i-a33-musb unattached on ofwbus pnpinfo name=aliases unattached on ofwbus pnpinfo name=symbols Reviewed by: imp (with some objection) Differential Revision: https://reviews.freebsd.org/D15770
|
3308d36a5e2faea7a0284eb62ee256bf17a3c0cf |
|
09-Apr-2018 |
gonzo <gonzo@FreeBSD.org> |
Align OF_getencprop_alloc API with OF_getencprop and OF_getprop_alloc Change OF_getencprop_alloc semantics to be combination of malloc and OF_getencprop and return size of the property, not number of elements allocated. For the use cases where number of elements is preferred introduce OF_getencprop_alloc_multi helper function that copies semantics of OF_getencprop_alloc prior to this change. This is to make OF_getencprop_alloc and OF_getencprop_alloc_multi function signatures consistent with OF_getencprop_alloc and OF_getencprop_alloc_multi. Functionality-wise this patch is mostly rename of OF_getencprop_alloc to OF_getencprop_alloc_multi except two calls in ofw_bus_setup_iinfo where 1 was used as a block size.
|
1252c9346c5d287a42e08197430f905762dae341 |
|
08-Apr-2018 |
gonzo <gonzo@FreeBSD.org> |
Clean up OF_getprop_alloc API OF_getprop_alloc takes element size argument and returns number of elements in the property. There are valid use cases for such behavior but mostly API consumers pass 1 as element size to get string properties. What API users would expect from OF_getprop_alloc is to be a combination of malloc + OF_getprop with the same semantic of return value. This patch modifies API signature to match these expectations. For the valid use cases with element size != 1 and to reduce modification scope new OF_getprop_alloc_multi function has been introduced that behaves the same way OF_getprop_alloc behaved prior to this patch. Reviewed by: ian, manu Differential Revision: https://reviews.freebsd.org/D14850
|
ad8db5b0cce88cad7c783bc7882ad929cf2d7c8c |
|
04-Apr-2018 |
mw <mw@FreeBSD.org> |
Add api for creating resource list based on 'assigned-addresses' According to device tree binding 'assigned-addresses' can refer to PCIE MMIO register space. New function ofw_bus_assigned_addresses_to_rl is provided to support it. Submitted by: Rafal Kozik <rk@semihalf.com> Obtained from: Semihalf Sponsored by: Stormshield Differential Revision: https://reviews.freebsd.org/D14750
|
2e698f572f77cb492ca4cc461cd16e4d0ce216b8 |
|
28-Jan-2018 |
imp <imp@FreeBSD.org> |
Out of an abundance of caution, NUL out the first byte in the PNP info.
|
c8da6fae2c8073f216b7a35739f7dfa140c9a8d9 |
|
25-Dec-2017 |
kan <kan@FreeBSD.org> |
Do pass removing some write-only variables from the kernel. This reduces noise when kernel is compiled by newer GCC versions, such as one used by external toolchain ports. Reviewed by: kib, andrew(sys/arm and sys/arm64), emaste(partial), erj(partial) Reviewed by: jhb (sys/dev/pci/* sys/kern/vfs_aio.c and sys/kern/kern_synch.c) Differential Revision: https://reviews.freebsd.org/D10385
|
1537078d8f2e62e82de3c08bdcae0fd79dc35a4a |
|
27-Nov-2017 |
pfg <pfg@FreeBSD.org> |
sys/dev: further adoption of SPDX licensing ID tags. Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts.
|
60a68b05b32d206444247424d5c90b308f590d64 |
|
09-Aug-2017 |
mw <mw@FreeBSD.org> |
Enable using ofw_bus_find_compatible in early platform code Before this patch function ofw_bus_find_compatible was using memory allocations in order to find compatible node and the property's length. This way there was always a suited buffer for property, however this approach had also disadvantages - ofw_bus_find_compatible couldn't be used when malloc is not available, e.g. during fdt fixup stage. In order to remove the usage limitation of ofw_bus_find_compatible(), this patch modifies the function to use ofw_bus_node_is_compatible() (instead of the one without _int suffix), which uses a fixed buffer on stack instead of dynamic allocations. Submitted by: Patryk Duda <pdk@semihalf.com> Reviewed by: nwhitehorn, cognet (mentor) Approved by: cognet (mentor) Obtained from: Semihalf Differential Revision: https://reviews.freebsd.org/D11880
|
f7696c94e4b366a4d4da34b8725c1ca902d829a6 |
|
20-Feb-2017 |
pfg <pfg@FreeBSD.org> |
sys/dev: Replace zero with NULL for pointers. Makes things easier to read, plus architectures may set NULL to something different than zero. Found with: devel/coccinelle MFC after: 3 weeks
|
5b53c9909292f1fba12b98de623063adaa1298a4 |
|
25-Jan-2017 |
wma <wma@FreeBSD.org> |
Expand OpenFirmware API with ofw_bus_node_status_okay method Method could be used before we can access device_t structure. As per simple phandle_t handle we can access FDT to check if specified node has been enabled. It will be used in Marvell's common configuration code. Submitted by: Konrad Adamczyk <ka@semihalf.com> Obtained from: Semihalf Sponsored by: Stormshield Reviewed by: zbb, meloun-miracle-cz Differential revision: https://reviews.freebsd.org/D9218
|
1592bb3c795141872467a97e04ef36e531079444 |
|
28-Aug-2016 |
jhibbits <jhibbits@FreeBSD.org> |
Check all compatible strings on uart devices in powerpc Summary: Some device trees put "fsl,ns16650" first in the compatible list. This causes the probe code to choke, even though the device is compatible with ns16650, and has it listed later in the tree. Reviewed by: nwhitehorn MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D7676
|
28257ccca857e1627df74e13f3f3b8db0d1bec59 |
|
19-Aug-2016 |
mmel <mmel@FreeBSD.org> |
INTRNG: Rework handling with resources. Partially revert r301453. - Read interrupt properties at bus enumeration time and store it into global mapping table. - At bus_activate_resource() time, given mapping entry is resolved and connected to real interrupt source. A copy of mapping entry is attached to given resource. - At bus_setup_intr() time, mapping entry stored in resource is used for delivery of requested interrupt configuration. - For MSI/MSIX interrupts, mapping entry is created within pci_alloc_msi()/pci_alloc_msix() call. - For legacy PCI interrupts, mapping entry must be created within pcib_route_interrupt() by pcib driver itself. Reviewed by: nwhitehorn, andrew Differential Revision: https://reviews.freebsd.org/D7493
|
612e6958e467e3c02b826846aba5b685d486c07c |
|
05-Jun-2016 |
skra <skra@FreeBSD.org> |
INTRNG - change the way how an interrupt mapping data are provided to the framework in OFW (FDT) case. This is a follow-up to r301451. Differential Revision: https://reviews.freebsd.org/D6634
|
00d578928eca75be320b36d37543a7e2a4f9fbdb |
|
27-May-2016 |
grehan <grehan@FreeBSD.org> |
Create branch for bhyve graphics import.
|
cb60d232484543011e4ff8ef6297e9bde00cd4b7 |
|
16-May-2016 |
andrew <andrew@FreeBSD.org> |
Add a pcib interface for use by interrupt controllers that need to translate the pci rid to a controller ID. The translation could be based on the 'msi-map' OFW property, a similar ACPI option, or hard-coded for hardware lacking the above options. Reviewed by: wma Obtained from: ABT Systems Ltd Sponsored by: The FreeBSD Foundation
|
93fc03e6d87f8e0e3818c6e94c4f19723c512250 |
|
09-Feb-2016 |
adrian <adrian@FreeBSD.org> |
Teach ofw_bus_parse_xref_list_alloc to be able to return the length of the parsed list. Currently, there is no easy way to know in advance how many entries a list parsed by ofw_bus_parse_xref_list_alloc() in sys/dev/ofw/ofw_bus_subr.c has. This patch: * teaches the existing function about handling idx == -1 and returning how big the set is; then renames it as _internal; * create a new function that asserts idx != -1, so the old API is maintained; * add a new function that returns just the list length. Submitted by: Stanislav Galabov <sgalabov@gmail.com> Differential Revision: https://reviews.freebsd.org/D5043
|
6e7de4e62d91d27501e4a843047a5841c78d8ebf |
|
20-Jan-2016 |
mmel <mmel@FreeBSD.org> |
OFW: Fix ofw_bus_string_list_to_array() function. Originally committed version was unfinished and didn't work at all, because I took it from the wrong WIP branch by mistake. Approved by: kib (mentor)
|
b6345059e4f17857275423b89f3b2995e550f27d |
|
02-Jan-2016 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Make using the #address-cells property on the interrupt parent in device tree parsing opt-out rather than opt-in. All FDT-based systems as well as PowerPC systems with real Open Firmware use the CHRP-derived binding that includes it, which makes SPARC the odd man out here. Making it opt-out avoids astonishment on new platform bring up.
|
567d1118843d54c316a66b50fdd85a8e70a281c0 |
|
17-Dec-2015 |
andrew <andrew@FreeBSD.org> |
Support the variant of the interrupt-map property where the parent bus has the #address-cells property set. For this we need to read more data before the parent interrupt description. this is only enabled on arm64 for now as it's not quite compliant with the ePAPR spec. We should use a default of 2 where the #address-cells property is missing, however this will need further testing across architectures. Obtained from: ABT Systems Ltd Sponsored by: SoftIron Inc Differential Revision: https://reviews.freebsd.org/D4518
|
233abe7690de64a8a97a079e03059094a5102126 |
|
13-Dec-2015 |
mmel <mmel@FreeBSD.org> |
OFW: Add helper functions for parsing xref based lists. By using this functions, we can parse a list of tuples, each of them holds xref and variable number of values. This kind of list is used in DT for clocks, gpios, resets ... Discussed with: ian, nwhitehorn Approved by: kib (mentor) Differential Revision: https://reviews.freebsd.org/D4316
|
f4f37aad61958d68075c11edaa3dc50dc769fca8 |
|
02-Dec-2015 |
mmel <mmel@FreeBSD.org> |
OFW: Move code for searching interrupt parent into separate function. It can be used by interrupt controller drivers. Approved by: kib (mentor)
|
07e139cf373fa3c0b604d2900ef606e259f36edc |
|
25-Jul-2015 |
gonzo <gonzo@FreeBSD.org> |
OF_getencprop_alloc shouldn't be used to get string value. If string length + 1 is not divisible by 4 this function returns NULL property value. Otherwise - string with each 4 letters inverted
|
0ceb4ab18abe4fab65b1b1a65ce478016ced262b |
|
15-Jul-2015 |
andrew <andrew@FreeBSD.org> |
Fix an infinite loop when a node doesn't have an interrupt-parent property. Submitted by: Aleksey Kuleshov <rndfax@yandex.ru> Differential Revision: https://reviews.freebsd.org/D3041
|
09018605c0301399abb981b5682c91a369b9a137 |
|
14-Jul-2015 |
andrew <andrew@FreeBSD.org> |
Also accept "ok" to enable a device, some vendor device trees use this when they mean "okay"
|
9d4e4ebe6d4345c40a06d7496fc78306d3a65ce2 |
|
20-Jun-2015 |
imp <imp@FreeBSD.org> |
Add ofw_bus_find_child_by_phandle, a helper routine to find a device_t child matchig a given phandle_t. Differential Revision: https://reviews.freebsd.org/D2871
|
81e58ddcdd0272078011c41745e6d60eedd418f7 |
|
24-May-2015 |
gonzo <gonzo@FreeBSD.org> |
Rename fdt_find_child to ofw_bus_find_child. There is nothing FDT-specific in this function. Suggested by: andrew@
|
011666b0a8c74e747a5483f15fb01e9ac7dac93c |
|
23-May-2015 |
ian <ian@FreeBSD.org> |
MFC r277098, r279235: Introduce ofw_bus_reg_to_rl() to replace part of common bus code Fix endianness on FDT read in ARM GIC
|
deecdc3d61efe21dd72ab03d04cea4a956bab557 |
|
15-May-2015 |
br <br@FreeBSD.org> |
Provide the number of interrupt resources added to the list by using extra argument, so caller will know that.
|
3d9b504f8dbd7aa730a998190d7fe59b12dd9a76 |
|
13-May-2015 |
andrew <andrew@FreeBSD.org> |
Use the correct node wen reading the compatible property.
|
cb5057a71b2b09b9c283b5cb69aeed6feb120f08 |
|
11-May-2015 |
andrew <andrew@FreeBSD.org> |
Add ofw_bus_find_compatible to find a compatible ofw node. This will be used on ARM to help find the correct node to use to start secondary CPUs as this happens before device enumeration.
|
05a9ec274a0d07048a6892e6c9fa6a9db654d07f |
|
13-Jan-2015 |
zbb <zbb@FreeBSD.org> |
Introduce ofw_bus_reg_to_rl() to replace part of common bus code Instead of reusing the same reg parsing code, create one, common function that puts reg contents to the resource list. Address cells and size cells are passed rather than acquired here so that any bus can have different default values. Obtained from: Semihalf Reviewed by: andrew, ian, nwhitehorn Sponsored by: The FreeBSD Foundation
|
1be9b49684c6ec6e6f32f63949d830f3fd701424 |
|
05-Jan-2015 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Restore use of ofw_bus_intr_to_rl() in the pseries vdevice driver after fixing ofw_bus_intr_to_rl() to match the spec for unspecified interrupt-parent properties.
|
8526d66c636337d8a561fa54ed24f881c8ad347a |
|
26-Oct-2014 |
ian <ian@FreeBSD.org> |
MFC r272109, r272181: Replace multiple nearly-identical copies of code to walk through an FDT node's interrupts=<...> property creating resource list entries with a single common implementation. This change makes ofw_bus_intr_to_rl() the one true copy of that code and removes the copies of it from other places. This also adds handling of the interrupts-extended property.
|
1c8cde378e7386ca86f33d4ce67b360782b6abec |
|
26-Oct-2014 |
ian <ian@FreeBSD.org> |
MFC r270945: Rename OF_xref_phandle() to OF_node_from_xref() and add a new function that provides the inverse translation, OF_xref_from_node().
|
e2b20df1df60383594cba82c87a9e274a203c0e4 |
|
25-Sep-2014 |
ian <ian@FreeBSD.org> |
Replace multiple nearly-identical copies of code to walk through an FDT node's interrupts=<...> property creating resource list entries with a single common implementation. This change makes ofw_bus_intr_to_rl() the one true copy of that code and removes the copies of it from other places. This also adds handling of the interrupts-extended property, which allows specifying multiple interrupts for a node where each interrupt can have a separate interrupt-parent. The bindings for this state that the property cells contain an xref phandle to the interrupt parent followed by whatever interrupt info that parent normally expects. This leads to having a variable number of icells per interrupt in the property. For example you could have <&intc1 1 &intc2 26 9 0 &intc3 9 4>. Differential Revision: https://reviews.freebsd.org/D803
|
b149a9e7aec5e222b7dba23fdebc5717058e1c33 |
|
01-Sep-2014 |
ian <ian@FreeBSD.org> |
Rename OF_xref_phandle() to OF_node_from_xref() and add a new function that provides the inverse translation, OF_xref_from_node(). Discussed with: nwhitehorn
|
27f0a13f0adbfdb658bb63aac86772e0107c1c20 |
|
15-May-2014 |
ian <ian@FreeBSD.org> |
MFC r261351, r261352, r261355, r261396, r261397, r261398, r261403, r261404, r261405 Open Firmware interrupt specifiers can consist of arbitrary-length byte strings and include arbitrary information (IRQ line/domain/sense). When the ofw_bus_map_intr() API was introduced, it assumed that, as on most systems, these were either 1 cell, containing an interrupt line, or 2, containing a line number plus a sense code. It turns out a non-negligible number of ARM systems use 3 (or even 4!) cells for interrupts, so make this more general. Provide a simpler and more standards-compliant simplebus implementation to get the Routerboard 800 up and running with the vendor device tree. This does not implement some BERI-specific features (which hopefully won't be necessary soon), so move the old code to mips/beri, with a higher attach priority when built, until MIPS interrupt domain support is rearranged. Allow nesting of simplebuses. Add a set of helpers (ofw_bus_get_status() and ofw_bus_status_okay()) to process "status" properties of OF nodes. Fix one remnant endian flaw in nexus.
|
1baea4807a7a800ea024080ecb08d8018d423b35 |
|
14-May-2014 |
ian <ian@FreeBSD.org> |
MFC r258800, r258802, r258805, r258806, r258807, r258851, r258857, r259199, r259484, r259513, r259514, r259516 The kernel stack guard pages are only below the stack pointer, not above. Remove unnecessary double-setting of the thread's onfault state in copyinstr(). Open Firmware mandates that certain cross-references, in particular those in /chosen, be ihandles. The ePAPR spec makes those cross-reference phandles, since FDT has no concept of ihandles. Have the OF FDT CI module interpret queries about ihandles as cross-reference phandles. Real OF systems have an ihandle under /chosen/stdout, not a phandle. Use the right type. Rearchitect platform memory map parsing to make it less Open Firmware-centric. Remove fdtbus_bs_tag definition, which is now obsolete. The remainder of this file is also slated for future demolition. Return the correct IEEE 1275 code for "nextprop". Use the common Open Firmware PCI interrupt routing code instead of the duplicate version in dev/fdt. Configure interrupt sense based on device tree information. Simplify the ofw_bus_lookup_imap() API slightly: make it allocate maskbuf internally instead of requiring the caller to allocate it.
|
4c1631c2b15b10939521fa505c7995af4409aefb |
|
13-May-2014 |
ian <ian@FreeBSD.org> |
MFC r256932, r256938, r256966, r256953, r256967, r256969, r257015: Add a new function (OF_getencprop()) that undoes the transformation applied by encode-int. Specifically, it takes a set of 32-bit cell values and changes them to host byte order. Most non-string instances of OF_getprop() should be using this function, which is a no-op on big-endian platforms. Use the new function all over the place.
|
3d20d204d8598105e6dd4fb0d595e33d2461a02b |
|
13-May-2014 |
ian <ian@FreeBSD.org> |
MFC r256814, r256816, r256818, r256846, r256855, r256864 (by nwhitehorn): - Handle 2GB of ram - Allow the OFW interrupt mapping code to work with PCI devices not enumerated by Open Firmware, as in the case of FDT. - Provide an interface for PCI bus drivers that need some of ofw_pci's metadata during attach. - Use standard ofw_bus helpers instead of reinventing the wheel. - Make hard-wired TLB allocations be at minimum one page.
|
eb1a5f8de9f7ea602c373a710f531abbf81141c4 |
|
21-Feb-2014 |
gjb <gjb@FreeBSD.org> |
Move ^/user/gjb/hacking/release-embedded up one directory, and remove ^/user/gjb/hacking since this is likely to be merged to head/ soon. Sponsored by: The FreeBSD Foundation
|
6c040d556a95c5afbd15742051a57c305af43dcd |
|
02-Feb-2014 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Add a set of helpers (ofw_bus_get_status() and ofw_bus_status_okay()) to process "status" properties of OF nodes. I've avoided adding new KOBJ methods here so that we don't have to modify every ofw_bus in the tree. Since 100% of implementations of ofw_bus use only ofw_bus_gen_*(), it might be worth garbage-collecting the other methods as well.
|
6b01bbf146ab195243a8e7d43bb11f8835c76af8 |
|
27-Dec-2013 |
gjb <gjb@FreeBSD.org> |
Copy head@r259933 -> user/gjb/hacking/release-embedded for initial inclusion of (at least) arm builds with the release. Sponsored by: The FreeBSD Foundation
|
5841c2df965f7ad59905fc7aef66417bc9ac5497 |
|
17-Dec-2013 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Simplify the ofw_bus_lookup_imap() API slightly: make it allocate maskbuf internally instead of requiring the caller to allocate it.
|
f1e1cbd8376d30c1246c70f69e606625b47c531e |
|
17-Dec-2013 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Configure interrupt sense based on device tree information. This extends the OF interrupt map API to return sense information to the caller and the PowerPC Open Firmware PCI base driver to use it to program the PIC.
|
366fb50b48cf6f8c18ba9d1c8eb56dd89c5c917e |
|
13-Dec-2013 |
ian <ian@FreeBSD.org> |
MFC r257130: Add a helper routine to search for a compat string in a table that associates compat strings with arbitrary values that mean something to the driver. This is handy for drivers that support several variations of similar hardware and need to know which one matched.
|
4469fbfd438f6eb6b4f85d5b9cacd76c571f09c2 |
|
25-Oct-2013 |
ian <ian@FreeBSD.org> |
Add a helper routine to search for a compat string in a table that associates compat strings with arbitrary values that mean something to the driver. This is handy for drivers that support several variations of similar hardware and need to know which one matched. Reviewed by: imp, jmg, nwhitehorn
|
9a7fe80e18a50ce12c6a8fe4992f6cdedee57069 |
|
23-Oct-2013 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Make all Open Firmware internal interfaces endian-safe by using the new OF_getencprop() API. This removes one explicit endianness conversion in ofw_iicbus.c.
|
1907ae54f114fb93c693357f584a6395bdfdb091 |
|
21-Oct-2013 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Allow the OFW interrupt mapping code to work with PCI devices not enumerated by Open Firmware, as in the case of FDT.
|
3b7e4aa267bc7eedadb66a6fa1fac2a227969a41 |
|
15-Sep-2013 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Add a kernel interface (OF_xref_phandle()) for systems where phandles used as cross-references in the device tree and phandles as used by the Open Firmware client interface are in different namespaces. This include IBM pSeries hardware as well as FDT systems. FDT certainly abuses ihandles for this purpose and should be modified to use this API eventually. This changes no behavior on systems where FreeBSD already worked. Reviewed by: marius Approved by: re (kib) MFC after: 2 weeks
|
5320d21e5403e54eded0635a6f0ac20db93b0467 |
|
18-Aug-2012 |
hrs <hrs@FreeBSD.org> |
- Add OF_hasprop() and ofw_bus_has_prop(). These can be used to check existence of the property. - Fix ofw_bus_is_compatible{,_strict}() to prevent substring match in the compatible string. Reviewed by: raj
|
6a20b9d5e1b5cb14c03717b65c2e6acd19edb28a |
|
15-Mar-2012 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Make ofw_bus_get_node() consistently return -1 when there is no associated OF node, instead of a random mixture of 0 and -1. Update all checks for 0 to check for -1 instead. MFC after: 4 weeks
|
09f9c897d33c41618ada06fbbcf1a9b3812dee53 |
|
19-Oct-2010 |
jamie <jamie@FreeBSD.org> |
A new jail(8) with a configuration file, to replace the work currently done by /etc/rc.d/jail.
|
c757ee90aefd19aff23dfb5e938e8e1e8576dbd4 |
|
18-Jun-2010 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Provide for multiple, cascaded PICs on PowerPC systems, and extend the OFW interrupt map interface to also return the device's interrupt parent. MFC after: 8.1-RELEASE
|
ef99eb110e7dc8e312597e69d22a462e881a05d0 |
|
28-May-2010 |
raj <raj@FreeBSD.org> |
Prepare and extend OFW layer for FDT support. o Let OFW_INIT() and OF_init() return status value. o Provide helper routines for 'compatible' property handling. o Only compile OF and OFW code, which is relevant in FDT scenario. o Other minor cosmetics Reviewed by: imp Sponsored by: The FreeBSD Foundation
|
f1216d1f0ade038907195fc114b7e630623b402c |
|
19-Mar-2010 |
delphij <delphij@FreeBSD.org> |
Create a custom branch where I will be able to do the merge.
|
3961775a2db6be3ae2d269fb4fd4bb0465075f50 |
|
14-Jun-2009 |
marius <marius@FreeBSD.org> |
Fix style.
|
4ca12119c31e0cd42b3cb4b28dd898b8218290dc |
|
03-Jan-2009 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Fix the OFW interrupt map parser to use its own idea of the number of interrupt cells in the map, instead of using a value passed to it and then panicing if it disagrees. This fixes interrupt map parsing for PCI bridges on some Apple Uninorth PCI controllers. Reported by: marcel Tested on: G4 iBook, Sun Ultra 5
|
f0e837432d62958c713c7e6ebbb2adc52c8fd696 |
|
15-Dec-2008 |
nwhitehorn <nwhitehorn@FreeBSD.org> |
Adapt parts of the sparc64 Open Firmware bus enumeration code (in particular, the code for parsing interrupt maps) to PowerPC and reflect their new MI status by moving them to the shared dev/ofw directory. This commit also modifies the OFW PCI enumeration procedure on PowerPC to allow the bus to find non-firmware-enumerated devices that Apple likes to add, and adds some useful Open Firmware properties (compat and name) to the pnpinfo string of children on OFW SBus, EBus, PCI, and MacIO links. Because of the change to PCI enumeration on PowerPC, X has started working again on PPC machines with Grackle hostbridges. Reviewed by: marius Obtained from: sparc64
|
cf5320822f93810742e3d4a1ac8202db8482e633 |
|
19-Oct-2008 |
lulf <lulf@FreeBSD.org> |
- Import the HEAD csup code which is the basis for the cvsmode work.
|
fa92f23f1819b63d981e32c4aa232f819e0a2dc9 |
|
22-Nov-2005 |
marius <marius@FreeBSD.org> |
- Add a new method ofw_bus_default_get_devinfo() that allows to retrieve a newly introduced struct ofw_bus_devinfo which can hold the OFW info of a device recallable via the ofw_bus KOBJ interface. Introduce a set of functions ofw_bus_gen_get_*() which use ofw_bus_default_get_devinfo() to provide generic subroutines for implementing the rest of the ofw_bus KOBJ interface in a bus driver. This is inspired by bus_get_resource_list() and bus_generic_rl_*_resource() and allows to reduce code duplication in bus drivers as they only have to provide an ofw_bus_default_get_devinfo() implementation in order to provide the ofw_bus KOBJ interface via ofw_bus_gen_get_*(). - While here add a comment to ofw_bus_if.m describing the intention of the ofw_bus KOBJ interface. Reviewed by: marcel
|