Home
last modified time | relevance | path

Searched refs:downstream (Results 1 – 25 of 88) sorted by relevance

1234

/openbmc/qemu/docs/interop/
H A Dqmp-spec.rst387 We recommend that downstream consumers of QEMU do *not* modify QMP.
388 Management tools should be able to support both upstream and downstream
389 versions of QMP without special logic, and downstream extensions are
393 avoid modifying QMP. Both upstream and downstream need to take care to
397 ``__`` (double underscore) for downstream use ("downstream names"). This
398 means upstream will never use any downstream names for its commands,
401 Any new names downstream wishes to add must begin with ``__``. To
403 recommended that you prefix your downstream names with ``__RFQDN_`` where
415 The section `Compatibility Considerations`_ applies to downstream as well
416 as to upstream, obviously. It follows that downstream must behave
[all …]
/openbmc/qemu/hw/misc/
H A Dtz-ppc.c252 if (s->port[i].downstream) { in tz_ppc_realize()
262 if (!port->downstream) { in tz_ppc_realize()
279 address_space_init(&port->downstream_as, port->downstream, name); in tz_ppc_realize()
281 size = memory_region_size(port->downstream); in tz_ppc_realize()
305 DEFINE_PROP_LINK("port[" #N "]", TZPPC, port[N].downstream, \
H A Dtz-msc.c253 if (!s->downstream) { in tz_msc_realize()
262 size = memory_region_size(s->downstream); in tz_msc_realize()
263 address_space_init(&s->downstream_as, s->downstream, name); in tz_msc_realize()
282 DEFINE_PROP_LINK("downstream", TZMSC, downstream,
H A Dtz-mpc.c508 if (!s->downstream) { in tz_mpc_realize()
513 size = memory_region_size(s->downstream); in tz_mpc_realize()
553 address_space_init(&s->downstream_as, s->downstream, in tz_mpc_realize()
591 DEFINE_PROP_LINK("downstream", TZMPC, downstream,
/openbmc/qemu/hw/usb/
H A Dbus.c368 void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr)
371 int l = snprintf(downstream->path, sizeof(downstream->path), "%s.%d", in usb_port_location()
374 assert(l < sizeof(downstream->path)); in usb_port_location()
375 downstream->hubcount = upstream->hubcount + 1; in usb_port_location()
377 snprintf(downstream->path, sizeof(downstream->path), "%d", portnr); in usb_port_location()
378 downstream->hubcount = 0; in usb_port_location()
369 usb_port_location(USBPort * downstream,USBPort * upstream,int portnr) usb_port_location() argument
H A Ddev-hub.c293 USBDevice *downstream; in usb_hub_find_device() local
301 downstream = usb_find_device(&port->port, addr); in usb_hub_find_device()
302 if (downstream != NULL) { in usb_hub_find_device()
303 return downstream; in usb_hub_find_device()
/openbmc/qemu/include/hw/misc/
H A Dtz-msc.h74 MemoryRegion *downstream; member
H A Dtz-ppc.h81 MemoryRegion *downstream; member
H A Dtz-mpc.h64 MemoryRegion *downstream; member
/openbmc/u-boot/arch/arm/dts/
H A Dfsl-ls2080a.dtsi111 ranges = <0x81000000 0x0 0x00000000 0x10 0x00020000 0x0 0x00010000 /* downstream I/O */
126 ranges = <0x81000000 0x0 0x00000000 0x12 0x00020000 0x0 0x00010000 /* downstream I/O */
141 ranges = <0x81000000 0x0 0x00000000 0x14 0x00020000 0x0 0x00010000 /* downstream I/O */
156 ranges = <0x81000000 0x0 0x00000000 0x16 0x00020000 0x0 0x00010000 /* downstream I/O */
H A Dfsl-ls1088a.dtsi118 ranges = <0x81000000 0x0 0x00000000 0x20 0x00020000 0x0 0x00010000 /* downstream I/O */
134 ranges = <0x81000000 0x0 0x00000000 0x28 0x00020000 0x0 0x00010000 /* downstream I/O */
150 ranges = <0x81000000 0x0 0x00000000 0x30 0x00020000 0x0 0x00010000 /* downstream I/O */
H A Dfsl-ls1043a.dtsi256 ranges = <0x81000000 0x0 0x00000000 0x40 0x00020000 0x0 0x00010000 /* downstream I/O */
272 ranges = <0x81000000 0x0 0x00000000 0x48 0x00020000 0x0 0x00010000 /* downstream I/O */
287 ranges = <0x81000000 0x0 0x00000000 0x50 0x00020000 0x0 0x00010000 /* downstream I/O */
H A Dfsl-ls1046a.dtsi258 ranges = <0x81000000 0x0 0x00000000 0x40 0x00020000 0x0 0x00010000 /* downstream I/O */
275 ranges = <0x81000000 0x0 0x00000000 0x48 0x00020000 0x0 0x00010000 /* downstream I/O */
291 ranges = <0x81000000 0x0 0x00000000 0x50 0x00020000 0x0 0x00010000 /* downstream I/O */
H A Darmada-cp110-slave.dtsi276 /* downstream I/O */
302 /* downstream I/O */
329 /* downstream I/O */
/openbmc/qemu/hw/arm/
H A Dmusca.c120 * needs to be plugged into the downstream end of the PPC port.
227 MemoryRegion *downstream; in make_mpc()
237 downstream = &mms->ram[i]; in make_mpc()
238 memory_region_init_rom(downstream, NULL, mpcinfo[i].name, in make_mpc()
242 downstream = &mms->ram[i]; in make_mpc()
243 memory_region_init_ram(downstream, NULL, mpcinfo[i].name, in make_mpc()
254 downstream = sysbus_mmio_get_region(SYS_BUS_DEVICE(uds), 0); in make_mpc()
261 object_property_set_link(OBJECT(mpc), "downstream", OBJECT(downstream), in make_mpc()
437 * + initialize, configure and realize downstream device in musca_init()
226 MemoryRegion *downstream; make_mpc() local
[all...]
/openbmc/qemu/tests/qapi-schema/
H A Dreserved-member-underscore.json3 # begin with a letter or a downstream extension double-underscore prefix).
/openbmc/qemu/include/hw/dma/
H A Dpl080.h69 MemoryRegion *downstream; member
/openbmc/u-boot/arch/x86/include/asm/acpi/
H A Dirqroute.asl43 /* PCIe downstream ports interrupt routing */
/openbmc/qemu/hw/dma/
H A Dpl080.c396 if (!s->downstream) { in pl080_realize()
401 address_space_init(&s->downstream_as, s->downstream, "pl080-downstream"); in pl080_realize()
412 DEFINE_PROP_LINK("downstream", PL080State, downstream,
/openbmc/qemu/docs/system/devices/
H A Dcxl.rst130 downstream ports.
132 Both the CXL upstream and downstream ports have CXL specific
136 appropriate downstream port.
140 downstream ports on the internal switch bus (cxl-downstream).
285 | appropriate downstream port |
377 -device cxl-downstream,port=0,bus=us0,id=swport0,chassis=0,slot=4 \
379 -device cxl-downstream,port=1,bus=us0,id=swport1,chassis=0,slot=5 \
381 -device cxl-downstream,port=2,bus=us0,id=swport2,chassis=0,slot=6 \
383 -device cxl-downstream,port=3,bus=us0,id=swport3,chassis=0,slot=7 \
/openbmc/entity-manager/src/entity_manager/
H A Dtopology.cpp219 BoardPathsView boardPaths, const Path& upstream, const Path& downstream, in fillAssocForPortId() argument
243 result[upstream].insert({assocName.name, assocName.reverse, downstream}); in fillAssocForPortId()
H A Dtopology.hpp74 BoardPathsView boardPaths, const Path& upstream, const Path& downstream,
/openbmc/openbmc/poky/meta/recipes-devtools/tcltk8/tcl8/
H A D0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch13 But we can carry the fix downstream.
/openbmc/openbmc/poky/meta/recipes-devtools/qemu/qemu/
H A Dqemu-guest-agent.init3 # For QEMU Debian downstream package
/openbmc/u-boot/doc/device-tree-bindings/pci/
H A Darmada8k-pcie.txt38 /* downstream I/O */

1234