Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/compat/linuxkpi/common/include/linux/bcma/bcma_regs.h
178666 views
1
/*
2
* Copyright (c) 2025 Bjoern A. Zeeb
3
*
4
* SPDX-License-Identifier: BSD-2-Clause
5
*/
6
7
#ifndef _LINUXKPI_LINUX_BCMA_BCMA_REGS_H
8
#define _LINUXKPI_LINUX_BCMA_BCMA_REGS_H
9
10
#define BCMA_IOCTL 0x0408
11
#define BCMA_IOCTL_CLK 0x0001
12
#define BCMA_IOCTL_FGC 0x0002
13
14
#define BCMA_RESET_CTL 0x0800
15
#define BCMA_RESET_CTL_RESET 0x0001
16
17
#endif /* _LINUXKPI_LINUX_BCMA_BCMA_REGS_H */
18
19