Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/5.14.0-570.el9.x86_64/include/linux/soc/brcmstb/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __BRCMSTB_SOC_H #define __BRCMSTB_SOC_H #include <linux/kconfig.h> static inline u32 BRCM_ID(u32 reg) { return reg >> 28 ? reg >> 16 : reg >> 8; } static inline u32 BRCM_REV(u32 reg) { return reg & 0xff; } #if IS_ENABLED(CONFIG_SOC_BRCMSTB) /* * Helper functions for getting family or product id from the * SoC driver. */ u32 brcmstb_get_family_id(void); u32 brcmstb_get_product_id(void); #else static inline u32 brcmstb_get_family_id(void) { return 0; } static inline u32 brcmstb_get_product_id(void) { return 0; } #endif #endif /* __BRCMSTB_SOC_H */