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
*gc_to_bank(struct gpio_chip
*gc
)
847 return container_of(gc
, struct pistachio_gpio_bank
, gpio_chip
);
850 static inline struct pistachio_gpio_bank
*irqd_to_bank(struct irq_data
*d
)
852 return gc_to_bank(irq_data_get_irq_chip_data(d
));
855 static inline u32
gpio_readl(struct pistachio_gpio_bank
*bank
, u32 reg
)
857 return readl(bank
->base
+ reg
);
860 static inline void gpio_writel(struct pistachio_gpio_bank
*bank
, u32 val
,
863 writel(val
, bank
->base
+ reg
);
866 static inline void gpio_mask_writel(struct pistachio_gpio_bank
*bank
,
867 u32 reg
, unsigned int bit
, u32 val
)
870 * For most of the GPIO registers, bit 16 + X must be set in order to
873 gpio_writel(bank
, (0x10000 | val
) << bit
, reg
);
876 static inline void gpio_enable(struct pistachio_gpio_bank
*bank
,
879 gpio_mask_writel(bank
, GPIO_BIT_EN
, offset
, 1);
882 static inline void gpio_disable(struct pistachio_gpio_bank
*bank
,
885 gpio_mask_writel(bank
, GPIO_BIT_EN
, offset
, 0);
888 static int pistachio_pinctrl_get_groups_count(struct pinctrl_dev
*pctldev
)
890 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
892 return pctl
->ngroups
;
895 static const char *pistachio_pinctrl_get_group_name(struct pinctrl_dev
*pctldev
,
898 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
900 return pctl
->groups
[group
].name
;
903 static int pistachio_pinctrl_get_group_pins(struct pinctrl_dev
*pctldev
,
905 const unsigned **pins
,
908 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
910 *pins
= &pctl
->groups
[group
].pin
;
916 static const struct pinctrl_ops pistachio_pinctrl_ops
= {
917 .get_groups_count
= pistachio_pinctrl_get_groups_count
,
918 .get_group_name
= pistachio_pinctrl_get_group_name
,
919 .get_group_pins
= pistachio_pinctrl_get_group_pins
,
920 .dt_node_to_map
= pinconf_generic_dt_node_to_map_pin
,
921 .dt_free_map
= pinctrl_utils_dt_free_map
,
924 static int pistachio_pinmux_get_functions_count(struct pinctrl_dev
*pctldev
)
926 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
928 return pctl
->nfunctions
;
932 pistachio_pinmux_get_function_name(struct pinctrl_dev
*pctldev
, unsigned func
)
934 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
936 return pctl
->functions
[func
].name
;
939 static int pistachio_pinmux_get_function_groups(struct pinctrl_dev
*pctldev
,
941 const char * const **groups
,
942 unsigned * const num_groups
)
944 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
946 *groups
= pctl
->functions
[func
].groups
;
947 *num_groups
= pctl
->functions
[func
].ngroups
;
952 static int pistachio_pinmux_enable(struct pinctrl_dev
*pctldev
,
953 unsigned func
, unsigned group
)
955 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
956 const struct pistachio_pin_group
*pg
= &pctl
->groups
[group
];
957 const struct pistachio_function
*pf
= &pctl
->functions
[func
];
958 struct pinctrl_gpio_range
*range
;
962 if (pg
->mux_reg
> 0) {
963 for (i
= 0; i
< ARRAY_SIZE(pg
->mux_option
); i
++) {
964 if (pg
->mux_option
[i
] == func
)
967 if (i
== ARRAY_SIZE(pg
->mux_option
)) {
968 dev_err(pctl
->dev
, "Cannot mux pin %u to function %u\n",
973 val
= pctl_readl(pctl
, pg
->mux_reg
);
974 val
&= ~(pg
->mux_mask
<< pg
->mux_shift
);
975 val
|= i
<< pg
->mux_shift
;
976 pctl_writel(pctl
, val
, pg
->mux_reg
);
979 for (i
= 0; i
< pf
->nscenarios
; i
++) {
980 if (pf
->scenarios
[i
] == group
)
983 if (WARN_ON(i
== pf
->nscenarios
))
986 val
= pctl_readl(pctl
, pf
->scenario_reg
);
987 val
&= ~(pf
->scenario_mask
<< pf
->scenario_shift
);
988 val
|= i
<< pf
->scenario_shift
;
989 pctl_writel(pctl
, val
, pf
->scenario_reg
);
993 range
= pinctrl_find_gpio_range_from_pin(pctl
->pctldev
, pg
->pin
);
995 gpio_disable(gc_to_bank(range
->gc
), pg
->pin
- range
->pin_base
);
1000 static const struct pinmux_ops pistachio_pinmux_ops
= {
1001 .get_functions_count
= pistachio_pinmux_get_functions_count
,
1002 .get_function_name
= pistachio_pinmux_get_function_name
,
1003 .get_function_groups
= pistachio_pinmux_get_function_groups
,
1004 .set_mux
= pistachio_pinmux_enable
,
1007 static int pistachio_pinconf_get(struct pinctrl_dev
*pctldev
, unsigned pin
,
1008 unsigned long *config
)
1010 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
1011 enum pin_config_param param
= pinconf_to_config_param(*config
);
1015 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
1016 val
= pctl_readl(pctl
, PADS_SCHMITT_EN_REG(pin
));
1017 arg
= !!(val
& PADS_SCHMITT_EN_BIT(pin
));
1019 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE
:
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_HIGHZ
;
1024 case PIN_CONFIG_BIAS_PULL_UP
:
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_UP
;
1029 case PIN_CONFIG_BIAS_PULL_DOWN
:
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_DOWN
;
1034 case PIN_CONFIG_BIAS_BUS_HOLD
:
1035 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
)) >>
1036 PADS_PU_PD_SHIFT(pin
);
1037 arg
= (val
& PADS_PU_PD_MASK
) == PADS_PU_PD_BUS
;
1039 case PIN_CONFIG_SLEW_RATE
:
1040 val
= pctl_readl(pctl
, PADS_SLEW_RATE_REG(pin
));
1041 arg
= !!(val
& PADS_SLEW_RATE_BIT(pin
));
1043 case PIN_CONFIG_DRIVE_STRENGTH
:
1044 val
= pctl_readl(pctl
, PADS_DRIVE_STRENGTH_REG(pin
)) >>
1045 PADS_DRIVE_STRENGTH_SHIFT(pin
);
1046 switch (val
& PADS_DRIVE_STRENGTH_MASK
) {
1047 case PADS_DRIVE_STRENGTH_2MA
:
1050 case PADS_DRIVE_STRENGTH_4MA
:
1053 case PADS_DRIVE_STRENGTH_8MA
:
1056 case PADS_DRIVE_STRENGTH_12MA
:
1063 dev_dbg(pctl
->dev
, "Property %u not supported\n", param
);
1067 *config
= pinconf_to_config_packed(param
, arg
);
1072 static int pistachio_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned pin
,
1073 unsigned long *configs
, unsigned num_configs
)
1075 struct pistachio_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
1076 enum pin_config_param param
;
1080 for (i
= 0; i
< num_configs
; i
++) {
1081 param
= pinconf_to_config_param(configs
[i
]);
1082 arg
= pinconf_to_config_argument(configs
[i
]);
1085 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
1086 val
= pctl_readl(pctl
, PADS_SCHMITT_EN_REG(pin
));
1088 val
|= PADS_SCHMITT_EN_BIT(pin
);
1090 val
&= ~PADS_SCHMITT_EN_BIT(pin
);
1091 pctl_writel(pctl
, val
, PADS_SCHMITT_EN_REG(pin
));
1093 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE
:
1094 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1095 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1096 val
|= PADS_PU_PD_HIGHZ
<< PADS_PU_PD_SHIFT(pin
);
1097 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1099 case PIN_CONFIG_BIAS_PULL_UP
:
1100 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1101 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1102 val
|= PADS_PU_PD_UP
<< PADS_PU_PD_SHIFT(pin
);
1103 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1105 case PIN_CONFIG_BIAS_PULL_DOWN
:
1106 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1107 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1108 val
|= PADS_PU_PD_DOWN
<< PADS_PU_PD_SHIFT(pin
);
1109 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1111 case PIN_CONFIG_BIAS_BUS_HOLD
:
1112 val
= pctl_readl(pctl
, PADS_PU_PD_REG(pin
));
1113 val
&= ~(PADS_PU_PD_MASK
<< PADS_PU_PD_SHIFT(pin
));
1114 val
|= PADS_PU_PD_BUS
<< PADS_PU_PD_SHIFT(pin
);
1115 pctl_writel(pctl
, val
, PADS_PU_PD_REG(pin
));
1117 case PIN_CONFIG_SLEW_RATE
:
1118 val
= pctl_readl(pctl
, PADS_SLEW_RATE_REG(pin
));
1120 val
|= PADS_SLEW_RATE_BIT(pin
);
1122 val
&= ~PADS_SLEW_RATE_BIT(pin
);
1123 pctl_writel(pctl
, val
, PADS_SLEW_RATE_REG(pin
));
1125 case PIN_CONFIG_DRIVE_STRENGTH
:
1126 val
= pctl_readl(pctl
, PADS_DRIVE_STRENGTH_REG(pin
));
1127 val
&= ~(PADS_DRIVE_STRENGTH_MASK
<<
1128 PADS_DRIVE_STRENGTH_SHIFT(pin
));
1131 drv
= PADS_DRIVE_STRENGTH_2MA
;
1134 drv
= PADS_DRIVE_STRENGTH_4MA
;
1137 drv
= PADS_DRIVE_STRENGTH_8MA
;
1140 drv
= PADS_DRIVE_STRENGTH_12MA
;
1144 "Drive strength %umA not supported\n",
1148 val
|= drv
<< PADS_DRIVE_STRENGTH_SHIFT(pin
);
1149 pctl_writel(pctl
, val
, PADS_DRIVE_STRENGTH_REG(pin
));
1152 dev_err(pctl
->dev
, "Property %u not supported\n",
1161 static const struct pinconf_ops pistachio_pinconf_ops
= {
1162 .pin_config_get
= pistachio_pinconf_get
,
1163 .pin_config_set
= pistachio_pinconf_set
,
1167 static struct pinctrl_desc pistachio_pinctrl_desc
= {
1168 .name
= "pistachio-pinctrl",
1169 .pctlops
= &pistachio_pinctrl_ops
,
1170 .pmxops
= &pistachio_pinmux_ops
,
1171 .confops
= &pistachio_pinconf_ops
,
1174 static int pistachio_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
1176 struct pistachio_gpio_bank
*bank
= gc_to_bank(chip
);
1178 return !(gpio_readl(bank
, GPIO_OUTPUT_EN
) & BIT(offset
));
1181 static int pistachio_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
1183 struct pistachio_gpio_bank
*bank
= gc_to_bank(chip
);
1186 if (gpio_readl(bank
, GPIO_OUTPUT_EN
) & BIT(offset
))
1191 return !!(gpio_readl(bank
, reg
) & BIT(offset
));
1194 static void pistachio_gpio_set(struct gpio_chip
*chip
, unsigned offset
,
1197 struct pistachio_gpio_bank
*bank
= gc_to_bank(chip
);
1199 gpio_mask_writel(bank
, GPIO_OUTPUT
, offset
, !!value
);
1202 static int pistachio_gpio_direction_input(struct gpio_chip
*chip
,
1205 struct pistachio_gpio_bank
*bank
= gc_to_bank(chip
);
1207 gpio_mask_writel(bank
, GPIO_OUTPUT_EN
, offset
, 0);
1208 gpio_enable(bank
, offset
);
1213 static int pistachio_gpio_direction_output(struct gpio_chip
*chip
,
1214 unsigned offset
, int value
)
1216 struct pistachio_gpio_bank
*bank
= gc_to_bank(chip
);
1218 pistachio_gpio_set(chip
, offset
, value
);
1219 gpio_mask_writel(bank
, GPIO_OUTPUT_EN
, offset
, 1);
1220 gpio_enable(bank
, offset
);
1225 static void pistachio_gpio_irq_ack(struct irq_data
*data
)
1227 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1229 gpio_mask_writel(bank
, GPIO_INTERRUPT_STATUS
, data
->hwirq
, 0);
1232 static void pistachio_gpio_irq_mask(struct irq_data
*data
)
1234 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1236 gpio_mask_writel(bank
, GPIO_INTERRUPT_EN
, data
->hwirq
, 0);
1239 static void pistachio_gpio_irq_unmask(struct irq_data
*data
)
1241 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1243 gpio_mask_writel(bank
, GPIO_INTERRUPT_EN
, data
->hwirq
, 1);
1246 static unsigned int pistachio_gpio_irq_startup(struct irq_data
*data
)
1248 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(data
);
1250 pistachio_gpio_direction_input(chip
, data
->hwirq
);
1251 pistachio_gpio_irq_unmask(data
);
1256 static int pistachio_gpio_irq_set_type(struct irq_data
*data
, unsigned int type
)
1258 struct pistachio_gpio_bank
*bank
= irqd_to_bank(data
);
1260 switch (type
& IRQ_TYPE_SENSE_MASK
) {
1261 case IRQ_TYPE_EDGE_RISING
:
1262 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 1);
1263 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1264 GPIO_INTERRUPT_TYPE_EDGE
);
1265 gpio_mask_writel(bank
, GPIO_INTERRUPT_EDGE
, data
->hwirq
,
1266 GPIO_INTERRUPT_EDGE_SINGLE
);
1268 case IRQ_TYPE_EDGE_FALLING
:
1269 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 0);
1270 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1271 GPIO_INTERRUPT_TYPE_EDGE
);
1272 gpio_mask_writel(bank
, GPIO_INTERRUPT_EDGE
, data
->hwirq
,
1273 GPIO_INTERRUPT_EDGE_SINGLE
);
1275 case IRQ_TYPE_EDGE_BOTH
:
1276 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1277 GPIO_INTERRUPT_TYPE_EDGE
);
1278 gpio_mask_writel(bank
, GPIO_INTERRUPT_EDGE
, data
->hwirq
,
1279 GPIO_INTERRUPT_EDGE_DUAL
);
1281 case IRQ_TYPE_LEVEL_HIGH
:
1282 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 1);
1283 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1284 GPIO_INTERRUPT_TYPE_LEVEL
);
1286 case IRQ_TYPE_LEVEL_LOW
:
1287 gpio_mask_writel(bank
, GPIO_INPUT_POLARITY
, data
->hwirq
, 0);
1288 gpio_mask_writel(bank
, GPIO_INTERRUPT_TYPE
, data
->hwirq
,
1289 GPIO_INTERRUPT_TYPE_LEVEL
);
1295 if (type
& IRQ_TYPE_LEVEL_MASK
)
1296 irq_set_handler_locked(data
, handle_level_irq
);
1298 irq_set_handler_locked(data
, handle_edge_irq
);
1303 static void pistachio_gpio_irq_handler(struct irq_desc
*desc
)
1305 struct gpio_chip
*gc
= irq_desc_get_handler_data(desc
);
1306 struct pistachio_gpio_bank
*bank
= gc_to_bank(gc
);
1307 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
1308 unsigned long pending
;
1311 chained_irq_enter(chip
, desc
);
1312 pending
= gpio_readl(bank
, GPIO_INTERRUPT_STATUS
) &
1313 gpio_readl(bank
, GPIO_INTERRUPT_EN
);
1314 for_each_set_bit(pin
, &pending
, 16)
1315 generic_handle_irq(irq_linear_revmap(gc
->irqdomain
, pin
));
1316 chained_irq_exit(chip
, desc
);
1319 #define GPIO_BANK(_bank, _pin_base, _npins) \
1321 .pin_base = _pin_base, \
1324 .label = "GPIO" #_bank, \
1325 .request = gpiochip_generic_request, \
1326 .free = gpiochip_generic_free, \
1327 .get_direction = pistachio_gpio_get_direction, \
1328 .direction_input = pistachio_gpio_direction_input, \
1329 .direction_output = pistachio_gpio_direction_output, \
1330 .get = pistachio_gpio_get, \
1331 .set = pistachio_gpio_set, \
1332 .base = _pin_base, \
1336 .name = "GPIO" #_bank, \
1337 .irq_startup = pistachio_gpio_irq_startup, \
1338 .irq_ack = pistachio_gpio_irq_ack, \
1339 .irq_mask = pistachio_gpio_irq_mask, \
1340 .irq_unmask = pistachio_gpio_irq_unmask, \
1341 .irq_set_type = pistachio_gpio_irq_set_type, \
1345 static struct pistachio_gpio_bank pistachio_gpio_banks
[] = {
1346 GPIO_BANK(0, PISTACHIO_PIN_MFIO(0), 16),
1347 GPIO_BANK(1, PISTACHIO_PIN_MFIO(16), 16),
1348 GPIO_BANK(2, PISTACHIO_PIN_MFIO(32), 16),
1349 GPIO_BANK(3, PISTACHIO_PIN_MFIO(48), 16),
1350 GPIO_BANK(4, PISTACHIO_PIN_MFIO(64), 16),
1351 GPIO_BANK(5, PISTACHIO_PIN_MFIO(80), 10),
1354 static int pistachio_gpio_register(struct pistachio_pinctrl
*pctl
)
1356 struct device_node
*node
= pctl
->dev
->of_node
;
1357 struct pistachio_gpio_bank
*bank
;
1361 for (i
= 0; i
< pctl
->nbanks
; i
++) {
1362 char child_name
[sizeof("gpioXX")];
1363 struct device_node
*child
;
1365 snprintf(child_name
, sizeof(child_name
), "gpio%d", i
);
1366 child
= of_get_child_by_name(node
, child_name
);
1368 dev_err(pctl
->dev
, "No node for bank %u\n", i
);
1373 if (!of_find_property(child
, "gpio-controller", NULL
)) {
1375 "No gpio-controller property for bank %u\n", i
);
1380 irq
= irq_of_parse_and_map(child
, 0);
1382 dev_err(pctl
->dev
, "No IRQ for bank %u: %d\n", i
, irq
);
1387 bank
= &pctl
->gpio_banks
[i
];
1389 bank
->base
= pctl
->base
+ GPIO_BANK_BASE(i
);
1391 bank
->gpio_chip
.dev
= pctl
->dev
;
1392 bank
->gpio_chip
.of_node
= child
;
1393 ret
= gpiochip_add(&bank
->gpio_chip
);
1395 dev_err(pctl
->dev
, "Failed to add GPIO chip %u: %d\n",
1400 ret
= gpiochip_irqchip_add(&bank
->gpio_chip
, &bank
->irq_chip
,
1401 0, handle_level_irq
, IRQ_TYPE_NONE
);
1403 dev_err(pctl
->dev
, "Failed to add IRQ chip %u: %d\n",
1405 gpiochip_remove(&bank
->gpio_chip
);
1408 gpiochip_set_chained_irqchip(&bank
->gpio_chip
, &bank
->irq_chip
,
1409 irq
, pistachio_gpio_irq_handler
);
1411 ret
= gpiochip_add_pin_range(&bank
->gpio_chip
,
1412 dev_name(pctl
->dev
), 0,
1413 bank
->pin_base
, bank
->npins
);
1415 dev_err(pctl
->dev
, "Failed to add GPIO range %u: %d\n",
1417 gpiochip_remove(&bank
->gpio_chip
);
1424 for (; i
> 0; i
--) {
1425 bank
= &pctl
->gpio_banks
[i
- 1];
1426 gpiochip_remove(&bank
->gpio_chip
);
1431 static const struct of_device_id pistachio_pinctrl_of_match
[] = {
1432 { .compatible
= "img,pistachio-system-pinctrl", },
1436 static int pistachio_pinctrl_probe(struct platform_device
*pdev
)
1438 struct pistachio_pinctrl
*pctl
;
1439 struct resource
*res
;
1442 pctl
= devm_kzalloc(&pdev
->dev
, sizeof(*pctl
), GFP_KERNEL
);
1445 pctl
->dev
= &pdev
->dev
;
1446 dev_set_drvdata(&pdev
->dev
, pctl
);
1448 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1449 pctl
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
1450 if (IS_ERR(pctl
->base
))
1451 return PTR_ERR(pctl
->base
);
1453 pctl
->pins
= pistachio_pins
;
1454 pctl
->npins
= ARRAY_SIZE(pistachio_pins
);
1455 pctl
->functions
= pistachio_functions
;
1456 pctl
->nfunctions
= ARRAY_SIZE(pistachio_functions
);
1457 pctl
->groups
= pistachio_groups
;
1458 pctl
->ngroups
= ARRAY_SIZE(pistachio_groups
);
1459 pctl
->gpio_banks
= pistachio_gpio_banks
;
1460 pctl
->nbanks
= ARRAY_SIZE(pistachio_gpio_banks
);
1462 pistachio_pinctrl_desc
.pins
= pctl
->pins
;
1463 pistachio_pinctrl_desc
.npins
= pctl
->npins
;
1465 pctl
->pctldev
= pinctrl_register(&pistachio_pinctrl_desc
, &pdev
->dev
,
1467 if (IS_ERR(pctl
->pctldev
)) {
1468 dev_err(&pdev
->dev
, "Failed to register pinctrl device\n");
1469 return PTR_ERR(pctl
->pctldev
);
1472 ret
= pistachio_gpio_register(pctl
);
1474 pinctrl_unregister(pctl
->pctldev
);
1481 static struct platform_driver pistachio_pinctrl_driver
= {
1483 .name
= "pistachio-pinctrl",
1484 .of_match_table
= pistachio_pinctrl_of_match
,
1485 .suppress_bind_attrs
= true,
1487 .probe
= pistachio_pinctrl_probe
,
1490 static int __init
pistachio_pinctrl_register(void)
1492 return platform_driver_register(&pistachio_pinctrl_driver
);
1494 arch_initcall(pistachio_pinctrl_register
);