1 // SPDX-License-Identifier: GPL-2.0
3 * Intel 8255 Programmable Peripheral Interface
4 * Copyright (C) 2022 William Breathitt Gray
6 #include <linux/bits.h>
7 #include <linux/device.h>
9 #include <linux/export.h>
10 #include <linux/gpio/regmap.h>
11 #include <linux/module.h>
12 #include <linux/regmap.h>
14 #include "gpio-i8255.h"
16 #define I8255_NGPIO 24
17 #define I8255_NGPIO_PER_REG 8
18 #define I8255_CONTROL_PORTC_LOWER_DIRECTION BIT(0)
19 #define I8255_CONTROL_PORTB_DIRECTION BIT(1)
20 #define I8255_CONTROL_PORTC_UPPER_DIRECTION BIT(3)
21 #define I8255_CONTROL_PORTA_DIRECTION BIT(4)
22 #define I8255_CONTROL_MODE_SET BIT(7)
23 #define I8255_PORTA 0x0
24 #define I8255_PORTB 0x1
25 #define I8255_PORTC 0x2
26 #define I8255_CONTROL 0x3
27 #define I8255_REG_DAT_BASE I8255_PORTA
28 #define I8255_REG_DIR_IN_BASE I8255_CONTROL
30 static int i8255_direction_mask(const unsigned int offset
)
32 const unsigned int stride
= offset
/ I8255_NGPIO_PER_REG
;
33 const unsigned int line
= offset
% I8255_NGPIO_PER_REG
;
37 return I8255_CONTROL_PORTA_DIRECTION
;
39 return I8255_CONTROL_PORTB_DIRECTION
;
41 /* Port C can be configured by nibble */
43 return I8255_CONTROL_PORTC_UPPER_DIRECTION
;
44 return I8255_CONTROL_PORTC_LOWER_DIRECTION
;
46 /* Should never reach this path */
51 static int i8255_ppi_init(struct regmap
*const map
, const unsigned int base
)
55 /* Configure all ports to MODE 0 output mode */
56 err
= regmap_write(map
, base
+ I8255_CONTROL
, I8255_CONTROL_MODE_SET
);
60 /* Initialize all GPIO to output 0 */
61 err
= regmap_write(map
, base
+ I8255_PORTA
, 0x00);
64 err
= regmap_write(map
, base
+ I8255_PORTB
, 0x00);
67 return regmap_write(map
, base
+ I8255_PORTC
, 0x00);
70 static int i8255_reg_mask_xlate(struct gpio_regmap
*gpio
, unsigned int base
,
71 unsigned int offset
, unsigned int *reg
,
74 const unsigned int ppi
= offset
/ I8255_NGPIO
;
75 const unsigned int ppi_offset
= offset
% I8255_NGPIO
;
76 const unsigned int stride
= ppi_offset
/ I8255_NGPIO_PER_REG
;
77 const unsigned int line
= ppi_offset
% I8255_NGPIO_PER_REG
;
80 case I8255_REG_DAT_BASE
:
81 *reg
= base
+ stride
+ ppi
* 4;
84 case I8255_REG_DIR_IN_BASE
:
85 *reg
= base
+ ppi
* 4;
86 *mask
= i8255_direction_mask(ppi_offset
);
89 /* Should never reach this path */
95 * devm_i8255_regmap_register - Register an i8255 GPIO controller
96 * @dev: device that is registering this i8255 GPIO device
97 * @config: configuration for i8255_regmap_config
99 * Registers an Intel 8255 Programmable Peripheral Interface GPIO controller.
100 * Returns 0 on success and negative error number on failure.
102 int devm_i8255_regmap_register(struct device
*const dev
,
103 const struct i8255_regmap_config
*const config
)
105 struct gpio_regmap_config gpio_config
= {0};
115 if (!config
->num_ppi
)
118 for (i
= 0; i
< config
->num_ppi
; i
++) {
119 err
= i8255_ppi_init(config
->map
, i
* 4);
124 gpio_config
.parent
= config
->parent
;
125 gpio_config
.regmap
= config
->map
;
126 gpio_config
.ngpio
= I8255_NGPIO
* config
->num_ppi
;
127 gpio_config
.names
= config
->names
;
128 gpio_config
.reg_dat_base
= GPIO_REGMAP_ADDR(I8255_REG_DAT_BASE
);
129 gpio_config
.reg_set_base
= GPIO_REGMAP_ADDR(I8255_REG_DAT_BASE
);
130 gpio_config
.reg_dir_in_base
= GPIO_REGMAP_ADDR(I8255_REG_DIR_IN_BASE
);
131 gpio_config
.ngpio_per_reg
= I8255_NGPIO_PER_REG
;
132 gpio_config
.irq_domain
= config
->domain
;
133 gpio_config
.reg_mask_xlate
= i8255_reg_mask_xlate
;
135 return PTR_ERR_OR_ZERO(devm_gpio_regmap_register(dev
, &gpio_config
));
137 EXPORT_SYMBOL_NS_GPL(devm_i8255_regmap_register
, "I8255");
139 MODULE_AUTHOR("William Breathitt Gray");
140 MODULE_DESCRIPTION("Intel 8255 Programmable Peripheral Interface");
141 MODULE_LICENSE("GPL");