rust: add PL011 device model

This commit adds a re-implementation of hw/char/pl011.c in Rust.

How to build:

1. Configure a QEMU build with:
   --enable-system --target-list=aarch64-softmmu --enable-rust
2. Launching a VM with qemu-system-aarch64 should use the Rust version
   of the pl011 device

Co-authored-by: Junjie Mao <junjie.mao@intel.com>
Co-authored-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Junjie Mao <junjie.mao@intel.com>
Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Link: https://lore.kernel.org/r/20241024-rust-round-2-v1-2-051e7a25b978@linaro.org
This commit is contained in:
Manos Pitsidianakis 2024-10-24 17:03:00 +03:00 committed by Paolo Bonzini
parent ca5aa28e24
commit 37fdb2f56a
37 changed files with 1906 additions and 12 deletions

View file

@ -6,6 +6,13 @@
/keycodemapdb
/libvfio-user
/slirp
/arbitrary-int-1.2.7
/bilge-0.2.0
/bilge-impl-0.2.0
/either-1.12.0
/itertools-0.11.0
/proc-macro-error-1.0.4
/proc-macro-error-attr-1.0.4
/proc-macro2-1.0.84
/quote-1.0.36
/syn-2.0.66

View file

@ -0,0 +1,7 @@
[wrap-file]
directory = arbitrary-int-1.2.7
source_url = https://crates.io/api/v1/crates/arbitrary-int/1.2.7/download
source_filename = arbitrary-int-1.2.7.tar.gz
source_hash = c84fc003e338a6f69fbd4f7fe9f92b535ff13e9af8997f3b14b6ddff8b1df46d
#method = cargo
patch_directory = arbitrary-int-1-rs

View file

@ -0,0 +1,7 @@
[wrap-file]
directory = bilge-0.2.0
source_url = https://crates.io/api/v1/crates/bilge/0.2.0/download
source_filename = bilge-0.2.0.tar.gz
source_hash = dc707ed8ebf81de5cd6c7f48f54b4c8621760926cdf35a57000747c512e67b57
#method = cargo
patch_directory = bilge-0.2-rs

View file

@ -0,0 +1,7 @@
[wrap-file]
directory = bilge-impl-0.2.0
source_url = https://crates.io/api/v1/crates/bilge-impl/0.2.0/download
source_filename = bilge-impl-0.2.0.tar.gz
source_hash = feb11e002038ad243af39c2068c8a72bcf147acf05025dcdb916fcc000adb2d8
#method = cargo
patch_directory = bilge-impl-0.2-rs

View file

@ -0,0 +1,7 @@
[wrap-file]
directory = either-1.12.0
source_url = https://crates.io/api/v1/crates/either/1.12.0/download
source_filename = either-1.12.0.tar.gz
source_hash = 3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b
#method = cargo
patch_directory = either-1-rs

View file

@ -0,0 +1,7 @@
[wrap-file]
directory = itertools-0.11.0
source_url = https://crates.io/api/v1/crates/itertools/0.11.0/download
source_filename = itertools-0.11.0.tar.gz
source_hash = b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57
#method = cargo
patch_directory = itertools-0.11-rs

View file

@ -0,0 +1,19 @@
project('arbitrary-int-1-rs', 'rust',
version: '1.2.7',
license: 'MIT',
default_options: [])
_arbitrary_int_rs = static_library(
'arbitrary_int',
files('src/lib.rs'),
gnu_symbol_visibility: 'hidden',
override_options: ['rust_std=2021', 'build.rust_std=2021'],
rust_abi: 'rust',
dependencies: [],
)
arbitrary_int_dep = declare_dependency(
link_with: _arbitrary_int_rs,
)
meson.override_dependency('arbitrary-int-1-rs', arbitrary_int_dep)

View file

@ -0,0 +1,29 @@
project(
'bilge-0.2-rs',
'rust',
version : '0.2.0',
license : 'MIT or Apache-2.0',
)
subproject('arbitrary-int-1-rs', required: true)
subproject('bilge-impl-0.2-rs', required: true)
arbitrary_int_dep = dependency('arbitrary-int-1-rs')
bilge_impl_dep = dependency('bilge-impl-0.2-rs')
lib = static_library(
'bilge',
'src/lib.rs',
override_options : ['rust_std=2021', 'build.rust_std=2021'],
rust_abi : 'rust',
dependencies: [
arbitrary_int_dep,
bilge_impl_dep,
],
)
bilge_dep = declare_dependency(
link_with : [lib],
)
meson.override_dependency('bilge-0.2-rs', bilge_dep)

View file

@ -0,0 +1,45 @@
project('bilge-impl-0.2-rs', 'rust',
version: '0.2.0',
license: 'MIT OR Apache-2.0',
default_options: [])
subproject('itertools-0.11-rs', required: true)
subproject('proc-macro-error-attr-1-rs', required: true)
subproject('proc-macro-error-1-rs', required: true)
subproject('quote-1-rs', required: true)
subproject('syn-2-rs', required: true)
subproject('proc-macro2-1-rs', required: true)
itertools_dep = dependency('itertools-0.11-rs', native: true)
proc_macro_error_attr_dep = dependency('proc-macro-error-attr-1-rs', native: true)
proc_macro_error_dep = dependency('proc-macro-error-1-rs', native: true)
quote_dep = dependency('quote-1-rs', native: true)
syn_dep = dependency('syn-2-rs', native: true)
proc_macro2_dep = dependency('proc-macro2-1-rs', native: true)
rust = import('rust')
_bilge_impl_rs = rust.proc_macro(
'bilge_impl',
files('src/lib.rs'),
override_options: ['rust_std=2021', 'build.rust_std=2021'],
rust_args: [
'--cfg', 'use_fallback',
'--cfg', 'feature="syn-error"',
'--cfg', 'feature="proc-macro"',
],
dependencies: [
itertools_dep,
proc_macro_error_attr_dep,
proc_macro_error_dep,
quote_dep,
syn_dep,
proc_macro2_dep,
],
)
bilge_impl_dep = declare_dependency(
link_with: _bilge_impl_rs,
)
meson.override_dependency('bilge-impl-0.2-rs', bilge_impl_dep)

