drivers/media/i2c/uda1342.c
Source file repositories/reference/linux-study-clean/drivers/media/i2c/uda1342.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/media/i2c/uda1342.c- Extension
.c- Size
- 2326 bytes
- Lines
- 100
- Domain
- Driver Families
- Bucket
- drivers/media
- 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/module.hlinux/init.hlinux/i2c.hlinux/videodev2.hmedia/v4l2-device.hmedia/i2c/uda1342.hlinux/slab.h
Detected Declarations
function Copyrightfunction uda1342_s_routingfunction uda1342_probefunction uda1342_remove
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2005-2006 Micronas USA Inc.
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/i2c.h>
#include <linux/videodev2.h>
#include <media/v4l2-device.h>
#include <media/i2c/uda1342.h>
#include <linux/slab.h>
static int write_reg(struct i2c_client *client, int reg, int value)
{
/* UDA1342 wants MSB first, but SMBus sends LSB first */
i2c_smbus_write_word_data(client, reg, swab16(value));
return 0;
}
static int uda1342_s_routing(struct v4l2_subdev *sd,
u32 input, u32 output, u32 config)
{
struct i2c_client *client = v4l2_get_subdevdata(sd);
switch (input) {
case UDA1342_IN1:
write_reg(client, 0x00, 0x1241); /* select input 1 */
break;
case UDA1342_IN2:
write_reg(client, 0x00, 0x1441); /* select input 2 */
break;
default:
v4l2_err(sd, "input %d not supported\n", input);
break;
}
return 0;
}
static const struct v4l2_subdev_audio_ops uda1342_audio_ops = {
.s_routing = uda1342_s_routing,
};
static const struct v4l2_subdev_ops uda1342_ops = {
.audio = &uda1342_audio_ops,
};
static int uda1342_probe(struct i2c_client *client)
{
struct i2c_adapter *adapter = client->adapter;
struct v4l2_subdev *sd;
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA))
return -ENODEV;
dev_dbg(&client->dev, "initializing UDA1342 at address %d on %s\n",
client->addr, adapter->name);
sd = devm_kzalloc(&client->dev, sizeof(*sd), GFP_KERNEL);
if (sd == NULL)
return -ENOMEM;
v4l2_i2c_subdev_init(sd, client, &uda1342_ops);
write_reg(client, 0x00, 0x8000); /* reset registers */
write_reg(client, 0x00, 0x1241); /* select input 1 */
v4l_info(client, "chip found @ 0x%02x (%s)\n",
client->addr << 1, client->adapter->name);
return 0;
}
static void uda1342_remove(struct i2c_client *client)
{
struct v4l2_subdev *sd = i2c_get_clientdata(client);
v4l2_device_unregister_subdev(sd);
}
static const struct i2c_device_id uda1342_id[] = {
{ .name = "uda1342" },
{ }
};
MODULE_DEVICE_TABLE(i2c, uda1342_id);
static struct i2c_driver uda1342_driver = {
.driver = {
.name = "uda1342",
},
Annotation
- Immediate include surface: `linux/module.h`, `linux/init.h`, `linux/i2c.h`, `linux/videodev2.h`, `media/v4l2-device.h`, `media/i2c/uda1342.h`, `linux/slab.h`.
- Detected declarations: `function Copyright`, `function uda1342_s_routing`, `function uda1342_probe`, `function uda1342_remove`.
- Atlas domain: Driver Families / drivers/media.
- 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.