2 * Driver for TI Multi PLL CDCE913/925/937/949 clock synthesizer
4 * This driver always connects the Y1 to the input clock, Y2/Y3 to PLL1,
5 * Y4/Y5 to PLL2, and so on. PLL frequency is set on a first-come-first-serve
6 * basis. Clients can directly request any frequency that the chip can
7 * deliver using the standard clk framework. In addition, the device can
8 * be configured and activated via the devicetree.
10 * Copyright (C) 2014, Topic Embedded Products
13 #include <linux/clk.h>
14 #include <linux/clk-provider.h>
15 #include <linux/delay.h>
16 #include <linux/module.h>
17 #include <linux/i2c.h>
18 #include <linux/regmap.h>
19 #include <linux/regulator/consumer.h>
20 #include <linux/slab.h>
21 #include <linux/gcd.h>
23 /* Each chip has different number of PLLs and outputs, for example:
24 * The CECE925 has 2 PLLs which can be routed through dividers to 5 outputs.
25 * Model this as 2 PLL clocks which are parents to the outputs.
35 struct clk_cdce925_chip_info {
40 static const struct clk_cdce925_chip_info clk_cdce925_chip_info_tbl[] = {
41 [CDCE913] = { .num_plls = 1, .num_outputs = 3 },
42 [CDCE925] = { .num_plls = 2, .num_outputs = 5 },
43 [CDCE937] = { .num_plls = 3, .num_outputs = 7 },
44 [CDCE949] = { .num_plls = 4, .num_outputs = 9 },
47 #define MAX_NUMBER_OF_PLLS 4
48 #define MAX_NUMBER_OF_OUTPUTS 9
50 #define CDCE925_REG_GLOBAL1 0x01
51 #define CDCE925_REG_Y1SPIPDIVH 0x02
52 #define CDCE925_REG_PDIVL 0x03
53 #define CDCE925_REG_XCSEL 0x05
54 /* PLL parameters start at 0x10, steps of 0x10 */
55 #define CDCE925_OFFSET_PLL 0x10
56 /* Add CDCE925_OFFSET_PLL * (pll) to these registers before sending */
57 #define CDCE925_PLL_MUX_OUTPUTS 0x14
58 #define CDCE925_PLL_MULDIV 0x18
60 #define CDCE925_PLL_FREQUENCY_MIN 80000000ul
61 #define CDCE925_PLL_FREQUENCY_MAX 230000000ul
62 struct clk_cdce925_chip;
64 struct clk_cdce925_output {
66 struct clk_cdce925_chip *chip;
68 u16 pdiv; /* 1..127 for Y2-Y9; 1..1023 for Y1 */
70 #define to_clk_cdce925_output(_hw) \
71 container_of(_hw, struct clk_cdce925_output, hw)
73 struct clk_cdce925_pll {
75 struct clk_cdce925_chip *chip;
80 #define to_clk_cdce925_pll(_hw) container_of(_hw, struct clk_cdce925_pll, hw)
82 struct clk_cdce925_chip {
83 struct regmap *regmap;
84 struct i2c_client *i2c_client;
85 const struct clk_cdce925_chip_info *chip_info;
86 struct clk_cdce925_pll pll[MAX_NUMBER_OF_PLLS];
87 struct clk_cdce925_output clk[MAX_NUMBER_OF_OUTPUTS];
90 /* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** */
92 static unsigned long cdce925_pll_calculate_rate(unsigned long parent_rate,
95 if ((!m || !n) || (m == n))
96 return parent_rate; /* In bypass mode runs at same frequency */
97 return mult_frac(parent_rate, (unsigned long)n, (unsigned long)m);
100 static unsigned long cdce925_pll_recalc_rate(struct clk_hw *hw,
101 unsigned long parent_rate)
103 /* Output frequency of PLL is Fout = (Fin/Pdiv)*(N/M) */
104 struct clk_cdce925_pll *data = to_clk_cdce925_pll(hw);
106 return cdce925_pll_calculate_rate(parent_rate, data->n, data->m);
109 static void cdce925_pll_find_rate(unsigned long rate,
110 unsigned long parent_rate, u16 *n, u16 *m)
116 if (rate <= parent_rate) {
117 /* Can always deliver parent_rate in bypass mode */
122 /* In PLL mode, need to apply min/max range */
123 if (rate < CDCE925_PLL_FREQUENCY_MIN)
124 rate = CDCE925_PLL_FREQUENCY_MIN;
125 else if (rate > CDCE925_PLL_FREQUENCY_MAX)
126 rate = CDCE925_PLL_FREQUENCY_MAX;
128 g = gcd(rate, parent_rate);
129 um = parent_rate / g;
131 /* When outside hw range, reduce to fit (rounding errors) */
132 while ((un > 4095) || (um > 511)) {
146 static long cdce925_pll_round_rate(struct clk_hw *hw, unsigned long rate,
147 unsigned long *parent_rate)
151 cdce925_pll_find_rate(rate, *parent_rate, &n, &m);
152 return (long)cdce925_pll_calculate_rate(*parent_rate, n, m);
155 static int cdce925_pll_set_rate(struct clk_hw *hw, unsigned long rate,
156 unsigned long parent_rate)
158 struct clk_cdce925_pll *data = to_clk_cdce925_pll(hw);
160 if (!rate || (rate == parent_rate)) {
161 data->m = 0; /* Bypass mode */
166 if ((rate < CDCE925_PLL_FREQUENCY_MIN) ||
167 (rate > CDCE925_PLL_FREQUENCY_MAX)) {
168 pr_debug("%s: rate %lu outside PLL range.\n", __func__, rate);
172 if (rate < parent_rate) {
173 pr_debug("%s: rate %lu less than parent rate %lu.\n", __func__,
178 cdce925_pll_find_rate(rate, parent_rate, &data->n, &data->m);
183 /* calculate p = max(0, 4 - int(log2 (n/m))) */
184 static u8 cdce925_pll_calc_p(u16 n, u16 m)
199 /* Returns VCO range bits for VCO1_0_RANGE */
200 static u8 cdce925_pll_calc_range_bits(struct clk_hw *hw, u16 n, u16 m)
202 struct clk *parent = clk_get_parent(hw->clk);
203 unsigned long rate = clk_get_rate(parent);
205 rate = mult_frac(rate, (unsigned long)n, (unsigned long)m);
206 if (rate >= 175000000)
208 if (rate >= 150000000)
210 if (rate >= 125000000)
215 /* I2C clock, hence everything must happen in (un)prepare because this
217 static int cdce925_pll_prepare(struct clk_hw *hw)
219 struct clk_cdce925_pll *data = to_clk_cdce925_pll(hw);
226 u8 pll[4]; /* Bits are spread out over 4 byte registers */
227 u8 reg_ofs = data->index * CDCE925_OFFSET_PLL;
230 if ((!m || !n) || (m == n)) {
231 /* Set PLL mux to bypass mode, leave the rest as is */
232 regmap_update_bits(data->chip->regmap,
233 reg_ofs + CDCE925_PLL_MUX_OUTPUTS, 0x80, 0x80);
235 /* According to data sheet: */
236 /* p = max(0, 4 - int(log2 (n/m))) */
237 p = cdce925_pll_calc_p(n, m);
242 if ((q < 16) || (q > 63)) {
243 pr_debug("%s invalid q=%d\n", __func__, q);
248 pr_debug("%s invalid r=%d\n", __func__, r);
251 pr_debug("%s n=%d m=%d p=%d q=%d r=%d\n", __func__,
253 /* encode into register bits */
255 pll[1] = ((n & 0x0F) << 4) | ((r >> 5) & 0x0F);
256 pll[2] = ((r & 0x1F) << 3) | ((q >> 3) & 0x07);
257 pll[3] = ((q & 0x07) << 5) | (p << 2) |
258 cdce925_pll_calc_range_bits(hw, n, m);
259 /* Write to registers */
260 for (i = 0; i < ARRAY_SIZE(pll); ++i)
261 regmap_write(data->chip->regmap,
262 reg_ofs + CDCE925_PLL_MULDIV + i, pll[i]);
264 regmap_update_bits(data->chip->regmap,
265 reg_ofs + CDCE925_PLL_MUX_OUTPUTS, 0x80, 0x00);
271 static void cdce925_pll_unprepare(struct clk_hw *hw)
273 struct clk_cdce925_pll *data = to_clk_cdce925_pll(hw);
274 u8 reg_ofs = data->index * CDCE925_OFFSET_PLL;
276 regmap_update_bits(data->chip->regmap,
277 reg_ofs + CDCE925_PLL_MUX_OUTPUTS, 0x80, 0x80);
280 static const struct clk_ops cdce925_pll_ops = {
281 .prepare = cdce925_pll_prepare,
282 .unprepare = cdce925_pll_unprepare,
283 .recalc_rate = cdce925_pll_recalc_rate,
284 .round_rate = cdce925_pll_round_rate,
285 .set_rate = cdce925_pll_set_rate,
289 static void cdce925_clk_set_pdiv(struct clk_cdce925_output *data, u16 pdiv)
291 switch (data->index) {
293 regmap_update_bits(data->chip->regmap,
294 CDCE925_REG_Y1SPIPDIVH,
295 0x03, (pdiv >> 8) & 0x03);
296 regmap_write(data->chip->regmap, 0x03, pdiv & 0xFF);
299 regmap_update_bits(data->chip->regmap, 0x16, 0x7F, pdiv);
302 regmap_update_bits(data->chip->regmap, 0x17, 0x7F, pdiv);
305 regmap_update_bits(data->chip->regmap, 0x26, 0x7F, pdiv);
308 regmap_update_bits(data->chip->regmap, 0x27, 0x7F, pdiv);
311 regmap_update_bits(data->chip->regmap, 0x36, 0x7F, pdiv);
314 regmap_update_bits(data->chip->regmap, 0x37, 0x7F, pdiv);
317 regmap_update_bits(data->chip->regmap, 0x46, 0x7F, pdiv);
320 regmap_update_bits(data->chip->regmap, 0x47, 0x7F, pdiv);
325 static void cdce925_clk_activate(struct clk_cdce925_output *data)
327 switch (data->index) {
329 regmap_update_bits(data->chip->regmap,
330 CDCE925_REG_Y1SPIPDIVH, 0x0c, 0x0c);
334 regmap_update_bits(data->chip->regmap, 0x14, 0x03, 0x03);
338 regmap_update_bits(data->chip->regmap, 0x24, 0x03, 0x03);
342 regmap_update_bits(data->chip->regmap, 0x34, 0x03, 0x03);
346 regmap_update_bits(data->chip->regmap, 0x44, 0x03, 0x03);
351 static int cdce925_clk_prepare(struct clk_hw *hw)
353 struct clk_cdce925_output *data = to_clk_cdce925_output(hw);
355 cdce925_clk_set_pdiv(data, data->pdiv);
356 cdce925_clk_activate(data);
360 static void cdce925_clk_unprepare(struct clk_hw *hw)
362 struct clk_cdce925_output *data = to_clk_cdce925_output(hw);
364 /* Disable clock by setting divider to "0" */
365 cdce925_clk_set_pdiv(data, 0);
368 static unsigned long cdce925_clk_recalc_rate(struct clk_hw *hw,
369 unsigned long parent_rate)
371 struct clk_cdce925_output *data = to_clk_cdce925_output(hw);
374 return parent_rate / data->pdiv;
378 static u16 cdce925_calc_divider(unsigned long rate,
379 unsigned long parent_rate)
381 unsigned long divider;
385 if (rate >= parent_rate)
388 divider = DIV_ROUND_CLOSEST(parent_rate, rate);
395 static unsigned long cdce925_clk_best_parent_rate(
396 struct clk_hw *hw, unsigned long rate)
398 struct clk *pll = clk_get_parent(hw->clk);
399 struct clk *root = clk_get_parent(pll);
400 unsigned long root_rate = clk_get_rate(root);
401 unsigned long best_rate_error = rate;
407 if (root_rate % rate == 0)
408 return root_rate; /* Don't need the PLL, use bypass */
410 pdiv_min = (u16)max(1ul, DIV_ROUND_UP(CDCE925_PLL_FREQUENCY_MIN, rate));
411 pdiv_max = (u16)min(127ul, CDCE925_PLL_FREQUENCY_MAX / rate);
413 if (pdiv_min > pdiv_max)
414 return 0; /* No can do? */
416 pdiv_best = pdiv_min;
417 for (pdiv_now = pdiv_min; pdiv_now < pdiv_max; ++pdiv_now) {
418 unsigned long target_rate = rate * pdiv_now;
419 long pll_rate = clk_round_rate(pll, target_rate);
420 unsigned long actual_rate;
421 unsigned long rate_error;
425 actual_rate = pll_rate / pdiv_now;
426 rate_error = abs((long)actual_rate - (long)rate);
427 if (rate_error < best_rate_error) {
428 pdiv_best = pdiv_now;
429 best_rate_error = rate_error;
431 /* TODO: Consider PLL frequency based on smaller n/m values
432 * and pick the better one if the error is equal */
435 return rate * pdiv_best;
438 static long cdce925_clk_round_rate(struct clk_hw *hw, unsigned long rate,
439 unsigned long *parent_rate)
441 unsigned long l_parent_rate = *parent_rate;
442 u16 divider = cdce925_calc_divider(rate, l_parent_rate);
444 if (l_parent_rate / divider != rate) {
445 l_parent_rate = cdce925_clk_best_parent_rate(hw, rate);
446 divider = cdce925_calc_divider(rate, l_parent_rate);
447 *parent_rate = l_parent_rate;
451 return (long)(l_parent_rate / divider);
455 static int cdce925_clk_set_rate(struct clk_hw *hw, unsigned long rate,
456 unsigned long parent_rate)
458 struct clk_cdce925_output *data = to_clk_cdce925_output(hw);
460 data->pdiv = cdce925_calc_divider(rate, parent_rate);
465 static const struct clk_ops cdce925_clk_ops = {
466 .prepare = cdce925_clk_prepare,
467 .unprepare = cdce925_clk_unprepare,
468 .recalc_rate = cdce925_clk_recalc_rate,
469 .round_rate = cdce925_clk_round_rate,
470 .set_rate = cdce925_clk_set_rate,
474 static u16 cdce925_y1_calc_divider(unsigned long rate,
475 unsigned long parent_rate)
477 unsigned long divider;
481 if (rate >= parent_rate)
484 divider = DIV_ROUND_CLOSEST(parent_rate, rate);
485 if (divider > 0x3FF) /* Y1 has 10-bit divider */
491 static long cdce925_clk_y1_round_rate(struct clk_hw *hw, unsigned long rate,
492 unsigned long *parent_rate)
494 unsigned long l_parent_rate = *parent_rate;
495 u16 divider = cdce925_y1_calc_divider(rate, l_parent_rate);
498 return (long)(l_parent_rate / divider);
502 static int cdce925_clk_y1_set_rate(struct clk_hw *hw, unsigned long rate,
503 unsigned long parent_rate)
505 struct clk_cdce925_output *data = to_clk_cdce925_output(hw);
507 data->pdiv = cdce925_y1_calc_divider(rate, parent_rate);
512 static const struct clk_ops cdce925_clk_y1_ops = {
513 .prepare = cdce925_clk_prepare,
514 .unprepare = cdce925_clk_unprepare,
515 .recalc_rate = cdce925_clk_recalc_rate,
516 .round_rate = cdce925_clk_y1_round_rate,
517 .set_rate = cdce925_clk_y1_set_rate,
520 #define CDCE925_I2C_COMMAND_BLOCK_TRANSFER 0x00
521 #define CDCE925_I2C_COMMAND_BYTE_TRANSFER 0x80
523 static int cdce925_regmap_i2c_write(
524 void *context, const void *data, size_t count)
526 struct device *dev = context;
527 struct i2c_client *i2c = to_i2c_client(dev);
534 /* First byte is command code */
535 reg_data[0] = CDCE925_I2C_COMMAND_BYTE_TRANSFER | ((u8 *)data)[0];
536 reg_data[1] = ((u8 *)data)[1];
538 dev_dbg(&i2c->dev, "%s(%zu) %#x %#x\n", __func__, count,
539 reg_data[0], reg_data[1]);
541 ret = i2c_master_send(i2c, reg_data, count);
542 if (likely(ret == count))
550 static int cdce925_regmap_i2c_read(void *context,
551 const void *reg, size_t reg_size, void *val, size_t val_size)
553 struct device *dev = context;
554 struct i2c_client *i2c = to_i2c_client(dev);
555 struct i2c_msg xfer[2];
562 xfer[0].addr = i2c->addr;
564 xfer[0].buf = reg_data;
567 CDCE925_I2C_COMMAND_BYTE_TRANSFER | ((u8 *)reg)[0];
571 CDCE925_I2C_COMMAND_BLOCK_TRANSFER | ((u8 *)reg)[0];
572 reg_data[1] = val_size;
576 xfer[1].addr = i2c->addr;
577 xfer[1].flags = I2C_M_RD;
578 xfer[1].len = val_size;
581 ret = i2c_transfer(i2c->adapter, xfer, 2);
582 if (likely(ret == 2)) {
583 dev_dbg(&i2c->dev, "%s(%zu, %zu) %#x %#x\n", __func__,
584 reg_size, val_size, reg_data[0], *((u8 *)val));
592 static struct clk_hw *
593 of_clk_cdce925_get(struct of_phandle_args *clkspec, void *_data)
595 struct clk_cdce925_chip *data = _data;
596 unsigned int idx = clkspec->args[0];
598 if (idx >= ARRAY_SIZE(data->clk)) {
599 pr_err("%s: invalid index %u\n", __func__, idx);
600 return ERR_PTR(-EINVAL);
603 return &data->clk[idx].hw;
606 static void cdce925_regulator_disable(void *regulator)
608 regulator_disable(regulator);
611 static int cdce925_regulator_enable(struct device *dev, const char *name)
613 struct regulator *regulator;
616 regulator = devm_regulator_get(dev, name);
617 if (IS_ERR(regulator))
618 return PTR_ERR(regulator);
620 err = regulator_enable(regulator);
622 dev_err(dev, "Failed to enable %s: %d\n", name, err);
626 return devm_add_action_or_reset(dev, cdce925_regulator_disable,
630 /* The CDCE925 uses a funky way to read/write registers. Bulk mode is
631 * just weird, so just use the single byte mode exclusively. */
632 static struct regmap_bus regmap_cdce925_bus = {
633 .write = cdce925_regmap_i2c_write,
634 .read = cdce925_regmap_i2c_read,
637 static const struct i2c_device_id cdce925_id[] = {
638 { "cdce913", CDCE913 },
639 { "cdce925", CDCE925 },
640 { "cdce937", CDCE937 },
641 { "cdce949", CDCE949 },
644 MODULE_DEVICE_TABLE(i2c, cdce925_id);
646 static int cdce925_probe(struct i2c_client *client)
648 struct clk_cdce925_chip *data;
649 struct device_node *node = client->dev.of_node;
650 const struct i2c_device_id *id = i2c_match_id(cdce925_id, client);
651 const char *parent_name;
652 const char *pll_clk_name[MAX_NUMBER_OF_PLLS] = {NULL,};
653 struct clk_init_data init;
657 struct device_node *np_output;
659 struct regmap_config config = {
660 .name = "configuration0",
663 .cache_type = REGCACHE_RBTREE,
666 dev_dbg(&client->dev, "%s\n", __func__);
668 err = cdce925_regulator_enable(&client->dev, "vdd");
672 err = cdce925_regulator_enable(&client->dev, "vddout");
676 data = devm_kzalloc(&client->dev, sizeof(*data), GFP_KERNEL);
680 data->i2c_client = client;
681 data->chip_info = &clk_cdce925_chip_info_tbl[id->driver_data];
682 config.max_register = CDCE925_OFFSET_PLL +
683 data->chip_info->num_plls * 0x10 - 1;
684 data->regmap = devm_regmap_init(&client->dev, ®map_cdce925_bus,
685 &client->dev, &config);
686 if (IS_ERR(data->regmap)) {
687 dev_err(&client->dev, "failed to allocate register map\n");
688 return PTR_ERR(data->regmap);
690 i2c_set_clientdata(client, data);
692 parent_name = of_clk_get_parent_name(node, 0);
694 dev_err(&client->dev, "missing parent clock\n");
697 dev_dbg(&client->dev, "parent is: %s\n", parent_name);
699 if (of_property_read_u32(node, "xtal-load-pf", &value) == 0)
700 regmap_write(data->regmap,
701 CDCE925_REG_XCSEL, (value << 3) & 0xF8);
703 regmap_update_bits(data->regmap, CDCE925_REG_GLOBAL1, BIT(4), 0);
705 /* Set input source for Y1 to be the XTAL */
706 regmap_update_bits(data->regmap, 0x02, BIT(7), 0);
708 init.ops = &cdce925_pll_ops;
710 init.parent_names = &parent_name;
711 init.num_parents = 1;
713 /* Register PLL clocks */
714 for (i = 0; i < data->chip_info->num_plls; ++i) {
715 pll_clk_name[i] = kasprintf(GFP_KERNEL, "%pOFn.pll%d",
716 client->dev.of_node, i);
717 init.name = pll_clk_name[i];
718 data->pll[i].chip = data;
719 data->pll[i].hw.init = &init;
720 data->pll[i].index = i;
721 err = devm_clk_hw_register(&client->dev, &data->pll[i].hw);
723 dev_err(&client->dev, "Failed register PLL %d\n", i);
726 sprintf(child_name, "PLL%d", i+1);
727 np_output = of_get_child_by_name(node, child_name);
730 if (!of_property_read_u32(np_output,
731 "clock-frequency", &value)) {
732 err = clk_set_rate(data->pll[i].hw.clk, value);
734 dev_err(&client->dev,
735 "unable to set PLL frequency %ud\n",
738 if (!of_property_read_u32(np_output,
739 "spread-spectrum", &value)) {
740 u8 flag = of_property_read_bool(np_output,
741 "spread-spectrum-center") ? 0x80 : 0x00;
742 regmap_update_bits(data->regmap,
743 0x16 + (i*CDCE925_OFFSET_PLL),
745 regmap_update_bits(data->regmap,
746 0x12 + (i*CDCE925_OFFSET_PLL),
749 of_node_put(np_output);
752 /* Register output clock Y1 */
753 init.ops = &cdce925_clk_y1_ops;
755 init.num_parents = 1;
756 init.parent_names = &parent_name; /* Mux Y1 to input */
757 init.name = kasprintf(GFP_KERNEL, "%pOFn.Y1", client->dev.of_node);
758 data->clk[0].chip = data;
759 data->clk[0].hw.init = &init;
760 data->clk[0].index = 0;
761 data->clk[0].pdiv = 1;
762 err = devm_clk_hw_register(&client->dev, &data->clk[0].hw);
763 kfree(init.name); /* clock framework made a copy of the name */
765 dev_err(&client->dev, "clock registration Y1 failed\n");
769 /* Register output clocks Y2 .. Y5*/
770 init.ops = &cdce925_clk_ops;
771 init.flags = CLK_SET_RATE_PARENT;
772 init.num_parents = 1;
773 for (i = 1; i < data->chip_info->num_outputs; ++i) {
774 init.name = kasprintf(GFP_KERNEL, "%pOFn.Y%d",
775 client->dev.of_node, i+1);
776 data->clk[i].chip = data;
777 data->clk[i].hw.init = &init;
778 data->clk[i].index = i;
779 data->clk[i].pdiv = 1;
783 /* Mux Y2/3 to PLL1 */
784 init.parent_names = &pll_clk_name[0];
788 /* Mux Y4/5 to PLL2 */
789 init.parent_names = &pll_clk_name[1];
793 /* Mux Y6/7 to PLL3 */
794 init.parent_names = &pll_clk_name[2];
798 /* Mux Y8/9 to PLL4 */
799 init.parent_names = &pll_clk_name[3];
802 err = devm_clk_hw_register(&client->dev, &data->clk[i].hw);
803 kfree(init.name); /* clock framework made a copy of the name */
805 dev_err(&client->dev, "clock registration failed\n");
810 /* Register the output clocks */
811 err = of_clk_add_hw_provider(client->dev.of_node, of_clk_cdce925_get,
814 dev_err(&client->dev, "unable to add OF clock provider\n");
819 for (i = 0; i < data->chip_info->num_plls; ++i)
820 /* clock framework made a copy of the name */
821 kfree(pll_clk_name[i]);
826 static const struct of_device_id clk_cdce925_of_match[] = {
827 { .compatible = "ti,cdce913" },
828 { .compatible = "ti,cdce925" },
829 { .compatible = "ti,cdce937" },
830 { .compatible = "ti,cdce949" },
833 MODULE_DEVICE_TABLE(of, clk_cdce925_of_match);
835 static struct i2c_driver cdce925_driver = {
838 .of_match_table = of_match_ptr(clk_cdce925_of_match),
840 .probe_new = cdce925_probe,
841 .id_table = cdce925_id,
843 module_i2c_driver(cdce925_driver);
845 MODULE_AUTHOR("Mike Looijmans <mike.looijmans@topic.nl>");
846 MODULE_DESCRIPTION("TI CDCE913/925/937/949 driver");
847 MODULE_LICENSE("GPL");