mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
16 lines
623 B
C
16 lines
623 B
C
#ifndef LINUX_BCMA_DRIVER_ARM_C9_H_
|
|
#define LINUX_BCMA_DRIVER_ARM_C9_H_
|
|
|
|
/* DMU (Device Management Unit) */
|
|
#define BCMA_DMU_CRU_USB2_CONTROL 0x0164
|
|
#define BCMA_DMU_CRU_USB2_CONTROL_USB_PLL_NDIV_MASK 0x00000FFC
|
|
#define BCMA_DMU_CRU_USB2_CONTROL_USB_PLL_NDIV_SHIFT 2
|
|
#define BCMA_DMU_CRU_USB2_CONTROL_USB_PLL_PDIV_MASK 0x00007000
|
|
#define BCMA_DMU_CRU_USB2_CONTROL_USB_PLL_PDIV_SHIFT 12
|
|
#define BCMA_DMU_CRU_CLKSET_KEY 0x0180
|
|
#define BCMA_DMU_CRU_STRAPS_CTRL 0x02A0
|
|
#define BCMA_DMU_CRU_STRAPS_CTRL_USB3 0x00000010
|
|
#define BCMA_DMU_CRU_STRAPS_CTRL_4BYTE 0x00008000
|
|
|
|
#endif /* LINUX_BCMA_DRIVER_ARM_C9_H_ */
|