View file

@ -0,0 +1,24 @@
project('either-1-rs', 'rust',
version: '1.12.0',
license: 'MIT OR Apache-2.0',
default_options: [])
_either_rs = static_library(
'either',
files('src/lib.rs'),
gnu_symbol_visibility: 'hidden',
override_options: ['rust_std=2018', 'build.rust_std=2018'],
rust_abi: 'rust',
rust_args: [
'--cfg', 'feature="use_std"',
'--cfg', 'feature="use_alloc"',
],
dependencies: [],
native: true,
)
either_dep = declare_dependency(
link_with: _either_rs,
)
meson.override_dependency('either-1-rs', either_dep, native: true)

View file

@ -0,0 +1,30 @@
project('itertools-0.11-rs', 'rust',
version: '0.11.0',
license: 'MIT OR Apache-2.0',
default_options: [])
subproject('either-1-rs', required: true)
either_dep = dependency('either-1-rs', native: true)
_itertools_rs = static_library(
'itertools',
files('src/lib.rs'),
gnu_symbol_visibility: 'hidden',
override_options: ['rust_std=2018', 'build.rust_std=2018'],
rust_abi: 'rust',
rust_args: [
'--cfg', 'feature="use_std"',
'--cfg', 'feature="use_alloc"',
],
dependencies: [
either_dep,
],
native: true,
)
itertools_dep = declare_dependency(
link_with: _itertools_rs,
)
meson.override_dependency('itertools-0.11-rs', itertools_dep, native: true)

View file

@ -0,0 +1,40 @@
project('proc-macro-error-1-rs', 'rust',
version: '1.0.4',
license: 'MIT OR Apache-2.0',
default_options: [])
subproject('proc-macro-error-attr-1-rs', required: true)
subproject('quote-1-rs', required: true)
subproject('syn-2-rs', required: true)
subproject('proc-macro2-1-rs', required: true)
proc_macro_error_attr_dep = dependency('proc-macro-error-attr-1-rs', native: true)
proc_macro2_dep = dependency('proc-macro2-1-rs', native: true)
quote_dep = dependency('quote-1-rs', native: true)
syn_dep = dependency('syn-2-rs', native: true)
_proc_macro_error_rs = static_library(
'proc_macro_error',
files('src/lib.rs'),
override_options: ['rust_std=2018', 'build.rust_std=2018'],
rust_abi: 'rust',
rust_args: [
'--cfg', 'use_fallback',
'--cfg', 'feature="syn-error"',
'--cfg', 'feature="proc-macro"',
'-A', 'non_fmt_panics'
],
dependencies: [
proc_macro_error_attr_dep,
proc_macro2_dep,
quote_dep,
syn_dep,
],
native: true,
)
proc_macro_error_dep = declare_dependency(
link_with: _proc_macro_error_rs,
)
meson.override_dependency('proc-macro-error-1-rs', proc_macro_error_dep, native: true)

View file

@ -0,0 +1,32 @@
project('proc-macro-error-attr-1-rs', 'rust',
version: '1.12.0',
license: 'MIT OR Apache-2.0',
default_options: [])
subproject('proc-macro2-1-rs', required: true)
subproject('quote-1-rs', required: true)
proc_macro2_dep = dependency('proc-macro2-1-rs', native: true)
quote_dep = dependency('quote-1-rs', native: true)
rust = import('rust')
_proc_macro_error_attr_rs = rust.proc_macro(
'proc_macro_error_attr',
files('src/lib.rs'),
override_options: ['rust_std=2018', 'build.rust_std=2018'],
rust_args: [
'--cfg', 'use_fallback',
'--cfg', 'feature="syn-error"',
'--cfg', 'feature="proc-macro"'
],
dependencies: [
proc_macro2_dep,
quote_dep,
],
)
proc_macro_error_attr_dep = declare_dependency(
link_with: _proc_macro_error_attr_rs,
)
meson.override_dependency('proc-macro-error-attr-1-rs', proc_macro_error_attr_dep, native: true)

View file

@ -0,0 +1,20 @@
project('unicode-ident-1-rs', 'rust',
version: '1.0.12',
license: '(MIT OR Apache-2.0) AND Unicode-DFS-2016',
default_options: [])
_unicode_ident_rs = static_library(
'unicode_ident',
files('src/lib.rs'),
gnu_symbol_visibility: 'hidden',
override_options: ['rust_std=2021', 'build.rust_std=2021'],
rust_abi: 'rust',
dependencies: [],
native: true,
)
unicode_ident_dep = declare_dependency(
link_with: _unicode_ident_rs,
)
meson.override_dependency('unicode-ident-1-rs', unicode_ident_dep, native: true)

View file

@ -0,0 +1,7 @@
[wrap-file]
directory = proc-macro-error-1.0.4
source_url = https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download
source_filename = proc-macro-error-1.0.4.tar.gz
source_hash = da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c
#method = cargo
patch_directory = proc-macro-error-1-rs

View file

@ -0,0 +1,7 @@
[wrap-file]
directory = proc-macro-error-attr-1.0.4
source_url = https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download
source_filename = proc-macro-error-attr-1.0.4.tar.gz
source_hash = a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869
#method = cargo
patch_directory = proc-macro-error-attr-1-rs