cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

pic32mzda.h (565B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * Joshua Henderson <joshua.henderson@microchip.com>
      4 * Copyright (C) 2015 Microchip Technology Inc.  All rights reserved.
      5 */
      6#ifndef PIC32MZDA_COMMON_H
      7#define PIC32MZDA_COMMON_H
      8
      9/* early clock */
     10u32 pic32_get_pbclk(int bus);
     11u32 pic32_get_sysclk(void);
     12
     13/* Device configuration */
     14void __init pic32_config_init(void);
     15int pic32_set_lcd_mode(int mode);
     16int pic32_set_sdhci_adma_fifo_threshold(u32 rthrs, u32 wthrs);
     17u32 pic32_get_boot_status(void);
     18int pic32_disable_lcd(void);
     19int pic32_enable_lcd(void);
     20
     21#endif