-
Notifications
You must be signed in to change notification settings - Fork 11
[DRAFT][opentitan, usbdev] Create a dummy usbdev block #164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: ot-earlgrey-9.2.0
Are you sure you want to change the base?
Conversation
Signed-off-by: Douglas Reis <[email protected]>
@@ -55,6 +55,7 @@ system_ss.add(when: 'CONFIG_OT_SPI_HOST', if_true: files('ot_spi_host.c')) | |||
system_ss.add(when: 'CONFIG_OT_SRAM_CTRL', if_true: files('ot_sram_ctrl.c')) | |||
system_ss.add(when: 'CONFIG_OT_TIMER', if_true: files('ot_timer.c')) | |||
system_ss.add(when: 'CONFIG_OT_UART', if_true: files('ot_uart.c')) | |||
system_ss.add(when: 'CONFIG_OT_UART', if_true: files('ot_usbdev.c')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copy/paste
@@ -98,6 +98,7 @@ config OT_EARLGREY | |||
select OT_SRAM_CTRL | |||
select OT_TIMER | |||
select OT_UART | |||
select OT_USBDEV |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe OT_USB_DEVICE
for consistency with OT_SPI_DEVICE
(as well in filenames and symbols)?
@@ -0,0 +1,650 @@ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing header
CharBackend chr; | ||
}; | ||
|
||
static void usbdev_update_irqs(OtUSBDEVState *s) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing ot_
prefix
No description provided.