coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
dfd_common.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SOC_MEDIATEK_DFD_COMMON_H
4 #define SOC_MEDIATEK_DFD_COMMON_H
5 
6 #define CPC_FLOW_CTRL_CFG 0x0C53A814
7 #define RESET_ON_KEEP_EN BIT(17)
8 
9 static u32 *const dfd_cfg = (void *)CPC_FLOW_CTRL_CFG;
10 
11 void dfd_init(void);
12 
13 #endif
#define CPC_FLOW_CTRL_CFG
Definition: dfd_common.h:6
static u32 *const dfd_cfg
Definition: dfd_common.h:9
void dfd_init(void)
Definition: dfd.c:7
uint32_t u32
Definition: stdint.h:51