2023-03-03 10:37:38 +00:00
|
|
|
if {![have_board pc]} {
|
|
|
|
puts "\nRun script is not supported on this platform.\n";
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if {[get_cmd_switch --autopilot] && ![have_include "power_on/qemu"]} {
|
|
|
|
puts "\nAutopilot run is not supported on this platform\n"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-02-08 18:02:55 +00:00
|
|
|
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] \
|
2022-05-18 14:15:51 +00:00
|
|
|
[depot_user]/src/report_rom \
|
2024-05-30 13:46:57 +00:00
|
|
|
[depot_user]/src/usb_block \
|
2022-05-18 14:15:51 +00:00
|
|
|
[depot_user]/src/init
|
2016-02-08 18:02:55 +00:00
|
|
|
|
2022-05-18 14:15:51 +00:00
|
|
|
build { app/block_tester }
|
2016-02-08 18:02:55 +00:00
|
|
|
|
2023-05-04 14:18:04 +00:00
|
|
|
install_config {
|
2016-02-08 18:02:55 +00:00
|
|
|
<config verbose="yes">
|
|
|
|
<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>
|
2017-11-05 15:36:14 +00:00
|
|
|
</default-route>
|
|
|
|
|
2022-05-18 14:15:51 +00:00
|
|
|
<default caps="100"/>
|
2016-02-08 18:02:55 +00:00
|
|
|
|
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides> <service name="Timer"/> </provides>
|
|
|
|
</start>
|
2022-05-18 14:15:51 +00:00
|
|
|
|
2016-02-08 18:02:55 +00:00
|
|
|
<start name="report_rom">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides> <service name="Report"/> <service name="ROM"/> </provides>
|
|
|
|
<config verbose="yes">
|
2024-05-30 13:46:57 +00:00
|
|
|
<default-policy report="usb -> usb -> devices"/>
|
2016-02-08 18:02:55 +00:00
|
|
|
</config>
|
|
|
|
</start>
|
2022-05-18 14:15:51 +00:00
|
|
|
|
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"/>
|
2016-02-08 18:02:55 +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>
|
2016-02-08 18:02:55 +00:00
|
|
|
<service name="Report"> <child name="report_rom"/> </service>
|
2022-05-18 14:15:51 +00:00
|
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
|
|
<any-service> <parent/> </any-service>
|
2016-02-08 18:02:55 +00:00
|
|
|
</route>
|
|
|
|
</start>
|
2022-05-18 14:15:51 +00:00
|
|
|
|
2024-05-30 13:46:57 +00:00
|
|
|
<start name="usb_block">
|
2016-02-08 18:02:55 +00:00
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides> <service name="Block"/> </provides>
|
2022-02-04 13:12:34 +00:00
|
|
|
<config report="yes" writeable="no"/>
|
2016-02-08 18:02:55 +00:00
|
|
|
<route>
|
2024-05-30 13:46:57 +00:00
|
|
|
<service name="Usb"> <child name="usb"/> </service>
|
2016-02-08 18:02:55 +00:00
|
|
|
<service name="Report"> <child name="report_rom"/> </service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>
|
2022-05-18 14:15:51 +00:00
|
|
|
|
2022-02-04 13:12:34 +00:00
|
|
|
<start name="block_tester">
|
|
|
|
<resource name="RAM" quantum="64M" />
|
|
|
|
<config verbose="no" report="no" log="yes" stop_on_error="no">
|
|
|
|
<tests>
|
|
|
|
<sequential length="8M" size="1M" io_buffer="8M" batch="4"/>
|
|
|
|
|
2024-05-30 13:46:57 +00:00
|
|
|
<!-- enable 'writeable="yes"' at usb_block for write test -->
|
2022-02-04 13:12:34 +00:00
|
|
|
<!-- <sequential write="yes" start="4000" length="2M" size="1M" io_buffer="8M" batch="4"/> -->
|
|
|
|
</tests>
|
2016-02-08 18:02:55 +00:00
|
|
|
</config>
|
|
|
|
<route>
|
2024-05-30 13:46:57 +00:00
|
|
|
<service name="Block"> <child name="usb_block"/> </service>
|
2016-02-08 18:02:55 +00:00
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
|
|
|
</start>
|
|
|
|
</config>}
|
|
|
|
|
|
|
|
#
|
2022-05-18 14:15:51 +00:00
|
|
|
# Define USB host controller config
|
2016-02-08 18:02:55 +00:00
|
|
|
#
|
2024-05-30 13:46:57 +00:00
|
|
|
set fd [open [run_dir]/genode/usb_host.config w]
|
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
|
|
|
puts $fd { <config>
|
2024-05-30 13:46:57 +00:00
|
|
|
<policy label="usb_block -> ">
|
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 name="usb-1-2"/>
|
|
|
|
</policy>
|
|
|
|
</config> }
|
2022-05-18 14:15:51 +00:00
|
|
|
close $fd
|
2023-05-04 14:18:04 +00:00
|
|
|
|
2023-03-03 10:37:38 +00:00
|
|
|
build_boot_image [build_artifacts]
|
2016-02-08 18:02:55 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Execute test case
|
|
|
|
#
|
|
|
|
set disk_image "bin/test.img"
|
|
|
|
set cmd "dd if=/dev/zero of=$disk_image bs=1M count=16"
|
2023-03-03 10:37:38 +00:00
|
|
|
if {[have_include "power_on/qemu"]} {
|
2016-02-08 18:02:55 +00:00
|
|
|
puts "creating disk image:\n$cmd"
|
|
|
|
catch { exec sh -c $cmd }
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Qemu opts for EHCI
|
|
|
|
#
|
2022-05-18 14:15:51 +00:00
|
|
|
append qemu_args " -nographic -M pc -boot order=d "
|
2016-03-24 10:48:04 +00:00
|
|
|
append qemu_args " -drive if=none,id=disk,file=$disk_image,format=raw "
|
2016-02-08 18:02:55 +00:00
|
|
|
append qemu_args " -device usb-ehci,id=ehci -device usb-storage,bus=ehci.0,drive=disk "
|
|
|
|
|
2022-02-04 13:12:34 +00:00
|
|
|
run_genode_until {.*child "block_tester" exited with exit value 0.*} 100
|