uboot/arch/arm/mach-socfpga/include/mach/misc.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/*
   3 * Copyright (C) 2016-2021 Intel Corporation
   4 */
   5
   6#ifndef _SOCFPGA_MISC_H_
   7#define _SOCFPGA_MISC_H_
   8
   9#include <asm/sections.h>
  10
  11void dwmac_deassert_reset(const unsigned int of_reset_id, const u32 phymode);
  12
  13struct bsel {
  14        const char      *mode;
  15        const char      *name;
  16};
  17
  18extern struct bsel bsel_str[];
  19
  20#ifdef CONFIG_FPGA
  21void socfpga_fpga_add(void *fpga_desc);
  22#else
  23static inline void socfpga_fpga_add(void *fpga_desc) {}
  24#endif
  25
  26#ifdef CONFIG_TARGET_SOCFPGA_GEN5
  27void socfpga_sdram_remap_zero(void);
  28static inline bool socfpga_is_booting_from_fpga(void)
  29{
  30        if ((__image_copy_start >= (char *)SOCFPGA_FPGA_SLAVES_ADDRESS) &&
  31            (__image_copy_start < (char *)SOCFPGA_STM_ADDRESS))
  32                return true;
  33        return false;
  34}
  35#endif
  36
  37#ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
  38void socfpga_init_security_policies(void);
  39void socfpga_sdram_remap_zero(void);
  40#endif
  41
  42#if defined(CONFIG_TARGET_SOCFPGA_STRATIX10) || \
  43        defined(CONFIG_TARGET_SOCFPGA_AGILEX)
  44int is_fpga_config_ready(void);
  45#endif
  46
  47void do_bridge_reset(int enable, unsigned int mask);
  48void force_periph_program(unsigned int status);
  49bool is_regular_boot_valid(void);
  50bool is_periph_program_force(void);
  51void set_regular_boot(unsigned int status);
  52void socfpga_pl310_clear(void);
  53void socfpga_get_managers_addr(void);
  54int qspi_flash_software_reset(void);
  55
  56#endif /* _SOCFPGA_MISC_H_ */
  57