2 * Altera Arria10 DevKit System Resource MFD Driver
4 * Author: Thor Thayer <tthayer@opensource.altera.com>
6 * Copyright Intel Corporation (C) 2014-2016. All Rights Reserved
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
20 * SPI access for Altera Arria10 MAX5 System Resource Chip
25 #include <linux/mfd/altera-a10sr.h>
26 #include <linux/mfd/core.h>
27 #include <linux/init.h>
29 #include <linux/spi/spi.h>
31 static const struct mfd_cell altr_a10sr_subdev_info
[] = {
33 .name
= "altr_a10sr_gpio",
34 .of_compatible
= "altr,a10sr-gpio",
38 static bool altr_a10sr_reg_readable(struct device
*dev
, unsigned int reg
)
41 case ALTR_A10SR_VERSION_READ
:
42 case ALTR_A10SR_LED_REG
:
43 case ALTR_A10SR_PBDSW_REG
:
44 case ALTR_A10SR_PBDSW_IRQ_REG
:
45 case ALTR_A10SR_PWR_GOOD1_REG
:
46 case ALTR_A10SR_PWR_GOOD2_REG
:
47 case ALTR_A10SR_PWR_GOOD3_REG
:
48 case ALTR_A10SR_FMCAB_REG
:
49 case ALTR_A10SR_HPS_RST_REG
:
50 case ALTR_A10SR_USB_QSPI_REG
:
51 case ALTR_A10SR_SFPA_REG
:
52 case ALTR_A10SR_SFPB_REG
:
53 case ALTR_A10SR_I2C_M_REG
:
54 case ALTR_A10SR_WARM_RST_REG
:
55 case ALTR_A10SR_WR_KEY_REG
:
56 case ALTR_A10SR_PMBUS_REG
:
63 static bool altr_a10sr_reg_writeable(struct device
*dev
, unsigned int reg
)
66 case ALTR_A10SR_LED_REG
:
67 case ALTR_A10SR_PBDSW_IRQ_REG
:
68 case ALTR_A10SR_FMCAB_REG
:
69 case ALTR_A10SR_HPS_RST_REG
:
70 case ALTR_A10SR_USB_QSPI_REG
:
71 case ALTR_A10SR_SFPA_REG
:
72 case ALTR_A10SR_SFPB_REG
:
73 case ALTR_A10SR_WARM_RST_REG
:
74 case ALTR_A10SR_WR_KEY_REG
:
75 case ALTR_A10SR_PMBUS_REG
:
82 static bool altr_a10sr_reg_volatile(struct device
*dev
, unsigned int reg
)
85 case ALTR_A10SR_PBDSW_REG
:
86 case ALTR_A10SR_PBDSW_IRQ_REG
:
87 case ALTR_A10SR_PWR_GOOD1_REG
:
88 case ALTR_A10SR_PWR_GOOD2_REG
:
89 case ALTR_A10SR_PWR_GOOD3_REG
:
90 case ALTR_A10SR_HPS_RST_REG
:
91 case ALTR_A10SR_I2C_M_REG
:
92 case ALTR_A10SR_WARM_RST_REG
:
93 case ALTR_A10SR_WR_KEY_REG
:
94 case ALTR_A10SR_PMBUS_REG
:
101 static const struct regmap_config altr_a10sr_regmap_config
= {
105 .cache_type
= REGCACHE_NONE
,
107 .use_single_rw
= true,
109 .write_flag_mask
= 0,
111 .max_register
= ALTR_A10SR_WR_KEY_REG
,
112 .readable_reg
= altr_a10sr_reg_readable
,
113 .writeable_reg
= altr_a10sr_reg_writeable
,
114 .volatile_reg
= altr_a10sr_reg_volatile
,
118 static int altr_a10sr_spi_probe(struct spi_device
*spi
)
121 struct altr_a10sr
*a10sr
;
123 a10sr
= devm_kzalloc(&spi
->dev
, sizeof(*a10sr
),
128 spi
->mode
= SPI_MODE_3
;
129 spi
->bits_per_word
= 8;
132 a10sr
->dev
= &spi
->dev
;
134 spi_set_drvdata(spi
, a10sr
);
136 a10sr
->regmap
= devm_regmap_init_spi(spi
, &altr_a10sr_regmap_config
);
137 if (IS_ERR(a10sr
->regmap
)) {
138 ret
= PTR_ERR(a10sr
->regmap
);
139 dev_err(&spi
->dev
, "Failed to allocate register map: %d\n",
144 ret
= devm_mfd_add_devices(a10sr
->dev
, PLATFORM_DEVID_AUTO
,
145 altr_a10sr_subdev_info
,
146 ARRAY_SIZE(altr_a10sr_subdev_info
),
149 dev_err(a10sr
->dev
, "Failed to register sub-devices: %d\n",
155 static const struct of_device_id altr_a10sr_spi_of_match
[] = {
156 { .compatible
= "altr,a10sr" },
160 static struct spi_driver altr_a10sr_spi_driver
= {
161 .probe
= altr_a10sr_spi_probe
,
163 .name
= "altr_a10sr",
164 .of_match_table
= of_match_ptr(altr_a10sr_spi_of_match
),
167 builtin_driver(altr_a10sr_spi_driver
, spi_register_driver
)