drivers/mfd/rt5120.c

Source file repositories/reference/linux-study-clean/drivers/mfd/rt5120.c

File Facts

System
Linux kernel
Corpus path
drivers/mfd/rt5120.c
Extension
.c
Size
3440 bytes
Lines
124
Domain
Driver Families
Bucket
drivers/mfd
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2022 Richtek Technology Corp.
 * Author: ChiYuan Huang <cy_huang@richtek.com>
 */

#include <linux/i2c.h>
#include <linux/kernel.h>
#include <linux/mfd/core.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/regmap.h>

#define RT5120_REG_INTENABLE	0x1D
#define RT5120_REG_INTSTAT	0x1E
#define RT5120_REG_FZCMODE	0x44

#define RT5120_INT_HOTDIE	0
#define RT5120_INT_PWRKEY_REL	5
#define RT5120_INT_PWRKEY_PRESS	6

static const struct regmap_range rt5120_rd_yes_ranges[] = {
	regmap_reg_range(0x03, 0x13),
	regmap_reg_range(0x1c, 0x20),
	regmap_reg_range(0x44, 0x44),
};

static const struct regmap_range rt5120_wr_yes_ranges[] = {
	regmap_reg_range(0x06, 0x13),
	regmap_reg_range(0x1c, 0x20),
	regmap_reg_range(0x44, 0x44),
};

static const struct regmap_access_table rt5120_rd_table = {
	.yes_ranges = rt5120_rd_yes_ranges,
	.n_yes_ranges = ARRAY_SIZE(rt5120_rd_yes_ranges),
};

static const struct regmap_access_table rt5120_wr_table = {
	.yes_ranges = rt5120_wr_yes_ranges,
	.n_yes_ranges = ARRAY_SIZE(rt5120_wr_yes_ranges),
};

static const struct regmap_config rt5120_regmap_config = {
	.reg_bits = 8,
	.val_bits = 8,
	.max_register = RT5120_REG_FZCMODE,

	.wr_table = &rt5120_wr_table,
	.rd_table = &rt5120_rd_table,
};

static const struct regmap_irq rt5120_irqs[] = {
	REGMAP_IRQ_REG_LINE(RT5120_INT_HOTDIE, 8),
	REGMAP_IRQ_REG_LINE(RT5120_INT_PWRKEY_REL, 8),
	REGMAP_IRQ_REG_LINE(RT5120_INT_PWRKEY_PRESS, 8),
};

static const struct regmap_irq_chip rt5120_irq_chip = {
	.name = "rt5120-pmic",
	.status_base = RT5120_REG_INTSTAT,
	.unmask_base = RT5120_REG_INTENABLE,
	.ack_base = RT5120_REG_INTSTAT,
	.use_ack = true,
	.num_regs = 1,
	.irqs = rt5120_irqs,
	.num_irqs = ARRAY_SIZE(rt5120_irqs),
};

static const struct resource rt5120_regulator_resources[] = {
	DEFINE_RES_IRQ(RT5120_INT_HOTDIE),
};

static const struct resource rt5120_pwrkey_resources[] = {
	DEFINE_RES_IRQ_NAMED(RT5120_INT_PWRKEY_PRESS, "pwrkey-press"),
	DEFINE_RES_IRQ_NAMED(RT5120_INT_PWRKEY_REL, "pwrkey-release"),
};

static const struct mfd_cell rt5120_devs[] = {
	MFD_CELL_RES("rt5120-regulator", rt5120_regulator_resources),
	MFD_CELL_OF("rt5120-pwrkey", rt5120_pwrkey_resources, NULL, 0, 0, "richtek,rt5120-pwrkey"),
};

static int rt5120_probe(struct i2c_client *i2c)
{
	struct device *dev = &i2c->dev;
	struct regmap *regmap;
	struct regmap_irq_chip_data *irq_data;
	int ret;

Annotation

Implementation Notes