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

bcm63xx_reset.h (448B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef __BCM63XX_RESET_H
      3#define __BCM63XX_RESET_H
      4
      5enum bcm63xx_core_reset {
      6	BCM63XX_RESET_SPI,
      7	BCM63XX_RESET_ENET,
      8	BCM63XX_RESET_USBH,
      9	BCM63XX_RESET_USBD,
     10	BCM63XX_RESET_SAR,
     11	BCM63XX_RESET_DSL,
     12	BCM63XX_RESET_EPHY,
     13	BCM63XX_RESET_ENETSW,
     14	BCM63XX_RESET_PCM,
     15	BCM63XX_RESET_MPI,
     16	BCM63XX_RESET_PCIE,
     17	BCM63XX_RESET_PCIE_EXT,
     18};
     19
     20void bcm63xx_core_set_reset(enum bcm63xx_core_reset, int reset);
     21
     22#endif