mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 06:46:59 +00:00
gpio: atmel_pio4: add drive strength macros
Macros for drive strength configuration were missing. Signed-off-by: Ludovic Desroches <ludovic.desroches@microchip.com>
This commit is contained in:
parent
7c45862f22
commit
cbccb33584
1 changed files with 4 additions and 0 deletions
|
@ -47,6 +47,10 @@ struct atmel_pio4_port {
|
|||
#define ATMEL_PIO_IFSCEN_MASK BIT(13)
|
||||
#define ATMEL_PIO_OPD_MASK BIT(14)
|
||||
#define ATMEL_PIO_SCHMITT_MASK BIT(15)
|
||||
#define ATMEL_PIO_DRVSTR_MASK GENMASK(17, 16)
|
||||
#define ATMEL_PIO_DRVSTR_LO (1 << 16)
|
||||
#define ATMEL_PIO_DRVSTR_ME (2 << 16)
|
||||
#define ATMEL_PIO_DRVSTR_HI (3 << 16)
|
||||
#define ATMEL_PIO_CFGR_EVTSEL_MASK GENMASK(26, 24)
|
||||
#define ATMEL_PIO_CFGR_EVTSEL_FALLING (0 << 24)
|
||||
#define ATMEL_PIO_CFGR_EVTSEL_RISING (1 << 24)
|
||||
|
|
Loading…
Add table
Reference in a new issue