blob: baf256330d0fa55707cfc08afe936ac1c8442aaa [file] [log] [blame]
Caesar Wang3e3c5b02016-05-25 19:03:04 +08001/*
2 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Caesar Wang3e3c5b02016-05-25 19:03:04 +08005 */
6
Caesar Wang3e3c5b02016-05-25 19:03:04 +08007#include <assert.h>
Heiko Stuebner6fd5b942019-04-24 20:26:51 +02008#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <string.h>
10
11#include <common/bl_common.h>
12#include <common/debug.h>
13#include <drivers/console.h>
14#include <drivers/gpio.h>
Heiko Stuebnerbbd0f5a2019-03-07 08:07:11 +010015#include <libfdt.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000016#include <lib/coreboot.h>
17#include <lib/mmio.h>
18#include <plat/common/platform.h>
19
Caesar Wang3e3c5b02016-05-25 19:03:04 +080020#include <plat_params.h>
21#include <plat_private.h>
Caesar Wang3e3c5b02016-05-25 19:03:04 +080022
Caesar Wangef180072016-09-10 02:43:15 +080023static struct gpio_info param_reset;
24static struct gpio_info param_poweroff;
Caesar Wang5045a1c2016-09-10 02:47:53 +080025static struct bl31_apio_param param_apio;
Caesar Wang3e3c5b02016-05-25 19:03:04 +080026static struct gpio_info *rst_gpio;
27static struct gpio_info *poweroff_gpio;
Caesar Wangef180072016-09-10 02:43:15 +080028static struct gpio_info suspend_gpio[10];
29uint32_t suspend_gpio_cnt;
Caesar Wang5045a1c2016-09-10 02:47:53 +080030static struct apio_info *suspend_apio;
Caesar Wang3e3c5b02016-05-25 19:03:04 +080031
Heiko Stuebner6fd5b942019-04-24 20:26:51 +020032#if COREBOOT
33static int dt_process_fdt(void *blob)
34{
35 return -ENODEV;
36}
37#else
Heiko Stuebnerbbd0f5a2019-03-07 08:07:11 +010038static uint8_t fdt_buffer[0x10000];
39
40void *plat_get_fdt(void)
41{
42 return &fdt_buffer[0];
43}
44
Heiko Stuebner6fd5b942019-04-24 20:26:51 +020045static int dt_process_fdt(void *blob)
46{
47 void *fdt = plat_get_fdt();
48 int ret;
49
50 ret = fdt_open_into(blob, fdt, 0x10000);
51 if (ret < 0)
52 return ret;
53
54 return 0;
55}
56#endif
57
Caesar Wangef180072016-09-10 02:43:15 +080058struct gpio_info *plat_get_rockchip_gpio_reset(void)
Caesar Wang3e3c5b02016-05-25 19:03:04 +080059{
60 return rst_gpio;
61}
62
Caesar Wangef180072016-09-10 02:43:15 +080063struct gpio_info *plat_get_rockchip_gpio_poweroff(void)
Caesar Wang3e3c5b02016-05-25 19:03:04 +080064{
65 return poweroff_gpio;
66}
67
Caesar Wangef180072016-09-10 02:43:15 +080068struct gpio_info *plat_get_rockchip_suspend_gpio(uint32_t *count)
69{
70 *count = suspend_gpio_cnt;
71
72 return &suspend_gpio[0];
73}
74
Caesar Wang5045a1c2016-09-10 02:47:53 +080075struct apio_info *plat_get_rockchip_suspend_apio(void)
76{
77 return suspend_apio;
78}
79
Caesar Wang3e3c5b02016-05-25 19:03:04 +080080void params_early_setup(void *plat_param_from_bl2)
81{
Caesar Wang3e3c5b02016-05-25 19:03:04 +080082 struct bl31_plat_param *bl2_param;
83 struct bl31_gpio_param *gpio_param;
84
Heiko Stuebnerbbd0f5a2019-03-07 08:07:11 +010085 /*
86 * Test if this is a FDT passed as a platform-specific parameter
87 * block.
88 */
89 if (!dt_process_fdt(plat_param_from_bl2))
90 return;
91
Caesar Wang3e3c5b02016-05-25 19:03:04 +080092 /* keep plat parameters for later processing if need */
93 bl2_param = (struct bl31_plat_param *)plat_param_from_bl2;
94 while (bl2_param) {
95 switch (bl2_param->type) {
96 case PARAM_RESET:
Caesar Wangef180072016-09-10 02:43:15 +080097 gpio_param = (struct bl31_gpio_param *)bl2_param;
98 memcpy(&param_reset, &gpio_param->gpio,
99 sizeof(struct gpio_info));
100 rst_gpio = &param_reset;
Caesar Wang3e3c5b02016-05-25 19:03:04 +0800101 break;
102 case PARAM_POWEROFF:
Caesar Wangef180072016-09-10 02:43:15 +0800103 gpio_param = (struct bl31_gpio_param *)bl2_param;
104 memcpy(&param_poweroff, &gpio_param->gpio,
105 sizeof(struct gpio_info));
106 poweroff_gpio = &param_poweroff;
107 break;
108 case PARAM_SUSPEND_GPIO:
109 if (suspend_gpio_cnt >= ARRAY_SIZE(suspend_gpio)) {
110 ERROR("exceed support suspend gpio number\n");
111 break;
112 }
113 gpio_param = (struct bl31_gpio_param *)bl2_param;
114 memcpy(&suspend_gpio[suspend_gpio_cnt],
115 &gpio_param->gpio,
116 sizeof(struct gpio_info));
117 suspend_gpio_cnt++;
Caesar Wang3e3c5b02016-05-25 19:03:04 +0800118 break;
Caesar Wang5045a1c2016-09-10 02:47:53 +0800119 case PARAM_SUSPEND_APIO:
120 memcpy(&param_apio, bl2_param,
121 sizeof(struct bl31_apio_param));
122 suspend_apio = &param_apio.apio;
123 break;
Julius Wernerc7087782017-06-09 15:22:44 -0700124#if COREBOOT
125 case PARAM_COREBOOT_TABLE:
126 coreboot_table_setup((void *)
127 ((struct bl31_u64_param *)bl2_param)->value);
128 break;
129#endif
Caesar Wang3e3c5b02016-05-25 19:03:04 +0800130 default:
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900131 ERROR("not expected type found %lld\n",
Caesar Wangef180072016-09-10 02:43:15 +0800132 bl2_param->type);
133 break;
Caesar Wang3e3c5b02016-05-25 19:03:04 +0800134 }
Caesar Wang3e3c5b02016-05-25 19:03:04 +0800135 bl2_param = bl2_param->next;
136 }
137}