2012-06-25 14:31:04 +00:00
|
|
|
#
|
|
|
|
# \brief Test for using the lwIP TCP/IP stack over USB
|
|
|
|
# \author Sebastian Sumpf
|
|
|
|
# \date 2012-07-06
|
|
|
|
#
|
|
|
|
# This test case executes a small HTTP server, it has been used on PandaBoard
|
|
|
|
# hardware only, though it should execute but not do anything on other hardware
|
|
|
|
#
|
|
|
|
|
|
|
|
create_boot_directory
|
2022-05-18 14:15:51 +00:00
|
|
|
import_from_depot [depot_user]/src/[base_src] \
|
2024-05-30 13:46:57 +00:00
|
|
|
[depot_user]/pkg/test_usb_host-[board] \
|
|
|
|
[depot_user]/src/usb_net \
|
2022-05-18 14:15:51 +00:00
|
|
|
[depot_user]/src/nic_router \
|
|
|
|
[depot_user]/src/libc \
|
|
|
|
[depot_user]/src/vfs \
|
|
|
|
[depot_user]/src/vfs_lwip \
|
|
|
|
[depot_user]/src/init
|
usb: session renewal & new client API
Replace the USB session API by one that provides a devices ROM only,
which contains information about all USB devices available for this client,
as well as methods to acquire and release a single device.
The acquisition of an USB device returns the capability to a device session
that includes a packet stream buffer to communicate control transfers
in between the client and the USB host controller driver. Moreover,
additional methods to acquire and release an USB interface can be used.
The acquisition of an USB interface returns the capability to an interface
session that includes a packet stream buffer to communicate either
bulk, interrupt, or isochronous transfers in between the client and the
USB host controller driver.
This commit implements the API changes in behalf of the Genode C API's
USB server and client side. Addtionally, it provides Usb::Device,
Usb::Interface, and Usb::Endpoint utilities that can be used by native
C++ clients to use the new API and hide the sophisticated packet stream API.
The adaptations necessary target the following areas:
* lx_emul layer for USB host and client side
* Linux USB host controller driver port for PC
* Linux USB client ports: usb_hid_drv and usb_net_drv, additionally
reduce the Linux tasks used inside these drivers
* Native usb_block_drv
* black_hole component
* Port of libusb, including smartcard and usb_webcam driver depending on it
* Port of Qemu XHCI model library, including vbox5 & vbox6 depending on it
* Adapt all run-scripts and drivers_interactive recipes to work
with the new policy rules of the USB host controller driver
Fix genodelabs/genode#5021
2023-09-14 08:55:11 +00:00
|
|
|
|
2022-05-18 14:15:51 +00:00
|
|
|
build { test/lwip/http_srv }
|
|
|
|
|
|
|
|
install_config {
|
2018-08-22 11:52:41 +00:00
|
|
|
<config>
|
2012-06-25 14:31:04 +00:00
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
2022-05-18 14:15:51 +00:00
|
|
|
<default caps="200"/>
|
2018-08-22 11:52:41 +00:00
|
|
|
|
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>
|
|
|
|
|
2024-05-30 13:46:57 +00:00
|
|
|
<start name="usb" caps="1500" managing_system="yes">
|
2022-05-18 14:15:51 +00:00
|
|
|
<binary name="init"/>
|
|
|
|
<resource name="RAM" quantum="32M"/>
|
2018-08-22 11:52:41 +00:00
|
|
|
<provides> <service name="Usb"/> </provides>
|
|
|
|
<route>
|
2022-05-18 14:15:51 +00:00
|
|
|
<service name="ROM" label="config">
|
|
|
|
<parent label="drivers.config"/> </service>
|
|
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
|
|
<any-service> <parent/> </any-service>
|
2018-08-22 11:52:41 +00:00
|
|
|
</route>
|
|
|
|
</start>
|
|
|
|
|
2024-05-30 13:46:57 +00:00
|
|
|
<start name="usb_net">
|
2021-01-08 16:27:24 +00:00
|
|
|
<resource name="RAM" quantum="20M"/>
|
2022-04-26 09:24:12 +00:00
|
|
|
<config mac="02:00:00:00:01:01" />
|
2021-01-08 16:27:24 +00:00
|
|
|
<route>
|
|
|
|
<service name="Uplink"><child name="nic_router"/></service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>
|
|
|
|
|
|
|
|
<start name="nic_router" caps="200">
|
2018-08-22 11:52:41 +00:00
|
|
|
<resource name="RAM" quantum="10M"/>
|
2021-01-08 16:27:24 +00:00
|
|
|
<provides>
|
|
|
|
<service name="Nic"/>
|
|
|
|
<service name="Uplink"/>
|
|
|
|
</provides>
|
|
|
|
<config verbose_domain_state="yes">
|
|
|
|
|
|
|
|
<policy label_prefix="test-lwip_httpsrv" domain="downlink"/>
|
2024-05-30 13:46:57 +00:00
|
|
|
<policy label_prefix="usb_net" domain="uplink"/>
|
2021-01-08 16:27:24 +00:00
|
|
|
|
|
|
|
<domain name="uplink">
|
|
|
|
|
|
|
|
<nat domain="downlink" tcp-ports="16384"/>
|
|
|
|
<tcp-forward port="443" domain="downlink" to="10.0.3.2"/>
|
|
|
|
<tcp-forward port="80" domain="downlink" to="10.0.3.2"/>
|
|
|
|
|
|
|
|
</domain>
|
|
|
|
|
|
|
|
<domain name="downlink" interface="10.0.3.1/24">
|
|
|
|
|
|
|
|
<dhcp-server ip_first="10.0.3.2" ip_last="10.0.3.2"/>
|
|
|
|
|
|
|
|
</domain>
|
|
|
|
|
|
|
|
</config>
|
2018-08-22 11:52:41 +00:00
|
|
|
</start>
|
|
|
|
|
|
|
|
<start name="test-lwip_httpsrv" caps="120">
|
2023-07-05 11:15:00 +00:00
|
|
|
<resource name="RAM" quantum="6M"/>
|
2018-08-22 11:52:41 +00:00
|
|
|
<config>
|
|
|
|
<vfs>
|
|
|
|
<dir name="dev"> <log/> </dir>
|
|
|
|
<dir name="socket"> <lwip dhcp="yes"/> </dir>
|
|
|
|
</vfs>
|
|
|
|
<libc stdout="/dev/log" stderr="/dev/log" socket="/socket"/>
|
|
|
|
</config>
|
2021-01-08 16:27:24 +00:00
|
|
|
<route>
|
|
|
|
<service name="Nic"><child name="nic_router"/></service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
2018-08-22 11:52:41 +00:00
|
|
|
</start>
|
2012-06-25 14:31:04 +00:00
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
2022-05-18 14:15:51 +00:00
|
|
|
# Define USB host controller config
|
2012-06-25 14:31:04 +00:00
|
|
|
#
|
2022-05-18 14:15:51 +00:00
|
|
|
set config {<config bios_handoff="yes">}
|
|
|
|
append_if [have_board rpi] config {
|
2024-05-30 13:46:57 +00:00
|
|
|
<policy label_prefix="usb_net">
|
usb: session renewal & new client API
Replace the USB session API by one that provides a devices ROM only,
which contains information about all USB devices available for this client,
as well as methods to acquire and release a single device.
The acquisition of an USB device returns the capability to a device session
that includes a packet stream buffer to communicate control transfers
in between the client and the USB host controller driver. Moreover,
additional methods to acquire and release an USB interface can be used.
The acquisition of an USB interface returns the capability to an interface
session that includes a packet stream buffer to communicate either
bulk, interrupt, or isochronous transfers in between the client and the
USB host controller driver.
This commit implements the API changes in behalf of the Genode C API's
USB server and client side. Addtionally, it provides Usb::Device,
Usb::Interface, and Usb::Endpoint utilities that can be used by native
C++ clients to use the new API and hide the sophisticated packet stream API.
The adaptations necessary target the following areas:
* lx_emul layer for USB host and client side
* Linux USB host controller driver port for PC
* Linux USB client ports: usb_hid_drv and usb_net_drv, additionally
reduce the Linux tasks used inside these drivers
* Native usb_block_drv
* black_hole component
* Port of libusb, including smartcard and usb_webcam driver depending on it
* Port of Qemu XHCI model library, including vbox5 & vbox6 depending on it
* Adapt all run-scripts and drivers_interactive recipes to work
with the new policy rules of the USB host controller driver
Fix genodelabs/genode#5021
2023-09-14 08:55:11 +00:00
|
|
|
<device vendor_id="0x0424" product_id="0xec00"/> </policy>}
|
2022-05-18 14:15:51 +00:00
|
|
|
append_if [have_spec x86] config {
|
2024-05-30 13:46:57 +00:00
|
|
|
<policy label_prefix="usb_net">
|
usb: session renewal & new client API
Replace the USB session API by one that provides a devices ROM only,
which contains information about all USB devices available for this client,
as well as methods to acquire and release a single device.
The acquisition of an USB device returns the capability to a device session
that includes a packet stream buffer to communicate control transfers
in between the client and the USB host controller driver. Moreover,
additional methods to acquire and release an USB interface can be used.
The acquisition of an USB interface returns the capability to an interface
session that includes a packet stream buffer to communicate either
bulk, interrupt, or isochronous transfers in between the client and the
USB host controller driver.
This commit implements the API changes in behalf of the Genode C API's
USB server and client side. Addtionally, it provides Usb::Device,
Usb::Interface, and Usb::Endpoint utilities that can be used by native
C++ clients to use the new API and hide the sophisticated packet stream API.
The adaptations necessary target the following areas:
* lx_emul layer for USB host and client side
* Linux USB host controller driver port for PC
* Linux USB client ports: usb_hid_drv and usb_net_drv, additionally
reduce the Linux tasks used inside these drivers
* Native usb_block_drv
* black_hole component
* Port of libusb, including smartcard and usb_webcam driver depending on it
* Port of Qemu XHCI model library, including vbox5 & vbox6 depending on it
* Adapt all run-scripts and drivers_interactive recipes to work
with the new policy rules of the USB host controller driver
Fix genodelabs/genode#5021
2023-09-14 08:55:11 +00:00
|
|
|
<device vendor_id="0x0b95" product_id="0x1790"/> </policy> }
|
2022-05-18 14:15:51 +00:00
|
|
|
append config {</config>}
|
2024-05-30 13:46:57 +00:00
|
|
|
set fd [open [run_dir]/genode/usb_host.config w]
|
2022-05-18 14:15:51 +00:00
|
|
|
puts $fd $config
|
|
|
|
close $fd
|
2012-06-25 14:31:04 +00:00
|
|
|
|
2023-11-24 11:48:02 +00:00
|
|
|
build_boot_image [build_artifacts]
|
2012-06-25 14:31:04 +00:00
|
|
|
|
2023-07-05 11:15:00 +00:00
|
|
|
proc usb_bus {} {
|
|
|
|
return "$::env(BUS)" }
|
|
|
|
|
|
|
|
proc usb_device {} {
|
|
|
|
return "$::env(DEVICE)" }
|
|
|
|
|
|
|
|
|
2017-05-23 13:05:55 +00:00
|
|
|
append qemu_args " -nographic"
|
2023-07-05 11:15:00 +00:00
|
|
|
append qemu_args { -usb -device nec-usb-xhci,id=xhci \
|
|
|
|
-device usb-host,hostbus=[usb_bus],hostaddr=[usb_device],bus=xhci.0 }
|
|
|
|
|
2014-02-14 12:36:21 +00:00
|
|
|
|
2013-03-05 14:19:54 +00:00
|
|
|
run_genode_until forever
|
2017-05-07 20:36:11 +00:00
|
|
|
|
2012-06-25 14:31:04 +00:00
|
|
|
# vi: set ft=tcl :
|