| 9aec039e | 22-Feb-2022 |
Clément Léger <clement.leger@bootlin.com> |
drivers: pinctrl: add pinctrl support
Add support for pinctrl support using device-tree. The device-tree "pinctrl-<x>" and "pinctrl-names" properties are supported and allows to apply a pinctrl conf
drivers: pinctrl: add pinctrl support
Add support for pinctrl support using device-tree. The device-tree "pinctrl-<x>" and "pinctrl-names" properties are supported and allows to apply a pinctrl configuration based on this. This support also includes a way to register pin muxing controllers that can apply these states. A few properties of the pinctrl nodes are supported such as "bias-disable", "bias-pull-up" and "bias-pull-down".
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| b5aff6de | 02-Mar-2023 |
Clément Léger <clement.leger@bootlin.com> |
core: dt_driver: add support for DT_DRIVER_PINCTRL
In order to handle pinctrl the same way that other driver are handled by DT driver support, modify node parsing to refer to the parent node in case
core: dt_driver: add support for DT_DRIVER_PINCTRL
In order to handle pinctrl the same way that other driver are handled by DT driver support, modify node parsing to refer to the parent node in case we are handling a pinctrl request.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| 750c544c | 17-May-2023 |
Yuegui He <yuegui.he@amlogic.com> |
libutils: Disable stack protector for __aeabi_uidivmod/__aeabi_idivmod
Some toolchain build optee_os with "-fstack-protector-strong", But the generated codes add "check stack" operations after the "
libutils: Disable stack protector for __aeabi_uidivmod/__aeabi_idivmod
Some toolchain build optee_os with "-fstack-protector-strong", But the generated codes add "check stack" operations after the "ret_idivmod_values", which overwrite the r1 value.
So __aeabi_uidivmod/__aeabi_idivmod will got error value,
Link: https://github.com/OP-TEE/optee_os/issues/6007 Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Signed-off-by: Yuegui He <yuegui.he@amlogic.com>
show more ...
|
| 98bba084 | 12-May-2023 |
Jens Wiklander <jens.wiklander@linaro.org> |
Add warning options relating to packed structs
Adds the two warning options -Wpacked-not-aligned and -Waddress-of-packed-member to the default compiler flags.
Signed-off-by: Jens Wiklander <jens.wi
Add warning options relating to packed structs
Adds the two warning options -Wpacked-not-aligned and -Waddress-of-packed-member to the default compiler flags.
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org> Acked-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 2c8bb257 | 10-May-2023 |
Thomas Perrot <thomas.perrot@bootlin.com> |
mk: config.mk: fix some typos
Fix some spelling mistakes in mk/config.mk.
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org> |
| d679f4dd | 10-May-2023 |
Thomas Perrot <thomas.perrot@bootlin.com> |
core: dt_driver: fix a typo
Replace "controlle" with "controller".
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org> |
| a8c290bd | 23-Feb-2023 |
Clément Léger <clement.leger@bootlin.com> |
plat-sam: enable CFG_DRIVERS_GPIO for sama5d27_wlsom1_ek flavor
The PMIC present on this board will needs to access a GPIOs to enter low power mode.
Signed-off-by: Clément Léger <clement.leger@boot
plat-sam: enable CFG_DRIVERS_GPIO for sama5d27_wlsom1_ek flavor
The PMIC present on this board will needs to access a GPIOs to enter low power mode.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 6e2fe64a | 21-Feb-2023 |
Clément Léger <clement.leger@bootlin.com> |
dt_driver_test: add tests for gpio controller framework
Add various tests for the GPIO dt controller framework much like what was done for the rstclr system.
Signed-off-by: Clément Léger <clement.l
dt_driver_test: add tests for gpio controller framework
Add various tests for the GPIO dt controller framework much like what was done for the rstclr system.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| b786cc03 | 05-Jan-2023 |
Clément Léger <clement.leger@bootlin.com> |
drivers: atmel_piobu: add support for dt parsing
Register the atmel_piobu driver within the GPIO dt framework.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot
drivers: atmel_piobu: add support for dt parsing
Register the atmel_piobu driver within the GPIO dt framework.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 4fc179b6 | 11-May-2023 |
Thomas Perrot <thomas.perrot@bootlin.com> |
drivers: gpio: add device-tree based gpio controller framework
Build a small gpio framework based on the device-tree infrastructure and on top of the existing gpio.h content. This framework allows t
drivers: gpio: add device-tree based gpio controller framework
Build a small gpio framework based on the device-tree infrastructure and on top of the existing gpio.h content. This framework allows to register gpio controllers and to retrieve gpio struct based on a "<name>-gpios" properties.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| a080490c | 05-Jan-2023 |
Clément Léger <clement.leger@bootlin.com> |
drivers: versal_gpio: rename gpio ops to avoid name clash
These functions names are going to be added by GPIO dt support commit. Rename these by adding "versal_" prefix to avoid name clash.
Signed-
drivers: versal_gpio: rename gpio ops to avoid name clash
These functions names are going to be added by GPIO dt support commit. Rename these by adding "versal_" prefix to avoid name clash.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 4bb7a11e | 05-Jan-2023 |
Clément Léger <clement.leger@bootlin.com> |
drivers: ls_gpio: rename gpio ops to avoid name clash
These functions names are going to be added by GPIO dt support commit. Rename these by adding "ls_" prefix to avoid name clash.
Signed-off-by:
drivers: ls_gpio: rename gpio ops to avoid name clash
These functions names are going to be added by GPIO dt support commit. Rename these by adding "ls_" prefix to avoid name clash.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 8bc270b1 | 05-Jan-2023 |
Clément Léger <clement.leger@bootlin.com> |
drivers: atmel_piobu: rename ops to avoid name clash
These functions names are going to be added by GPIO dt support commit. Rename these by adding "secumod_" prefix to avoid name clash.
Signed-off-
drivers: atmel_piobu: rename ops to avoid name clash
These functions names are going to be added by GPIO dt support commit. Rename these by adding "secumod_" prefix to avoid name clash.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 6dcd18c8 | 05-Jan-2023 |
Clément Léger <clement.leger@bootlin.com> |
drivers: move gpio.h include to drivers/
GPIOs are typically handled by drivers and this will be modified to add device-tree support.
Also rename "ena_dis" with "enable_disable" because more explic
drivers: move gpio.h include to drivers/
GPIOs are typically handled by drivers and this will be modified to add device-tree support.
Also rename "ena_dis" with "enable_disable" because more explicit.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 092db7fb | 17-May-2023 |
Jerome Forissier <jerome.forissier@linaro.org> |
build: add -Werror to cc-option check
Clang emits a warning, not an error, and returns a success status when passed a -Wxxx option that it does not recognize. This makes the cc-option macro behave i
build: add -Werror to cc-option check
Clang emits a warning, not an error, and returns a success status when passed a -Wxxx option that it does not recognize. This makes the cc-option macro behave incorrectly with Clang when testing such options.
$ aarch64-linux-gnu-gcc -Wdoes-not-exist -c -x c /dev/null aarch64-linux-gnu-gcc: error: unrecognized command-line option ‘-Wdoes-not-exist’ $ echo $? 1
$ clang --target=aarch64-linux-gnu -Wdoes-not-exist -c -x c /dev/null warning: unknown warning option '-Wdoes-not-exist'; did you mean '-Wmicrosoft-exists'? [-Wunknown-warning-option] 1 warning generated. $ echo $? 0
Fix that by adding -Werror to the test command.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 2277c3f7 | 01-Mar-2023 |
Clément Léger <clement.leger@bootlin.com> |
plat-sam: registers clocks for SCMI usage
Use scmi_clk_add() to register all clocks that are available on the sama5d2 SoC.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Etienne
plat-sam: registers clocks for SCMI usage
Use scmi_clk_add() to register all clocks that are available on the sama5d2 SoC.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| f9e37006 | 18-Jun-2021 |
Clément Léger <clement.leger@bootlin.com> |
plat-sam: enable use of SCMI generic clock support
All clocks for the plat-sam are described using the clk framework. Enable this option to allow using them with SCMI transparently.
Signed-off-by:
plat-sam: enable use of SCMI generic clock support
All clocks for the plat-sam are described using the clk framework. Enable this option to allow using them with SCMI transparently.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Jerome Forissier <jerome.forissier@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| 1e91da09 | 08-Jun-2021 |
Clément Léger <clement.leger@bootlin.com> |
dt-bindings: at91: add SCMI identifiers for clocks
Add defines for clocks that are available via SCMI for this platform.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Jerome Fo
dt-bindings: at91: add SCMI identifiers for clocks
Add defines for clocks that are available via SCMI for this platform.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| 7b4f9fb1 | 01-Mar-2023 |
Clément Léger <clement.leger@bootlin.com> |
clk: sam: sckc: add at91_sckc_clk_get() to retrieve slow clock
In order to retrieve and expose clocks through SCMI, add this function to retrieve the SCKC clock.
Signed-off-by: Clément Léger <cleme
clk: sam: sckc: add at91_sckc_clk_get() to retrieve slow clock
In order to retrieve and expose clocks through SCMI, add this function to retrieve the SCKC clock.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| 5943d3b9 | 01-Mar-2023 |
Clément Léger <clement.leger@bootlin.com> |
drivers: clk: sam: add at91_pmc_clk_get() function
In order to retrieve and expose clocks through SCMI, add this function to retrieve the clocks from the PMC.
Signed-off-by: Clément Léger <clement.
drivers: clk: sam: add at91_pmc_clk_get() function
In order to retrieve and expose clocks through SCMI, add this function to retrieve the clocks from the PMC.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| 65873b54 | 14-Jun-2021 |
Clément Léger <clement.leger@bootlin.com> |
plat-sam: add support for CFG_SCMI_MSG_SMT_FASTCALL_ENTRY
Add necessary calls to scmi_smt_fastcall_smc_entry from sm_platform handler to be able to do SCMI calls via SMC.
Signed-off-by: Clément Lég
plat-sam: add support for CFG_SCMI_MSG_SMT_FASTCALL_ENTRY
Add necessary calls to scmi_smt_fastcall_smc_entry from sm_platform handler to be able to do SCMI calls via SMC.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| e80130f6 | 18-Jun-2021 |
Clément Léger <clement.leger@bootlin.com> |
drivers: scmi-msg: add support for clock using generic clock framework
Integrating the clock framework with SCMI allows to avoid boilerplate code to do so in platform specific files. This patch adds
drivers: scmi-msg: add support for clock using generic clock framework
Integrating the clock framework with SCMI allows to avoid boilerplate code to do so in platform specific files. This patch adds a generic layer that uses the generic clock framework to access and expose clocks. SCMI clocks can be added from platform code using scmi_clk_add(). A new CFG_SCMI_MSG_USE_CLK configuration option is added to enable this generic clock support.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
show more ...
|
| 3ae16402 | 06-Jun-2021 |
Clément Léger <clement.leger@bootlin.com> |
plat-sam: add SCMI server foundation
Add foundations for SCMI server support. This will be used to expose clocks and regulators to non-secure world.
Signed-off-by: Clément Léger <clement.leger@boot
plat-sam: add SCMI server foundation
Add foundations for SCMI server support. This will be used to expose clocks and regulators to non-secure world.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Acked-by: Etienne Carriere <etienne.carriere@linaro.org> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
show more ...
|
| 513a3100 | 16-Mar-2023 |
Clément Léger <clement.leger@bootlin.com> |
plat-sam: nsec-service: Fix include order
Reorder includes in alphabetical order.
Signed-off-by: Clément Léger <clement.leger@bootlin.com> Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org> |
| fa17182b | 12-May-2023 |
Jens Wiklander <jens.wiklander@linaro.org> |
clang-format: add configuration file
Adds a configuration file to be used with clang-format. This file was copied from the Linux kernel, but with the ForEachMacros updated for OP-TEE.
Clang-format
clang-format: add configuration file
Adds a configuration file to be used with clang-format. This file was copied from the Linux kernel, but with the ForEachMacros updated for OP-TEE.
Clang-format can help with formatting the code, but we are not expecting follow it to the letter.
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org> Acked-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Clement Faure <clement.faure@nxp.com>
show more ...
|