lib: sbi_ecall: Add Kconfig option for each extension
authorVivian Wang <dramforever@live.com>
Mon, 10 Oct 2022 16:34:45 +0000 (00:34 +0800)
committerAnup Patel <anup@brainfault.org>
Sun, 23 Oct 2022 05:31:33 +0000 (11:01 +0530)
commit22f38ee6c658a660083aa45c4ec6c72f66a17260
tree9509b624ba69f7e999fd71480ac477edb291122c
parent56bed1a0fe39cc788452202827ab5fdc3c58bc20
lib: sbi_ecall: Add Kconfig option for each extension

For each SBI extension, we:

- Add a Kconfig option for it
- Add the extension to sbi_ecall_exts only if the extension is enabled
- Add the corresponding sbi_ecall_* object file only if the extension is
  enabled

Special cases are as follows:

- The legacy extensions are lumped together as one 'big' extension, as
  has always been the case in OpenSBI code.
- The platform-defined vendor extensions are regarded as one extension.
- The Base extension cannot be disabled.
- sbi_ecall_replace implements multiple extensions, so it's not easy to
  avoid linking it in. Enable it always, and use #ifdef to
  disable/enable individual extensions.

Signed-off-by: Vivian Wang <dramforever@live.com>
Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Kconfig
lib/sbi/Kconfig [new file with mode: 0644]
lib/sbi/objects.mk
lib/sbi/sbi_ecall_replace.c