diff options
author | Ravi Kumar Bokka <rbokka@codeaurora.org> | 2021-01-04 14:28:14 +0530 |
---|---|---|
committer | Shelley Chen <shchen@google.com> | 2021-10-07 09:03:05 +0000 |
commit | 5afeba30a3637792d8619d52572f95b3e80e76fb (patch) | |
tree | 2da9e7979d6a44573d86c099bda3e2789a33dd69 /src/soc/qualcomm/sc7280/include | |
parent | 4dc9e5b3c71ba85e3aa19a98c58a86194a3fd8f5 (diff) |
sc7280: Add SHRM firmware support
SHRM is a system hardware resource manager. It is used to manage run time
DDRSS activities. DDRSS stands for DDR subsystem.
BUG=b:182963902
TEST=Validated on qualcomm sc7280 development board
by trying DDR clocks which through SHRM RSI command.
Change-Id: I44484573a829eaefbd34907c6fe78d427506a762
Signed-off-by: Ravi Kumar Bokka <rbokka@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49392
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/soc/qualcomm/sc7280/include')
-rw-r--r-- | src/soc/qualcomm/sc7280/include/soc/shrm.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7280/include/soc/shrm.h b/src/soc/qualcomm/sc7280/include/soc/shrm.h new file mode 100644 index 0000000000..59661a8831 --- /dev/null +++ b/src/soc/qualcomm/sc7280/include/soc/shrm.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef _SOC_QUALCOMM_SC7280_SHRM_H__ +#define _SOC_QUALCOMM_SC7280_SHRM_H__ + +void shrm_fw_load_reset(void); + +#endif // _SOC_QUALCOMM_SC7280_SHRM_H__ |