2 * Pistachio SoC pinctrl driver
4 * Copyright (C) 2014 Imagination Technologies Ltd.
5 * Copyright (C) 2014 Google, Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
12 #include <linux/gpio.h>
13 #include <linux/gpio/driver.h>
14 #include <linux/interrupt.h>
16 #include <linux/irq.h>
18 #include <linux/of_irq.h>
19 #include <linux/pinctrl/pinconf.h>
20 #include <linux/pinctrl/pinconf-generic.h>
21 #include <linux/pinctrl/pinctrl.h>
22 #include <linux/pinctrl/pinmux.h>
23 #include <linux/platform_device.h>
24 #include <linux/slab.h>
25 #include <linux/spinlock.h>
27 #include "pinctrl-utils.h"
29 #define PADS_SCHMITT_EN0 0x000
30 #define PADS_SCHMITT_EN_REG(pin) (PADS_SCHMITT_EN0 + 0x4 * ((pin) / 32))
31 #define PADS_SCHMITT_EN_BIT(pin) BIT((pin) % 32)
33 #define PADS_PU_PD0 0x040
34 #define PADS_PU_PD_REG(pin) (PADS_PU_PD0 + 0x4 * ((pin) / 16))
35 #define PADS_PU_PD_SHIFT(pin) (2 * ((pin) % 16))
36 #define PADS_PU_PD_MASK 0x3
37 #define PADS_PU_PD_HIGHZ 0x0
38 #define PADS_PU_PD_UP 0x1
39 #define PADS_PU_PD_DOWN 0x2
40 #define PADS_PU_PD_BUS 0x3
42 #define PADS_FUNCTION_SELECT0 0x0c0
43 #define PADS_FUNCTION_SELECT1 0x0c4
44 #define PADS_FUNCTION_SELECT2 0x0c8
45 #define PADS_SCENARIO_SELECT 0x0f8
47 #define PADS_SLEW_RATE0 0x100
48 #define PADS_SLEW_RATE_REG(pin) (PADS_SLEW_RATE0 + 0x4 * ((pin) / 32))
49 #define PADS_SLEW_RATE_BIT(pin) BIT((pin) % 32)
51 #define PADS_DRIVE_STRENGTH0 0x120
52 #define PADS_DRIVE_STRENGTH_REG(pin) \
53 (PADS_DRIVE_STRENGTH0 + 0x4 * ((pin) / 16))
54 #define PADS_DRIVE_STRENGTH_SHIFT(pin) (2 * ((pin) % 16))
55 #define PADS_DRIVE_STRENGTH_MASK 0x3
56 #define PADS_DRIVE_STRENGTH_2MA 0x0
57 #define PADS_DRIVE_STRENGTH_4MA 0x1
58 #define PADS_DRIVE_STRENGTH_8MA 0x2
59 #define PADS_DRIVE_STRENGTH_12MA 0x3
61 #define GPIO_BANK_BASE(bank) (0x200 + 0x24 * (bank))
63 #define GPIO_BIT_EN 0x00
64 #define GPIO_OUTPUT_EN 0x04
65 #define GPIO_OUTPUT 0x08
66 #define GPIO_INPUT 0x0c
67 #define GPIO_INPUT_POLARITY 0x10
68 #define GPIO_INTERRUPT_TYPE 0x14
69 #define GPIO_INTERRUPT_TYPE_LEVEL 0x0
70 #define GPIO_INTERRUPT_TYPE_EDGE 0x1
71 #define GPIO_INTERRUPT_EDGE 0x18
72 #define GPIO_INTERRUPT_EDGE_SINGLE 0x0
73 #define GPIO_INTERRUPT_EDGE_DUAL 0x1
74 #define GPIO_INTERRUPT_EN 0x1c
75 #define GPIO_INTERRUPT_STATUS 0x20
77 struct pistachio_function
{
79 const char * const *groups
;
82 unsigned int nscenarios
;
83 unsigned int scenario_reg
;
84 unsigned int scenario_shift
;
85 unsigned int scenario_mask
;
88 struct pistachio_pin_group
{
97 struct pistachio_gpio_bank
{
98 struct pistachio_pinctrl
*pctl
;
100 unsigned int pin_base
;
102 struct gpio_chip gpio_chip
;
103 struct irq_chip irq_chip
;
106 struct pistachio_pinctrl
{
109 struct pinctrl_dev
*pctldev
;
110 const struct pinctrl_pin_desc
*pins
;
112 const struct pistachio_function
*functions
;
113 unsigned int nfunctions
;
114 const struct pistachio_pin_group
*groups
;
115 unsigned int ngroups
;
116 struct pistachio_gpio_bank
*gpio_banks
;
120 #define PISTACHIO_PIN_MFIO(p) (p)
121 #define PISTACHIO_PIN_TCK 90
122 #define PISTACHIO_PIN_TRSTN 91
123 #define PISTACHIO_PIN_TDI 92
124 #define PISTACHIO_PIN_TMS 93
125 #define PISTACHIO_PIN_TDO 94
126 #define PISTACHIO_PIN_JTAG_COMPLY 95
127 #define PISTACHIO_PIN_SAFE_MODE 96
128 #define PISTACHIO_PIN_POR_DISABLE 97
129 #define PISTACHIO_PIN_RESETN 98
131 #define MFIO_PIN_DESC(p) PINCTRL_PIN(PISTACHIO_PIN_MFIO(p), "mfio" #p)
133 static const struct pinctrl_pin_desc pistachio_pins
[] = {
224 PINCTRL_PIN(PISTACHIO_PIN_TCK
, "tck"),
225 PINCTRL_PIN(PISTACHIO_PIN_TRSTN
, "trstn"),
226 PINCTRL_PIN(PISTACHIO_PIN_TDI
, "tdi"),
227 PINCTRL_PIN(PISTACHIO_PIN_TMS
, "tms"),
228 PINCTRL_PIN(PISTACHIO_PIN_TDO
, "tdo"),
229 PINCTRL_PIN(PISTACHIO_PIN_JTAG_COMPLY
, "jtag_comply"),
230 PINCTRL_PIN(PISTACHIO_PIN_SAFE_MODE
, "safe_mode"),
231 PINCTRL_PIN(PISTACHIO_PIN_POR_DISABLE
, "por_disable"),
232 PINCTRL_PIN(PISTACHIO_PIN_RESETN
, "resetn"),
235 static const char * const pistachio_spim0_groups
[] = {
236 "mfio1", "mfio2", "mfio8", "mfio9", "mfio10", "mfio28", "mfio29",
237 "mfio30", "mfio55", "mfio56", "mfio57",
240 static const char * const pistachio_spim1_groups
[] = {
241 "mfio0", "mfio1", "mfio2", "mfio3", "mfio4", "mfio5", "mfio6",
242 "mfio7", "mfio31", "mfio55", "mfio56", "mfio57", "mfio58",
245 static const char * const pistachio_spis_groups
[] = {
246 "mfio11", "mfio12", "mfio13", "mfio14",
249 static const char *const pistachio_sdhost_groups
[] = {
250 "mfio15", "mfio16", "mfio17", "mfio18", "mfio19", "mfio20",
251 "mfio21", "mfio22", "mfio23", "mfio24", "mfio25", "mfio26",
255 static const char * const pistachio_i2c0_groups
[] = {
259 static const char * const pistachio_i2c1_groups
[] = {
263 static const char * const pistachio_i2c2_groups
[] = {
267 static const char * const pistachio_i2c3_groups
[] = {
271 static const char * const pistachio_audio_clk_in_groups
[] = {
275 static const char * const pistachio_i2s_out_groups
[] = {
276 "mfio36", "mfio37", "mfio38", "mfio39", "mfio40", "mfio41",
277 "mfio42", "mfio43", "mfio44",
280 static const char * const pistachio_debug_raw_cca_ind_groups
[] = {
284 static const char * const pistachio_debug_ed_sec20_cca_ind_groups
[] = {
288 static const char * const pistachio_debug_ed_sec40_cca_ind_groups
[] = {
292 static const char * const pistachio_debug_agc_done_0_groups
[] = {
296 static const char * const pistachio_debug_agc_done_1_groups
[] = {
300 static const char * const pistachio_debug_ed_cca_ind_groups
[] = {
304 static const char * const pistachio_debug_s2l_done_groups
[] = {
308 static const char * const pistachio_i2s_dac_clk_groups
[] = {
312 static const char * const pistachio_audio_sync_groups
[] = {
316 static const char * const pistachio_audio_trigger_groups
[] = {
320 static const char * const pistachio_i2s_in_groups
[] = {
321 "mfio47", "mfio48", "mfio49", "mfio50", "mfio51", "mfio52",
325 static const char * const pistachio_uart0_groups
[] = {
326 "mfio55", "mfio56", "mfio57", "mfio58",
329 static const char * const pistachio_uart1_groups
[] = {
330 "mfio59", "mfio60", "mfio1", "mfio2",
333 static const char * const pistachio_spdif_out_groups
[] = {
337 static const char * const pistachio_spdif_in_groups
[] = {
340 static const int pistachio_spdif_in_scenarios
[] = {
341 PISTACHIO_PIN_MFIO(62),
342 PISTACHIO_PIN_MFIO(54),
345 static const char * const pistachio_eth_groups
[] = {
346 "mfio63", "mfio64", "mfio65", "mfio66", "mfio67", "mfio68",
347 "mfio69", "mfio70", "mfio71",
350 static const char * const pistachio_ir_groups
[] = {
354 static const char * const pistachio_pwmpdm_groups
[] = {
355 "mfio73", "mfio74", "mfio75", "mfio76",
358 static const char * const pistachio_mips_trace_clk_groups
[] = {
359 "mfio15", "mfio63", "mfio73",
362 static const char * const pistachio_mips_trace_dint_groups
[] = {
363 "mfio16", "mfio64", "mfio74",
365 static const int pistachio_mips_trace_dint_scenarios
[] = {
366 PISTACHIO_PIN_MFIO(16),
367 PISTACHIO_PIN_MFIO(64),
368 PISTACHIO_PIN_MFIO(74),
371 static const char * const pistachio_mips_trace_trigout_groups
[] = {
372 "mfio17", "mfio65", "mfio75",
375 static const char * const pistachio_mips_trace_trigin_groups
[] = {
376 "mfio18", "mfio66", "mfio76",
378 static const int pistachio_mips_trace_trigin_scenarios
[] = {
379 PISTACHIO_PIN_MFIO(18),
380 PISTACHIO_PIN_MFIO(66),
381 PISTACHIO_PIN_MFIO(76),
384 static const char * const pistachio_mips_trace_dm_groups
[] = {
385 "mfio19", "mfio67", "mfio77",
388 static const char * const pistachio_mips_probe_n_groups
[] = {
389 "mfio20", "mfio68", "mfio78",
391 static const int pistachio_mips_probe_n_scenarios
[] = {
392 PISTACHIO_PIN_MFIO(20),
393 PISTACHIO_PIN_MFIO(68),
394 PISTACHIO_PIN_MFIO(78),
397 static const char * const pistachio_mips_trace_data_groups
[] = {
398 "mfio15", "mfio16", "mfio17", "mfio18", "mfio19", "mfio20",
399 "mfio21", "mfio22", "mfio63", "mfio64", "mfio65", "mfio66",
400 "mfio67", "mfio68", "mfio69", "mfio70", "mfio79", "mfio80",
401 "mfio81", "mfio82", "mfio83", "mfio84", "mfio85", "mfio86",
404 static const char * const pistachio_sram_debug_groups
[] = {
408 static const char * const pistachio_rom_debug_groups
[] = {
412 static const char * const pistachio_rpu_debug_groups
[] = {
416 static const char * const pistachio_mips_debug_groups
[] = {
420 static const char * const pistachio_eth_debug_groups
[] = {
424 static const char * const pistachio_usb_debug_groups
[] = {
428 static const char * const pistachio_sdhost_debug_groups
[] = {
432 static const char * const pistachio_socif_debug_groups
[] = {
436 static const char * const pistachio_mdc_debug_groups
[] = {
440 static const char * const pistachio_ddr_debug_groups
[] = {
444 static const char * const pistachio_dreq0_groups
[] = {
448 static const char * const pistachio_dreq1_groups
[] = {
452 static const char * const pistachio_dreq2_groups
[] = {
456 static const char * const pistachio_dreq3_groups
[] = {
460 static const char * const pistachio_dreq4_groups
[] = {
464 static const char * const pistachio_dreq5_groups
[] = {
468 static const char * const pistachio_mips_pll_lock_groups
[] = {
472 static const char * const pistachio_audio_pll_lock_groups
[] = {
476 static const char * const pistachio_rpu_v_pll_lock_groups
[] = {
480 static const char * const pistachio_rpu_l_pll_lock_groups
[] = {
484 static const char * const pistachio_sys_pll_lock_groups
[] = {
488 static const char * const pistachio_wifi_pll_lock_groups
[] = {
492 static const char * const pistachio_bt_pll_lock_groups
[] = {
496 #define FUNCTION(_name) \
499 .groups = pistachio_##_name##_groups, \
500 .ngroups = ARRAY_SIZE(pistachio_##_name##_groups), \
503 #define FUNCTION_SCENARIO(_name, _reg, _shift, _mask) \
506 .groups = pistachio_##_name##_groups, \
507 .ngroups = ARRAY_SIZE(pistachio_##_name##_groups), \
508 .scenarios = pistachio_##_name##_scenarios, \
509 .nscenarios = ARRAY_SIZE(pistachio_##_name##_scenarios),\
510 .scenario_reg = _reg, \
511 .scenario_shift = _shift, \
512 .scenario_mask = _mask, \
515 enum pistachio_mux_option
{
516 PISTACHIO_FUNCTION_NONE
= -1,
517 PISTACHIO_FUNCTION_SPIM0
,
518 PISTACHIO_FUNCTION_SPIM1
,
519 PISTACHIO_FUNCTION_SPIS
,
520 PISTACHIO_FUNCTION_SDHOST
,
521 PISTACHIO_FUNCTION_I2C0
,
522 PISTACHIO_FUNCTION_I2C1
,
523 PISTACHIO_FUNCTION_I2C2
,
524 PISTACHIO_FUNCTION_I2C3
,
525 PISTACHIO_FUNCTION_AUDIO_CLK_IN
,
526 PISTACHIO_FUNCTION_I2S_OUT
,
527 PISTACHIO_FUNCTION_I2S_DAC_CLK
,
528 PISTACHIO_FUNCTION_AUDIO_SYNC
,
529 PISTACHIO_FUNCTION_AUDIO_TRIGGER
,
530 PISTACHIO_FUNCTION_I2S_IN
,
531 PISTACHIO_FUNCTION_UART0
,
532 PISTACHIO_FUNCTION_UART1
,
533 PISTACHIO_FUNCTION_SPDIF_OUT
,
534 PISTACHIO_FUNCTION_SPDIF_IN
,
535 PISTACHIO_FUNCTION_ETH
,
536 PISTACHIO_FUNCTION_IR
,
537 PISTACHIO_FUNCTION_PWMPDM
,
538 PISTACHIO_FUNCTION_MIPS_TRACE_CLK
,
539 PISTACHIO_FUNCTION_MIPS_TRACE_DINT
,
540 PISTACHIO_FUNCTION_MIPS_TRACE_TRIGOUT
,
541 PISTACHIO_FUNCTION_MIPS_TRACE_TRIGIN
,
542 PISTACHIO_FUNCTION_MIPS_TRACE_DM
,
543 PISTACHIO_FUNCTION_MIPS_TRACE_PROBE_N
,
544 PISTACHIO_FUNCTION_MIPS_TRACE_DATA
,
545 PISTACHIO_FUNCTION_SRAM_DEBUG
,
546 PISTACHIO_FUNCTION_ROM_DEBUG
,
547 PISTACHIO_FUNCTION_RPU_DEBUG
,
548 PISTACHIO_FUNCTION_MIPS_DEBUG
,
549 PISTACHIO_FUNCTION_ETH_DEBUG
,
550 PISTACHIO_FUNCTION_USB_DEBUG
,
551 PISTACHIO_FUNCTION_SDHOST_DEBUG
,
552 PISTACHIO_FUNCTION_SOCIF_DEBUG
,
553 PISTACHIO_FUNCTION_MDC_DEBUG
,
554 PISTACHIO_FUNCTION_DDR_DEBUG
,
555 PISTACHIO_FUNCTION_DREQ0
,
556 PISTACHIO_FUNCTION_DREQ1
,
557 PISTACHIO_FUNCTION_DREQ2
,
558 PISTACHIO_FUNCTION_DREQ3
,
559 PISTACHIO_FUNCTION_DREQ4
,
560 PISTACHIO_FUNCTION_DREQ5
,
561 PISTACHIO_FUNCTION_MIPS_PLL_LOCK
,
562 PISTACHIO_FUNCTION_AUDIO_PLL_LOCK
,
563 PISTACHIO_FUNCTION_RPU_V_PLL_LOCK
,
564 PISTACHIO_FUNCTION_RPU_L_PLL_LOCK
,
565 PISTACHIO_FUNCTION_SYS_PLL_LOCK
,
566 PISTACHIO_FUNCTION_WIFI_PLL_LOCK
,
567 PISTACHIO_FUNCTION_BT_PLL_LOCK
,
568 PISTACHIO_FUNCTION_DEBUG_RAW_CCA_IND
,
569 PISTACHIO_FUNCTION_DEBUG_ED_SEC20_CCA_IND
,
570 PISTACHIO_FUNCTION_DEBUG_ED_SEC40_CCA_IND
,
571 PISTACHIO_FUNCTION_DEBUG_AGC_DONE_0
,
572 PISTACHIO_FUNCTION_DEBUG_AGC_DONE_1
,
573 PISTACHIO_FUNCTION_DEBUG_ED_CCA_IND
,
574 PISTACHIO_FUNCTION_DEBUG_S2L_DONE
,
577 static const struct pistachio_function pistachio_functions
[] = {
586 FUNCTION(audio_clk_in
),
588 FUNCTION(i2s_dac_clk
),
589 FUNCTION(audio_sync
),
590 FUNCTION(audio_trigger
),
595 FUNCTION_SCENARIO(spdif_in
, PADS_SCENARIO_SELECT
, 0, 0x1),
599 FUNCTION(mips_trace_clk
),
600 FUNCTION_SCENARIO(mips_trace_dint
, PADS_SCENARIO_SELECT
, 1, 0x3),
601 FUNCTION(mips_trace_trigout
),
602 FUNCTION_SCENARIO(mips_trace_trigin
, PADS_SCENARIO_SELECT
, 3, 0x3),
603 FUNCTION(mips_trace_dm
),
604 FUNCTION_SCENARIO(mips_probe_n
, PADS_SCENARIO_SELECT
, 5, 0x3),
605 FUNCTION(mips_trace_data
),
606 FUNCTION(sram_debug
),
609 FUNCTION(mips_debug
),
612 FUNCTION(sdhost_debug
),
613 FUNCTION(socif_debug
),
622 FUNCTION(mips_pll_lock
),
623 FUNCTION(audio_pll_lock
),
624 FUNCTION(rpu_v_pll_lock
),
625 FUNCTION(rpu_l_pll_lock
),
626 FUNCTION(sys_pll_lock
),
627 FUNCTION(wifi_pll_lock
),
628 FUNCTION(bt_pll_lock
),
629 FUNCTION(debug_raw_cca_ind
),
630 FUNCTION(debug_ed_sec20_cca_ind
),
631 FUNCTION(debug_ed_sec40_cca_ind
),
632 FUNCTION(debug_agc_done_0
),
633 FUNCTION(debug_agc_done_1
),
634 FUNCTION(debug_ed_cca_ind
),
635 FUNCTION(debug_s2l_done
),
638 #define PIN_GROUP(_pin, _name) \
641 .pin = PISTACHIO_PIN_##_pin, \
643 PISTACHIO_FUNCTION_NONE, \
644 PISTACHIO_FUNCTION_NONE, \
645 PISTACHIO_FUNCTION_NONE, \
652 #define MFIO_PIN_GROUP(_pin, _func) \
654 .name = "mfio" #_pin, \
655 .pin = PISTACHIO_PIN_MFIO(_pin), \
657 PISTACHIO_FUNCTION_##_func, \
658 PISTACHIO_FUNCTION_NONE, \
659 PISTACHIO_FUNCTION_NONE, \
666 #define MFIO_MUX_PIN_GROUP(_pin, _f0, _f1, _f2, _reg, _shift, _mask) \
668 .name = "mfio" #_pin, \
669 .pin = PISTACHIO_PIN_MFIO(_pin), \
671 PISTACHIO_FUNCTION_##_f0, \
672 PISTACHIO_FUNCTION_##_f1, \
673 PISTACHIO_FUNCTION_##_f2, \
676 .mux_shift = _shift, \
680 static const struct pistachio_pin_group pistachio_groups
[] = {
681 MFIO_PIN_GROUP(0, SPIM1
),
682 MFIO_MUX_PIN_GROUP(1, SPIM1
, SPIM0
, UART1
,
683 PADS_FUNCTION_SELECT0
, 0, 0x3),
684 MFIO_MUX_PIN_GROUP(2, SPIM1
, SPIM0
, UART1
,
685 PADS_FUNCTION_SELECT0
, 2, 0x3),
686 MFIO_PIN_GROUP(3, SPIM1
),
687 MFIO_PIN_GROUP(4, SPIM1
),
688 MFIO_PIN_GROUP(5, SPIM1
),
689 MFIO_PIN_GROUP(6, SPIM1
),
690 MFIO_PIN_GROUP(7, SPIM1
),
691 MFIO_PIN_GROUP(8, SPIM0
),
692 MFIO_PIN_GROUP(9, SPIM0
),
693 MFIO_PIN_GROUP(10, SPIM0
),
694 MFIO_PIN_GROUP(11, SPIS
),
695 MFIO_PIN_GROUP(12, SPIS
),
696 MFIO_PIN_GROUP(13, SPIS
),
697 MFIO_PIN_GROUP(14, SPIS
),
698 MFIO_MUX_PIN_GROUP(15, SDHOST
, MIPS_TRACE_CLK
, MIPS_TRACE_DATA
,
699 PADS_FUNCTION_SELECT0
, 4, 0x3),
700 MFIO_MUX_PIN_GROUP(16, SDHOST
, MIPS_TRACE_DINT
, MIPS_TRACE_DATA
,
701 PADS_FUNCTION_SELECT0
, 6, 0x3),
702 MFIO_MUX_PIN_GROUP(17, SDHOST
, MIPS_TRACE_TRIGOUT
, MIPS_TRACE_DATA
,
703 PADS_FUNCTION_SELECT0
, 8, 0x3),
704 MFIO_MUX_PIN_GROUP(18, SDHOST
, MIPS_TRACE_TRIGIN
, MIPS_TRACE_DATA
,
705 PADS_FUNCTION_SELECT0
, 10, 0x3),
706 MFIO_MUX_PIN_GROUP(19, SDHOST
, MIPS_TRACE_DM
, MIPS_TRACE_DATA
,
707 PADS_FUNCTION_SELECT0
, 12, 0x3),
708 MFIO_MUX_PIN_GROUP(20, SDHOST
, MIPS_TRACE_PROBE_N
, MIPS_TRACE_DATA
,
709 PADS_FUNCTION_SELECT0
, 14, 0x3),
710 MFIO_MUX_PIN_GROUP(21, SDHOST
, NONE
, MIPS_TRACE_DATA
,
711 PADS_FUNCTION_SELECT0
, 16, 0x3),
712 MFIO_MUX_PIN_GROUP(22, SDHOST
, NONE
, MIPS_TRACE_DATA
,
713 PADS_FUNCTION_SELECT0
, 18, 0x3),
714 MFIO_PIN_GROUP(23, SDHOST
),
715 MFIO_PIN_GROUP(24, SDHOST
),
716 MFIO_PIN_GROUP(25, SDHOST
),
717 MFIO_PIN_GROUP(26, SDHOST
),
718 MFIO_PIN_GROUP(27, SDHOST
),
719 MFIO_MUX_PIN_GROUP(28, I2C0
, SPIM0
, NONE
,
720 PADS_FUNCTION_SELECT0
, 20, 0x1),
721 MFIO_MUX_PIN_GROUP(29, I2C0
, SPIM0
, NONE
,
722 PADS_FUNCTION_SELECT0
, 21, 0x1),
723 MFIO_MUX_PIN_GROUP(30, I2C1
, SPIM0
, NONE
,
724 PADS_FUNCTION_SELECT0
, 22, 0x1),
725 MFIO_MUX_PIN_GROUP(31, I2C1
, SPIM1
, NONE
,
726 PADS_FUNCTION_SELECT0
, 23, 0x1),
727 MFIO_PIN_GROUP(32, I2C2
),
728 MFIO_PIN_GROUP(33, I2C2
),
729 MFIO_PIN_GROUP(34, I2C3
),
730 MFIO_PIN_GROUP(35, I2C3
),
731 MFIO_MUX_PIN_GROUP(36, I2S_OUT
, AUDIO_CLK_IN
, NONE
,
732 PADS_FUNCTION_SELECT0
, 24, 0x1),
733 MFIO_MUX_PIN_GROUP(37, I2S_OUT
, DEBUG_RAW_CCA_IND
, NONE
,
734 PADS_FUNCTION_SELECT0
, 25, 0x1),
735 MFIO_MUX_PIN_GROUP(38, I2S_OUT
, DEBUG_ED_SEC20_CCA_IND
, NONE
,
736 PADS_FUNCTION_SELECT0
, 26, 0x1),
737 MFIO_MUX_PIN_GROUP(39, I2S_OUT
, DEBUG_ED_SEC40_CCA_IND
, NONE
,
738 PADS_FUNCTION_SELECT0
, 27, 0x1),
739 MFIO_MUX_PIN_GROUP(40, I2S_OUT
, DEBUG_AGC_DONE_0
, NONE
,
740 PADS_FUNCTION_SELECT0
, 28, 0x1),
741 MFIO_MUX_PIN_GROUP(41, I2S_OUT
, DEBUG_AGC_DONE_1
, NONE
,
742 PADS_FUNCTION_SELECT0
, 29, 0x1),
743 MFIO_MUX_PIN_GROUP(42, I2S_OUT
, DEBUG_ED_CCA_IND
, NONE
,
744 PADS_FUNCTION_SELECT0
, 30, 0x1),
745 MFIO_MUX_PIN_GROUP(43, I2S_OUT
, DEBUG_S2L_DONE
, NONE
,
746 PADS_FUNCTION_SELECT0
, 31, 0x1),
747 MFIO_PIN_GROUP(44, I2S_OUT
),
748 MFIO_MUX_PIN_GROUP(45, I2S_DAC_CLK
, AUDIO_SYNC
, NONE
,
749 PADS_FUNCTION_SELECT1
, 0, 0x1),
750 MFIO_PIN_GROUP(46, AUDIO_TRIGGER
),
751 MFIO_PIN_GROUP(47, I2S_IN
),
752 MFIO_PIN_GROUP(48, I2S_IN
),
753 MFIO_PIN_GROUP(49, I2S_IN
),
754 MFIO_PIN_GROUP(50, I2S_IN
),
755 MFIO_PIN_GROUP(51, I2S_IN
),
756 MFIO_PIN_GROUP(52, I2S_IN
),
757 MFIO_PIN_GROUP(53, I2S_IN
),
758 MFIO_MUX_PIN_GROUP(54, I2S_IN
, NONE
, SPDIF_IN
,
759 PADS_FUNCTION_SELECT1
, 1, 0x3),
760 MFIO_MUX_PIN_GROUP(55, UART0
, SPIM0
, SPIM1
,
761 PADS_FUNCTION_SELECT1
, 3, 0x3),
762 MFIO_MUX_PIN_GROUP(56, UART0
, SPIM0
, SPIM1
,
763 PADS_FUNCTION_SELECT1
, 5, 0x3),
764 MFIO_MUX_PIN_GROUP(57, UART0
, SPIM0
, SPIM1
,
765 PADS_FUNCTION_SELECT1
, 7, 0x3),
766 MFIO_MUX_PIN_GROUP(58, UART0
, SPIM1
, NONE
,
767 PADS_FUNCTION_SELECT1
, 9, 0x1),
768 MFIO_PIN_GROUP(59, UART1
),
769 MFIO_PIN_GROUP(60, UART1
),
770 MFIO_PIN_GROUP(61, SPDIF_OUT
),
771 MFIO_PIN_GROUP(62, SPDIF_IN
),
772 MFIO_MUX_PIN_GROUP(63, ETH
, MIPS_TRACE_CLK
, MIPS_TRACE_DATA
,
773 PADS_FUNCTION_SELECT1
, 10, 0x3),
774 MFIO_MUX_PIN_GROUP(64, ETH
, MIPS_TRACE_DINT
, MIPS_TRACE_DATA
,
775 PADS_FUNCTION_SELECT1
, 12, 0x3),
776 MFIO_MUX_PIN_GROUP(65, ETH
, MIPS_TRACE_TRIGOUT
, MIPS_TRACE_DATA
,
777 PADS_FUNCTION_SELECT1
, 14, 0x3),
778 MFIO_MUX_PIN_GROUP(66, ETH
, MIPS_TRACE_TRIGIN
, MIPS_TRACE_DATA
,
779 PADS_FUNCTION_SELECT1
, 16, 0x3),
780 MFIO_MUX_PIN_GROUP(67, ETH
, MIPS_TRACE_DM
, MIPS_TRACE_DATA
,
781 PADS_FUNCTION_SELECT1
, 18, 0x3),
782 MFIO_MUX_PIN_GROUP(68, ETH
, MIPS_TRACE_PROBE_N
, MIPS_TRACE_DATA
,
783 PADS_FUNCTION_SELECT1
, 20, 0x3),
784 MFIO_MUX_PIN_GROUP(69, ETH
, NONE
, MIPS_TRACE_DATA
,
785 PADS_FUNCTION_SELECT1
, 22, 0x3),
786 MFIO_MUX_PIN_GROUP(70, ETH
, NONE
, MIPS_TRACE_DATA
,
787 PADS_FUNCTION_SELECT1
, 24, 0x3),
788 MFIO_PIN_GROUP(71, ETH
),
789 MFIO_PIN_GROUP(72, IR
),
790 MFIO_MUX_PIN_GROUP(73, PWMPDM
, MIPS_TRACE_CLK
, SRAM_DEBUG
,
791 PADS_FUNCTION_SELECT1
, 26, 0x3),
792 MFIO_MUX_PIN_GROUP(74, PWMPDM
, MIPS_TRACE_DINT
, SRAM_DEBUG
,
793 PADS_FUNCTION_SELECT1
, 28, 0x3),
794 MFIO_MUX_PIN_GROUP(75, PWMPDM
, MIPS_TRACE_TRIGOUT
, ROM_DEBUG
,
795 PADS_FUNCTION_SELECT1
, 30, 0x3),
796 MFIO_MUX_PIN_GROUP(76, PWMPDM
, MIPS_TRACE_TRIGIN
, ROM_DEBUG
,
797 PADS_FUNCTION_SELECT2
, 0, 0x3),
798 MFIO_MUX_PIN_GROUP(77, MDC_DEBUG
, MIPS_TRACE_DM
, RPU_DEBUG
,
799 PADS_FUNCTION_SELECT2
, 2, 0x3),
800 MFIO_MUX_PIN_GROUP(78, MDC_DEBUG
, MIPS_TRACE_PROBE_N
, RPU_DEBUG
,
801 PADS_FUNCTION_SELECT2
, 4, 0x3),
802 MFIO_MUX_PIN_GROUP(79, DDR_DEBUG
, MIPS_TRACE_DATA
, MIPS_DEBUG
,
803 PADS_FUNCTION_SELECT2
, 6, 0x3),
804 MFIO_MUX_PIN_GROUP(80, DDR_DEBUG
, MIPS_TRACE_DATA
, MIPS_DEBUG
,
805 PADS_FUNCTION_SELECT2
, 8, 0x3),
806 MFIO_MUX_PIN_GROUP(81, DREQ0
, MIPS_TRACE_DATA
, ETH_DEBUG
,
807 PADS_FUNCTION_SELECT2
, 10, 0x3),
808 MFIO_MUX_PIN_GROUP(82, DREQ1
, MIPS_TRACE_DATA
, ETH_DEBUG
,
809 PADS_FUNCTION_SELECT2
, 12, 0x3),
810 MFIO_MUX_PIN_GROUP(83, MIPS_PLL_LOCK
, MIPS_TRACE_DATA
, USB_DEBUG
,
811 PADS_FUNCTION_SELECT2
, 14, 0x3),
812 MFIO_MUX_PIN_GROUP(84, AUDIO_PLL_LOCK
, MIPS_TRACE_DATA
, USB_DEBUG
,
813 PADS_FUNCTION_SELECT2
, 16, 0x3),
814 MFIO_MUX_PIN_GROUP(85, RPU_V_PLL_LOCK
, MIPS_TRACE_DATA
, SDHOST_DEBUG
,
815 PADS_FUNCTION_SELECT2
, 18, 0x3),
816 MFIO_MUX_PIN_GROUP(86, RPU_L_PLL_LOCK
, MIPS_TRACE_DATA
, SDHOST_DEBUG
,
817 PADS_FUNCTION_SELECT2
, 20, 0x3),
818 MFIO_MUX_PIN_GROUP(87, SYS_PLL_LOCK
, DREQ2
, SOCIF_DEBUG
,
819 PADS_FUNCTION_SELECT2
, 22, 0x3),
820 MFIO_MUX_PIN_GROUP(88, WIFI_PLL_LOCK
, DREQ3
, SOCIF_DEBUG
,
821 PADS_FUNCTION_SELECT2
, 24, 0x3),
822 MFIO_MUX_PIN_GROUP(89, BT_PLL_LOCK
, DREQ4
, DREQ5
,
823 PADS_FUNCTION_SELECT2
, 26, 0x3),
824 PIN_GROUP(TCK
, "tck"),
825 PIN_GROUP(TRSTN
, "trstn"),
826 PIN_GROUP(TDI
, "tdi"),
827 PIN_GROUP(TMS
, "tms"),
828 PIN_GROUP(TDO
, "tdo"),
829 PIN_GROUP(JTAG_COMPLY
, "jtag_comply"),
830 PIN_GROUP(SAFE_MODE
, "safe_mode"),
831 PIN_GROUP(POR_DISABLE
, "por_disable"),
832 PIN_GROUP(RESETN
, "resetn"),
835 static inline u32
pctl_readl(struct pistachio_pinctrl
*pctl
, u32 reg
)
837 return readl(pctl
->base
+ reg
);
840 static inline void pctl_writel(struct pistachio_pinctrl
*pctl
, u32 val
, u32 reg
)
842 writel(val
, pctl
->base
+ reg
);
845 static inline struct pistachio_gpio_bank
*irqd_to_bank(struct irq_data
*d
)
847 return gpiochip_get_data(irq_data_get_irq_chip_data(d
));
850 static inline u32
gpio_readl(struct pistachio_gpio_bank
*bank
, u32 reg
)
852 return readl(bank
->base
+ reg
);
855 static inline void gpio_writel(struct pistachio_gpio_bank
*bank
, u32 val
,
858 writel(val
, bank
->base
+ reg
);
861 static inline void gpio_mask_writel(struct pistachio_gpio_bank
*bank
,
862 u32 reg
, unsigned int bit
, u32 val
)
865 * For most of the GPIO registers, bit 16 + X must be set in order to
868 gpio_writel(bank
, (0x10000 | val
) << bit
, reg
);
871 static inline void gpio_enable(struct pistachio_gpio_bank
*bank
,
874 gpio_mask_writel(bank
, GPIO_BIT_EN
, offset
, 1);
877 static inline void gpio_disable(struct pistachio_gpio_bank
*bank
,
880 gpio_mask_writel(bank
, GPIO_BIT_EN
, offset
, 0);
883 static int pistachio_pinctrl_get_groups_count(struct pinctrl_dev
*pctldev
)
885 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
887 return pctl
->ngroups
;
890 static const char *pistachio_pinctrl_get_group_name(struct pinctrl_dev
*pctldev
,
893 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
895 return pctl
->groups
[group
].name
;
898 static int pistachio_pinctrl_get_group_pins(struct pinctrl_dev
*pctldev
,
900 const unsigned **pins
,
903 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
905 *pins
= &pctl
->groups
[group
].pin
;
911 static const struct pinctrl_ops pistachio_pinctrl_ops
= {
912 .get_groups_count
= pistachio_pinctrl_get_groups_count
,
913 .get_group_name
= pistachio_pinctrl_get_group_name
,
914 .get_group_pins
= pistachio_pinctrl_get_group_pins
,
915 .dt_node_to_map
= pinconf_generic_dt_node_to_map_pin
,
916 .dt_free_map
= pinctrl_utils_free_map
,
919 static int pistachio_pinmux_get_functions_count(struct pinctrl_dev
*pctldev
)
921 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
923 return pctl
->nfunctions
;
927 pistachio_pinmux_get_function_name(struct pinctrl_dev
*pctldev
, unsigned func
)
929 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
931 return pctl
->functions
[func
].name
;
934 static int pistachio_pinmux_get_function_groups(struct pinctrl_dev
*pctldev
,
936 const char * const **groups
,
937 unsigned * const num_groups
)
939 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
941 *groups
= pctl
->functions
[func
].groups
;
942 *num_groups
= pctl
->functions
[func
].ngroups
;
947 static int pistachio_pinmux_enable(struct pinctrl_dev
*pctldev
,
948 unsigned func
, unsigned group
)
950 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
951 const struct pistachio_pin_group
*pg
= &pctl
->groups
[group
];
952 const struct pistachio_function
*pf
= &pctl
->functions
[func
];
953 struct pinctrl_gpio_range
*range
;
957 if (pg
->mux_reg
> 0) {
958 for (i
= 0; i
< ARRAY_SIZE(pg
->mux_option
); i
++) {
959 if (pg
->mux_option
[i
] == func
)
962 if (i
== ARRAY_SIZE(pg
->mux_option
)) {
963 dev_err(pctl
->dev
, "Cannot mux pin %u to function %u\n",
968 val
= pctl_readl(pctl
, pg
->mux_reg
);
969 val
&= ~(pg
->mux_mask
<< pg
->mux_shift
);
970 val
|= i
<< pg
->mux_shift
;
971 pctl_writel(pctl
, val
, pg
->mux_reg
);
974 for (i
= 0; i
< pf
->nscenarios
; i
++) {
975 if (pf
->scenarios
[i
] == group
)
978 if (WARN_ON(i
== pf
->nscenarios
))
981 val
= pctl_readl(pctl
, pf
->scenario_reg
);
982 val
&= ~(pf
->scenario_mask
<< pf
->scenario_shift
);
983 val
|= i
<< pf
->scenario_shift
;
984 pctl_writel(pctl
, val
, pf
->scenario_reg
);
988 range
= pinctrl_find_gpio_range_from_pin(pctl
->pctldev
, pg
->pin
);
990 gpio_disable(gpiochip_get_data(range
->gc
), pg
->pin
- range
->pin_base
);
995 static const struct pinmux_ops pistachio_pinmux_ops
= {
996 .get_functions_count
= pistachio_pinmux_get_functions_count
,
997 .get_function_name
= pistachio_pinmux_get_function_name
,
998 .get_function_groups
= pistachio_pinmux_get_function_groups
,
999 .set_mux
= pistachio_pinmux_enable
,
1002 static int pistachio_pinconf_get(struct pinctrl_dev
*pctldev
, unsigned pin
,
1003 unsigned long *config
)
1005 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
1006 enum pin_config_param param
= pinconf_to_config_param(*config
);
1010 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
1011 val
= pctl_readl(pctl
, PADS_SCHMITT_EN_REG(pin
));
1012 arg
= !!(val
& PADS_SCHMITT_EN_BIT(pin
));
1014 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE
:
1015 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
)) >>
1016 PADS_PU_PD_SHIFT(pin
);
1017 arg
= (val
& PADS_PU_PD_MASK
) == PADS_PU_PD_HIGHZ
;
1019 case PIN_CONFIG_BIAS_PULL_UP
:
1020 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
)) >>
1021 PADS_PU_PD_SHIFT(pin
);
1022 arg
= (val
& PADS_PU_PD_MASK
) == PADS_PU_PD_UP
;
1024 case PIN_CONFIG_BIAS_PULL_DOWN
:
1025 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
)) >>
1026 PADS_PU_PD_SHIFT(pin
);
1027 arg
= (val
& PADS_PU_PD_MASK
) == PADS_PU_PD_DOWN
;
1029 case PIN_CONFIG_BIAS_BUS_HOLD
:
1030 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
)) >>
1031 PADS_PU_PD_SHIFT(pin
);
1032 arg
= (val
& PADS_PU_PD_MASK
) == PADS_PU_PD_BUS
;
1034 case PIN_CONFIG_SLEW_RATE
:
1035 val
= pctl_readl(pctl
, PADS_SLEW_RATE_REG(pin
));
1036 arg
= !!(val
& PADS_SLEW_RATE_BIT(pin
));
1038 case PIN_CONFIG_DRIVE_STRENGTH
:
1039 val
= pctl_readl(pctl
, PADS_DRIVE_STRENGTH_REG(pin
)) >>
1040 PADS_DRIVE_STRENGTH_SHIFT(pin
);
1041 switch (val
& PADS_DRIVE_STRENGTH_MASK
) {
1042 case PADS_DRIVE_STRENGTH_2MA
:
1045 case PADS_DRIVE_STRENGTH_4MA
:
1048 case PADS_DRIVE_STRENGTH_8MA
:
1051 case PADS_DRIVE_STRENGTH_12MA
:
1058 dev_dbg(pctl
->dev
, "Property %u not supported\n", param
);
1062 *config
= pinconf_to_config_packed(param
, arg
);
1067 static int pistachio_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned pin
,
1068 unsigned long *configs
, unsigned num_configs
)
1070 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
1071 enum pin_config_param param
;
1075 for (i
= 0; i
< num_configs
; i
++) {
1076 param
= pinconf_to_config_param(configs
[i
]);
1077 arg
= pinconf_to_config_argument(configs
[i
]);
1080 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
1081 val
= pctl_readl(pctl
, PADS_SCHMITT_EN_REG(pin
));
1083 val
|= PADS_SCHMITT_EN_BIT(pin
);
1085 val
&= ~PADS_SCHMITT_EN_BIT(pin
);
1086 pctl_writel(pctl
, val
, PADS_SCHMITT_EN_REG(pin
));
1088 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE
:
1089 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1090 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1091 val
|= PADS_PU_PD_HIGHZ
<< PADS_PU_PD_SHIFT(pin
);
1092 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1094 case PIN_CONFIG_BIAS_PULL_UP
:
1095 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1096 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1097 val
|= PADS_PU_PD_UP
<< PADS_PU_PD_SHIFT(pin
);
1098 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1100 case PIN_CONFIG_BIAS_PULL_DOWN
:
1101 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1102 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1103 val
|= PADS_PU_PD_DOWN
<< PADS_PU_PD_SHIFT(pin
);
1104 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1106 case PIN_CONFIG_BIAS_BUS_HOLD
:
1107 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1108 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1109 val
|= PADS_PU_PD_BUS
<< PADS_PU_PD_SHIFT(pin
);
1110 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1112 case PIN_CONFIG_SLEW_RATE
:
1113 val
= pctl_readl(pctl
, PADS_SLEW_RATE_REG(pin
));
1115 val
|= PADS_SLEW_RATE_BIT(pin
);
1117 val
&= ~PADS_SLEW_RATE_BIT(pin
);
1118 pctl_writel(pctl
, val
, PADS_SLEW_RATE_REG(pin
));
1120 case PIN_CONFIG_DRIVE_STRENGTH
:
1121 val
= pctl_readl(pctl
, PADS_DRIVE_STRENGTH_REG(pin
));
1122 val
&= ~(PADS_DRIVE_STRENGTH_MASK
<<
1123 PADS_DRIVE_STRENGTH_SHIFT(pin
));
1126 drv
= PADS_DRIVE_STRENGTH_2MA
;
1129 drv
= PADS_DRIVE_STRENGTH_4MA
;
1132 drv
= PADS_DRIVE_STRENGTH_8MA
;
1135 drv
= PADS_DRIVE_STRENGTH_12MA
;
1139 "Drive strength %umA not supported\n",
1143 val
|= drv
<< PADS_DRIVE_STRENGTH_SHIFT(pin
);
1144 pctl_writel(pctl
, val
, PADS_DRIVE_STRENGTH_REG(pin
));
1147 dev_err(pctl
->dev
, "Property %u not supported\n",
1156 static const struct pinconf_ops pistachio_pinconf_ops
= {
1157 .pin_config_get
= pistachio_pinconf_get
,
1158 .pin_config_set
= pistachio_pinconf_set
,
1162 static struct pinctrl_desc pistachio_pinctrl_desc
= {
1163 .name
= "pistachio-pinctrl",
1164 .pctlops
= &pistachio_pinctrl_ops
,
1165 .pmxops
= &pistachio_pinmux_ops
,
1166 .confops
= &pistachio_pinconf_ops
,
1169 static int pistachio_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
1171 struct pistachio_gpio_bank
*bank
= gpiochip_get_data(chip
);
1173 return !(gpio_readl(bank
, GPIO_OUTPUT_EN
) & BIT(offset
));
1176 static int pistachio_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
1178 struct pistachio_gpio_bank
*bank
= gpiochip_get_data(chip
);
1181 if (gpio_readl(bank
, GPIO_OUTPUT_EN
) & BIT(offset
))
1186 return !!(gpio_readl(bank
, reg
) & BIT(offset
));
1189 static void pistachio_gpio_set(struct gpio_chip
*chip
, unsigned offset
,
1192 struct pistachio_gpio_bank
*bank
= gpiochip_get_data(chip
);
1194 gpio_mask_writel(bank
, GPIO_OUTPUT
, offset
, !!value
);
1197 static int pistachio_gpio_direction_input(struct gpio_chip
*chip
,
1200 struct pistachio_gpio_bank
*bank
= gpiochip_get_data(chip
);
1202 gpio_mask_writel(bank
, GPIO_OUTPUT_EN
, offset
, 0);
1203 gpio_enable(bank
, offset
);
1208 static int pistachio_gpio_direction_output(struct gpio_chip
*chip
,
1209 unsigned offset
, int value
)
1211 struct pistachio_gpio_bank
*bank
= gpiochip_get_data(chip
);
1213 pistachio_gpio_set(chip
, offset
, value
);
1214 gpio_mask_writel(bank
, GPIO_OUTPUT_EN
, offset
, 1);
1215 gpio_enable(bank
, offset
);
1220 static void pistachio_gpio_irq_ack(struct irq_data
*data
)
1222 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1224 gpio_mask_writel(bank
, GPIO_INTERRUPT_STATUS
, data
->hwirq
, 0);
1227 static void pistachio_gpio_irq_mask(struct irq_data
*data
)
1229 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1231 gpio_mask_writel(bank
, GPIO_INTERRUPT_EN
, data
->hwirq
, 0);
1234 static void pistachio_gpio_irq_unmask(struct irq_data
*data
)
1236 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1238 gpio_mask_writel(bank
, GPIO_INTERRUPT_EN
, data
->hwirq
, 1);
1241 static unsigned int pistachio_gpio_irq_startup(struct irq_data
*data
)
1243 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(data
);
1245 pistachio_gpio_direction_input(chip
, data
->hwirq
);
1246 pistachio_gpio_irq_unmask(data
);
1251 static int pistachio_gpio_irq_set_type(struct irq_data
*data
, unsigned int type
)
1253 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1255 switch (type
& IRQ_TYPE_SENSE_MASK
) {
1256 case IRQ_TYPE_EDGE_RISING
:
1257 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 1);
1258 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1259 GPIO_INTERRUPT_TYPE_EDGE
);
1260 gpio_mask_writel(bank
, GPIO_INTERRUPT_EDGE
, data
->hwirq
,
1261 GPIO_INTERRUPT_EDGE_SINGLE
);
1263 case IRQ_TYPE_EDGE_FALLING
:
1264 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 0);
1265 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1266 GPIO_INTERRUPT_TYPE_EDGE
);
1267 gpio_mask_writel(bank
, GPIO_INTERRUPT_EDGE
, data
->hwirq
,
1268 GPIO_INTERRUPT_EDGE_SINGLE
);
1270 case IRQ_TYPE_EDGE_BOTH
:
1271 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1272 GPIO_INTERRUPT_TYPE_EDGE
);
1273 gpio_mask_writel(bank
, GPIO_INTERRUPT_EDGE
, data
->hwirq
,
1274 GPIO_INTERRUPT_EDGE_DUAL
);
1276 case IRQ_TYPE_LEVEL_HIGH
:
1277 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 1);
1278 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1279 GPIO_INTERRUPT_TYPE_LEVEL
);
1281 case IRQ_TYPE_LEVEL_LOW
:
1282 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 0);
1283 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1284 GPIO_INTERRUPT_TYPE_LEVEL
);
1290 if (type
& IRQ_TYPE_LEVEL_MASK
)
1291 irq_set_handler_locked(data
, handle_level_irq
);
1293 irq_set_handler_locked(data
, handle_edge_irq
);
1298 static void pistachio_gpio_irq_handler(struct irq_desc
*desc
)
1300 struct gpio_chip
*gc
= irq_desc_get_handler_data(desc
);
1301 struct pistachio_gpio_bank
*bank
= gpiochip_get_data(gc
);
1302 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
1303 unsigned long pending
;
1306 chained_irq_enter(chip
, desc
);
1307 pending
= gpio_readl(bank
, GPIO_INTERRUPT_STATUS
) &
1308 gpio_readl(bank
, GPIO_INTERRUPT_EN
);
1309 for_each_set_bit(pin
, &pending
, 16)
1310 generic_handle_irq(irq_linear_revmap(gc
->irq
.domain
, pin
));
1311 chained_irq_exit(chip
, desc
);
1314 #define GPIO_BANK(_bank, _pin_base, _npins) \
1316 .pin_base = _pin_base, \
1319 .label = "GPIO" #_bank, \
1320 .request = gpiochip_generic_request, \
1321 .free = gpiochip_generic_free, \
1322 .get_direction = pistachio_gpio_get_direction, \
1323 .direction_input = pistachio_gpio_direction_input, \
1324 .direction_output = pistachio_gpio_direction_output, \
1325 .get = pistachio_gpio_get, \
1326 .set = pistachio_gpio_set, \
1327 .base = _pin_base, \
1331 .name = "GPIO" #_bank, \
1332 .irq_startup = pistachio_gpio_irq_startup, \
1333 .irq_ack = pistachio_gpio_irq_ack, \
1334 .irq_mask = pistachio_gpio_irq_mask, \
1335 .irq_unmask = pistachio_gpio_irq_unmask, \
1336 .irq_set_type = pistachio_gpio_irq_set_type, \
1340 static struct pistachio_gpio_bank pistachio_gpio_banks
[] = {
1341 GPIO_BANK(0, PISTACHIO_PIN_MFIO(0), 16),
1342 GPIO_BANK(1, PISTACHIO_PIN_MFIO(16), 16),
1343 GPIO_BANK(2, PISTACHIO_PIN_MFIO(32), 16),
1344 GPIO_BANK(3, PISTACHIO_PIN_MFIO(48), 16),
1345 GPIO_BANK(4, PISTACHIO_PIN_MFIO(64), 16),
1346 GPIO_BANK(5, PISTACHIO_PIN_MFIO(80), 10),
1349 static int pistachio_gpio_register(struct pistachio_pinctrl
*pctl
)
1351 struct device_node
*node
= pctl
->dev
->of_node
;
1352 struct pistachio_gpio_bank
*bank
;
1356 for (i
= 0; i
< pctl
->nbanks
; i
++) {
1357 char child_name
[sizeof("gpioXX")];
1358 struct device_node
*child
;
1360 snprintf(child_name
, sizeof(child_name
), "gpio%d", i
);
1361 child
= of_get_child_by_name(node
, child_name
);
1363 dev_err(pctl
->dev
, "No node for bank %u\n", i
);
1368 if (!of_find_property(child
, "gpio-controller", NULL
)) {
1370 "No gpio-controller property for bank %u\n", i
);
1375 irq
= irq_of_parse_and_map(child
, 0);
1377 dev_err(pctl
->dev
, "No IRQ for bank %u: %d\n", i
, irq
);
1382 bank
= &pctl
->gpio_banks
[i
];
1384 bank
->base
= pctl
->base
+ GPIO_BANK_BASE(i
);
1386 bank
->gpio_chip
.parent
= pctl
->dev
;
1387 bank
->gpio_chip
.of_node
= child
;
1388 ret
= gpiochip_add_data(&bank
->gpio_chip
, bank
);
1390 dev_err(pctl
->dev
, "Failed to add GPIO chip %u: %d\n",
1395 ret
= gpiochip_irqchip_add(&bank
->gpio_chip
, &bank
->irq_chip
,
1396 0, handle_level_irq
, IRQ_TYPE_NONE
);
1398 dev_err(pctl
->dev
, "Failed to add IRQ chip %u: %d\n",
1400 gpiochip_remove(&bank
->gpio_chip
);
1403 gpiochip_set_chained_irqchip(&bank
->gpio_chip
, &bank
->irq_chip
,
1404 irq
, pistachio_gpio_irq_handler
);
1406 ret
= gpiochip_add_pin_range(&bank
->gpio_chip
,
1407 dev_name(pctl
->dev
), 0,
1408 bank
->pin_base
, bank
->npins
);
1410 dev_err(pctl
->dev
, "Failed to add GPIO range %u: %d\n",
1412 gpiochip_remove(&bank
->gpio_chip
);
1419 for (; i
> 0; i
--) {
1420 bank
= &pctl
->gpio_banks
[i
- 1];
1421 gpiochip_remove(&bank
->gpio_chip
);
1426 static const struct of_device_id pistachio_pinctrl_of_match
[] = {
1427 { .compatible
= "img,pistachio-system-pinctrl", },
1431 static int pistachio_pinctrl_probe(struct platform_device
*pdev
)
1433 struct pistachio_pinctrl
*pctl
;
1434 struct resource
*res
;
1436 pctl
= devm_kzalloc(&pdev
->dev
, sizeof(*pctl
), GFP_KERNEL
);
1439 pctl
->dev
= &pdev
->dev
;
1440 dev_set_drvdata(&pdev
->dev
, pctl
);
1442 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1443 pctl
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
1444 if (IS_ERR(pctl
->base
))
1445 return PTR_ERR(pctl
->base
);
1447 pctl
->pins
= pistachio_pins
;
1448 pctl
->npins
= ARRAY_SIZE(pistachio_pins
);
1449 pctl
->functions
= pistachio_functions
;
1450 pctl
->nfunctions
= ARRAY_SIZE(pistachio_functions
);
1451 pctl
->groups
= pistachio_groups
;
1452 pctl
->ngroups
= ARRAY_SIZE(pistachio_groups
);
1453 pctl
->gpio_banks
= pistachio_gpio_banks
;
1454 pctl
->nbanks
= ARRAY_SIZE(pistachio_gpio_banks
);
1456 pistachio_pinctrl_desc
.pins
= pctl
->pins
;
1457 pistachio_pinctrl_desc
.npins
= pctl
->npins
;
1459 pctl
->pctldev
= devm_pinctrl_register(&pdev
->dev
, &pistachio_pinctrl_desc
,
1461 if (IS_ERR(pctl
->pctldev
)) {
1462 dev_err(&pdev
->dev
, "Failed to register pinctrl device\n");
1463 return PTR_ERR(pctl
->pctldev
);
1466 return pistachio_gpio_register(pctl
);
1469 static struct platform_driver pistachio_pinctrl_driver
= {
1471 .name
= "pistachio-pinctrl",
1472 .of_match_table
= pistachio_pinctrl_of_match
,
1473 .suppress_bind_attrs
= true,
1475 .probe
= pistachio_pinctrl_probe
,
1478 static int __init
pistachio_pinctrl_register(void)
1480 return platform_driver_register(&pistachio_pinctrl_driver
);
1482 arch_initcall(pistachio_pinctrl_register
);