Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | #ifndef __BCM63XX_RESET_H |
| 3 | #define __BCM63XX_RESET_H |
| 4 | |
| 5 | enum 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 | |
| 20 | void bcm63xx_core_set_reset(enum bcm63xx_core_reset, int reset); |
| 21 | |
| 22 | #endif |
| 23 |
Warning: This file is not a C or C++ file. It does not have highlighting.
