~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/soc/codecs/cs530x-i2c.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 //
  3 // CS530x CODEC driver
  4 //
  5 // Copyright (C) 2024 Cirrus Logic, Inc. and
  6 //                    Cirrus Logic International Semiconductor Ltd.
  7 
  8 #include <linux/device.h>
  9 #include <linux/module.h>
 10 #include <linux/i2c.h>
 11 #include <linux/regmap.h>
 12 
 13 #include "cs530x.h"
 14 
 15 static const struct of_device_id cs530x_of_match[] = {
 16         {
 17                 .compatible = "cirrus,cs5302",
 18                 .data = (void *)CS5302,
 19         }, {
 20                 .compatible = "cirrus,cs5304",
 21                 .data = (void *)CS5304,
 22         }, {
 23                 .compatible = "cirrus,cs5308",
 24                 .data = (void *)CS5308,
 25         },
 26         {}
 27 };
 28 MODULE_DEVICE_TABLE(of, cs530x_of_match);
 29 
 30 static const struct i2c_device_id cs530x_i2c_id[] = {
 31         { "cs5302", CS5302 },
 32         { "cs5304", CS5304 },
 33         { "cs5308", CS5308 },
 34         { }
 35 };
 36 MODULE_DEVICE_TABLE(i2c, cs530x_i2c_id);
 37 
 38 static int cs530x_i2c_probe(struct i2c_client *client)
 39 {
 40         struct cs530x_priv *cs530x;
 41 
 42         cs530x = devm_kzalloc(&client->dev, sizeof(*cs530x), GFP_KERNEL);
 43         if (!cs530x)
 44                 return -ENOMEM;
 45 
 46         i2c_set_clientdata(client, cs530x);
 47 
 48         cs530x->regmap = devm_regmap_init_i2c(client, &cs530x_regmap);
 49         if (IS_ERR(cs530x->regmap))
 50                 return dev_err_probe(&client->dev, PTR_ERR(cs530x->regmap),
 51                               "Failed to allocate register map\n");
 52 
 53         cs530x->devtype = (uintptr_t)i2c_get_match_data(client);
 54         cs530x->dev = &client->dev;
 55 
 56         return cs530x_probe(cs530x);
 57 }
 58 
 59 static struct i2c_driver cs530x_i2c_driver = {
 60         .driver = {
 61                 .name = "cs530x",
 62                 .of_match_table = cs530x_of_match,
 63         },
 64         .probe = cs530x_i2c_probe,
 65         .id_table = cs530x_i2c_id,
 66 };
 67 module_i2c_driver(cs530x_i2c_driver);
 68 
 69 MODULE_DESCRIPTION("I2C CS530X driver");
 70 MODULE_IMPORT_NS(SND_SOC_CS530X);
 71 MODULE_AUTHOR("Paul Handrigan, Cirrus Logic Inc, <paulha@opensource.cirrus.com>");
 72 MODULE_LICENSE("GPL");
 73 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php