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.
19 lines
672 B
C
19 lines
672 B
C
#ifndef __DT_TAS2552_H
|
|
#define __DT_TAS2552_H
|
|
|
|
#define TAS2552_PLL_CLKIN (0)
|
|
#define TAS2552_PDM_CLK (1)
|
|
#define TAS2552_CLK_TARGET_MASK (1)
|
|
|
|
#define TAS2552_PLL_CLKIN_MCLK ((0 << 1) | TAS2552_PLL_CLKIN)
|
|
#define TAS2552_PLL_CLKIN_BCLK ((1 << 1) | TAS2552_PLL_CLKIN)
|
|
#define TAS2552_PLL_CLKIN_IVCLKIN ((2 << 1) | TAS2552_PLL_CLKIN)
|
|
#define TAS2552_PLL_CLKIN_1_8_FIXED ((3 << 1) | TAS2552_PLL_CLKIN)
|
|
|
|
#define TAS2552_PDM_CLK_PLL ((0 << 1) | TAS2552_PDM_CLK)
|
|
#define TAS2552_PDM_CLK_IVCLKIN ((1 << 1) | TAS2552_PDM_CLK)
|
|
#define TAS2552_PDM_CLK_BCLK ((2 << 1) | TAS2552_PDM_CLK)
|
|
#define TAS2552_PDM_CLK_MCLK ((3 << 1) | TAS2552_PDM_CLK)
|
|
|
|
#endif /* __DT_TAS2552_H */
|