drivers/leds/leds-tps6105x.c
Source file repositories/reference/linux-study-clean/drivers/leds/leds-tps6105x.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/leds/leds-tps6105x.c- Extension
.c- Size
- 2392 bytes
- Lines
- 90
- Domain
- Driver Families
- Bucket
- drivers/leds
- 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.
- 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.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/leds.hlinux/module.hlinux/platform_device.hlinux/mfd/tps6105x.hlinux/regmap.h
Detected Declarations
struct tps6105x_privfunction tps6105x_handle_putfunction tps6105x_brightness_setfunction tps6105x_led_probe
Annotated Snippet
struct tps6105x_priv {
struct regmap *regmap;
struct led_classdev cdev;
struct fwnode_handle *fwnode;
};
static void tps6105x_handle_put(void *data)
{
struct tps6105x_priv *priv = data;
fwnode_handle_put(priv->fwnode);
}
static int tps6105x_brightness_set(struct led_classdev *cdev,
enum led_brightness brightness)
{
struct tps6105x_priv *priv = container_of(cdev, struct tps6105x_priv,
cdev);
return regmap_update_bits(priv->regmap, TPS6105X_REG_0,
TPS6105X_REG0_TORCHC_MASK,
brightness << TPS6105X_REG0_TORCHC_SHIFT);
}
static int tps6105x_led_probe(struct platform_device *pdev)
{
struct tps6105x *tps6105x = dev_get_platdata(&pdev->dev);
struct tps6105x_platform_data *pdata = tps6105x->pdata;
struct led_init_data init_data = { };
struct tps6105x_priv *priv;
int ret;
/* This instance is not set for torch mode so bail out */
if (pdata->mode != TPS6105X_MODE_TORCH) {
dev_info(&pdev->dev,
"chip not in torch mode, exit probe");
return -EINVAL;
}
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;
/* fwnode/devicetree is optional. NULL is allowed for priv->fwnode */
priv->fwnode = device_get_next_child_node(pdev->dev.parent, NULL);
ret = devm_add_action_or_reset(&pdev->dev, tps6105x_handle_put, priv);
if (ret)
return ret;
priv->regmap = tps6105x->regmap;
priv->cdev.brightness_set_blocking = tps6105x_brightness_set;
priv->cdev.max_brightness = 7;
init_data.devicename = "tps6105x";
init_data.default_label = ":torch";
init_data.fwnode = priv->fwnode;
ret = regmap_update_bits(tps6105x->regmap, TPS6105X_REG_0,
TPS6105X_REG0_MODE_MASK |
TPS6105X_REG0_TORCHC_MASK,
TPS6105X_REG0_MODE_TORCH <<
TPS6105X_REG0_MODE_SHIFT);
if (ret)
return ret;
return devm_led_classdev_register_ext(&pdev->dev, &priv->cdev,
&init_data);
}
static struct platform_driver led_driver = {
.probe = tps6105x_led_probe,
.driver = {
.name = "tps6105x-leds",
},
};
module_platform_driver(led_driver);
MODULE_DESCRIPTION("TPS6105x LED driver");
MODULE_AUTHOR("Sven Van Asbroeck <TheSven73@gmail.com>");
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/leds.h`, `linux/module.h`, `linux/platform_device.h`, `linux/mfd/tps6105x.h`, `linux/regmap.h`.
- Detected declarations: `struct tps6105x_priv`, `function tps6105x_handle_put`, `function tps6105x_brightness_set`, `function tps6105x_led_probe`.
- Atlas domain: Driver Families / drivers/leds.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.