blob: 299c0b1cbbd47472aab10757c0331fe3c2355625 [file] [log] [blame]
Yann Gautier9aea69e2018-07-24 17:13:36 +02001/*
Yann Gautier05773eb2020-08-24 11:51:50 +02002 * Copyright (c) 2020-2021, STMicroelectronics - All Rights Reserved
3 * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
Yann Gautier9aea69e2018-07-24 17:13:36 +02004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
Yann Gautieree8f5422019-02-14 11:13:25 +01008#ifndef STM32MP_DT_H
9#define STM32MP_DT_H
Yann Gautier9aea69e2018-07-24 17:13:36 +020010
11#include <stdbool.h>
Yann Gautier05773eb2020-08-24 11:51:50 +020012#include <stdint.h>
Yann Gautier9aea69e2018-07-24 17:13:36 +020013
Yann Gautier038bff22019-01-17 19:17:47 +010014#define DT_DISABLED U(0)
15#define DT_NON_SECURE U(1)
16#define DT_SECURE U(2)
17#define DT_SHARED (DT_NON_SECURE | DT_SECURE)
18
Yann Gautier69035a82018-07-05 16:48:16 +020019struct dt_node_info {
20 uint32_t base;
21 int32_t clock;
22 int32_t reset;
Yann Gautier038bff22019-01-17 19:17:47 +010023 uint32_t status;
Yann Gautier69035a82018-07-05 16:48:16 +020024};
25
Yann Gautier9aea69e2018-07-24 17:13:36 +020026/*******************************************************************************
27 * Function and variable prototypes
28 ******************************************************************************/
Yann Gautier05773eb2020-08-24 11:51:50 +020029int dt_open_and_check(uintptr_t dt_addr);
Yann Gautier9aea69e2018-07-24 17:13:36 +020030int fdt_get_address(void **fdt_addr);
31bool fdt_check_node(int node);
Yann Gautieree8f5422019-02-14 11:13:25 +010032uint8_t fdt_get_status(int node);
Yann Gautier69035a82018-07-05 16:48:16 +020033int dt_set_stdout_pinctrl(void);
34void dt_fill_device_info(struct dt_node_info *info, int node);
35int dt_get_node(struct dt_node_info *info, int offset, const char *compat);
36int dt_get_stdout_uart_info(struct dt_node_info *info);
Yann Gautiercaf575b2018-07-24 17:18:19 +020037uint32_t dt_get_ddr_size(void);
Yann Gautier3edc7c32019-05-20 19:17:08 +020038uint32_t dt_get_pwr_vdd_voltage(void);
Yann Gautier69035a82018-07-05 16:48:16 +020039const char *dt_get_board_model(void);
Etienne Carriered81dadf2020-04-25 11:14:45 +020040int fdt_get_gpio_bank_pin_count(unsigned int bank);
Yann Gautier9aea69e2018-07-24 17:13:36 +020041
Yann Gautieree8f5422019-02-14 11:13:25 +010042#endif /* STM32MP_DT_H */