mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-17 09:26:54 +07:00
![Russell King](/assets/img/avatar_default.png)
This patch provides a mechanism for platforms to be able to supply the LED configuration via platform data, rather than having to hard code it in smc91x.h. Acked-by: Eric Miao <eric.y.miao@gmail.com> Acked-by: Nicolas Pitre <nico@cam.org> Acked-by: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
26 lines
592 B
C
26 lines
592 B
C
#ifndef __SMC91X_H__
|
|
#define __SMC91X_H__
|
|
|
|
#define SMC91X_USE_8BIT (1 << 0)
|
|
#define SMC91X_USE_16BIT (1 << 1)
|
|
#define SMC91X_USE_32BIT (1 << 2)
|
|
|
|
#define SMC91X_NOWAIT (1 << 3)
|
|
|
|
/* two bits for IO_SHIFT, let's hope later designs will keep this sane */
|
|
#define SMC91X_IO_SHIFT_0 (0 << 4)
|
|
#define SMC91X_IO_SHIFT_1 (1 << 4)
|
|
#define SMC91X_IO_SHIFT_2 (2 << 4)
|
|
#define SMC91X_IO_SHIFT_3 (3 << 4)
|
|
#define SMC91X_IO_SHIFT(x) (((x) >> 4) & 0x3)
|
|
|
|
#define SMC91X_USE_DMA (1 << 6)
|
|
|
|
struct smc91x_platdata {
|
|
unsigned long flags;
|
|
unsigned char leda;
|
|
unsigned char ledb;
|
|
};
|
|
|
|
#endif /* __SMC91X_H__ */
|