/Linux-v4.19/drivers/mfd/ |
D | ucb1x00-core.c | 53 void ucb1x00_io_set_dir(struct ucb1x00 *ucb, unsigned int in, unsigned int out) in ucb1x00_io_set_dir() argument 57 spin_lock_irqsave(&ucb->io_lock, flags); in ucb1x00_io_set_dir() 58 ucb->io_dir |= out; in ucb1x00_io_set_dir() 59 ucb->io_dir &= ~in; in ucb1x00_io_set_dir() 61 ucb1x00_reg_write(ucb, UCB_IO_DIR, ucb->io_dir); in ucb1x00_io_set_dir() 62 spin_unlock_irqrestore(&ucb->io_lock, flags); in ucb1x00_io_set_dir() 81 void ucb1x00_io_write(struct ucb1x00 *ucb, unsigned int set, unsigned int clear) in ucb1x00_io_write() argument 85 spin_lock_irqsave(&ucb->io_lock, flags); in ucb1x00_io_write() 86 ucb->io_out |= set; in ucb1x00_io_write() 87 ucb->io_out &= ~clear; in ucb1x00_io_write() [all …]
|
D | ucb1x00-ts.c | 43 struct ucb1x00 *ucb; member 82 ucb1x00_reg_write(ts->ucb, UCB_TS_CR, in ucb1x00_ts_mode_int() 95 ucb1x00_io_write(ts->ucb, COLLIE_TC35143_GPIO_TBL_CHK, 0); in ucb1x00_ts_read_pressure() 96 ucb1x00_reg_write(ts->ucb, UCB_TS_CR, in ucb1x00_ts_read_pressure() 102 return ucb1x00_adc_read(ts->ucb, UCB_ADC_INP_AD2, ts->adcsync); in ucb1x00_ts_read_pressure() 104 ucb1x00_reg_write(ts->ucb, UCB_TS_CR, in ucb1x00_ts_read_pressure() 109 return ucb1x00_adc_read(ts->ucb, UCB_ADC_INP_TSPY, ts->adcsync); in ucb1x00_ts_read_pressure() 122 ucb1x00_io_write(ts->ucb, 0, COLLIE_TC35143_GPIO_TBL_CHK); in ucb1x00_ts_read_xpos() 124 ucb1x00_reg_write(ts->ucb, UCB_TS_CR, in ucb1x00_ts_read_xpos() 127 ucb1x00_reg_write(ts->ucb, UCB_TS_CR, in ucb1x00_ts_read_xpos() [all …]
|
D | ucb1400_core.c | 51 struct ucb1400 *ucb; in ucb1400_core_probe() local 60 ucb = kzalloc(sizeof(struct ucb1400), GFP_KERNEL); in ucb1400_core_probe() 61 if (!ucb) { in ucb1400_core_probe() 66 dev_set_drvdata(dev, ucb); in ucb1400_core_probe() 83 ucb->ucb1400_gpio = platform_device_alloc("ucb1400_gpio", -1); in ucb1400_core_probe() 84 if (!ucb->ucb1400_gpio) { in ucb1400_core_probe() 88 err = platform_device_add_data(ucb->ucb1400_gpio, &ucb_gpio, in ucb1400_core_probe() 92 err = platform_device_add(ucb->ucb1400_gpio); in ucb1400_core_probe() 104 ucb->ucb1400_ts = platform_device_alloc("ucb1400_ts", -1); in ucb1400_core_probe() 105 if (!ucb->ucb1400_ts) { in ucb1400_core_probe() [all …]
|
D | ucb1x00-assabet.c | 27 struct ucb1x00 *ucb = classdev_to_ucb1x00(dev); \ 29 ucb1x00_adc_enable(ucb); \ 30 val = ucb1x00_adc_read(ucb, input, UCB_NOSYNC); \ 31 ucb1x00_adc_disable(ucb); \ 42 struct ucb1x00 *ucb = dev->ucb; in ucb1x00_assabet_add() local 53 buttons[i].gpio = ucb->gpio.base + i; in ucb1x00_assabet_add() 63 pdev = platform_device_register_data(&ucb->dev, "gpio-keys", -1, in ucb1x00_assabet_add() 66 device_create_file(&ucb->dev, &dev_attr_vbatt); in ucb1x00_assabet_add() 67 device_create_file(&ucb->dev, &dev_attr_vcharger); in ucb1x00_assabet_add() 68 device_create_file(&ucb->dev, &dev_attr_batt_temp); in ucb1x00_assabet_add() [all …]
|
/Linux-v4.19/drivers/input/touchscreen/ |
D | ucb1400_ts.c | 37 static void ucb1400_ts_mode_int(struct ucb1400_ts *ucb) in ucb1400_ts_mode_int() argument 39 ucb1400_reg_write(ucb->ac97, UCB_TS_CR, in ucb1400_ts_mode_int() 49 static unsigned int ucb1400_ts_read_pressure(struct ucb1400_ts *ucb) in ucb1400_ts_read_pressure() argument 51 ucb1400_reg_write(ucb->ac97, UCB_TS_CR, in ucb1400_ts_read_pressure() 58 return ucb1400_adc_read(ucb->ac97, UCB_ADC_INP_TSPY, adcsync); in ucb1400_ts_read_pressure() 67 static unsigned int ucb1400_ts_read_xpos(struct ucb1400_ts *ucb) in ucb1400_ts_read_xpos() argument 69 ucb1400_reg_write(ucb->ac97, UCB_TS_CR, in ucb1400_ts_read_xpos() 72 ucb1400_reg_write(ucb->ac97, UCB_TS_CR, in ucb1400_ts_read_xpos() 75 ucb1400_reg_write(ucb->ac97, UCB_TS_CR, in ucb1400_ts_read_xpos() 81 return ucb1400_adc_read(ucb->ac97, UCB_ADC_INP_TSPY, adcsync); in ucb1400_ts_read_xpos() [all …]
|
/Linux-v4.19/drivers/gpio/ |
D | gpio-ucb1400.c | 49 struct ucb1400_gpio *ucb = dev_get_platdata(&dev->dev); in ucb1400_gpio_probe() local 52 if (!(ucb && ucb->gpio_offset)) { in ucb1400_gpio_probe() 57 platform_set_drvdata(dev, ucb); in ucb1400_gpio_probe() 59 ucb->gc.label = "ucb1400_gpio"; in ucb1400_gpio_probe() 60 ucb->gc.base = ucb->gpio_offset; in ucb1400_gpio_probe() 61 ucb->gc.ngpio = 10; in ucb1400_gpio_probe() 62 ucb->gc.owner = THIS_MODULE; in ucb1400_gpio_probe() 64 ucb->gc.direction_input = ucb1400_gpio_dir_in; in ucb1400_gpio_probe() 65 ucb->gc.direction_output = ucb1400_gpio_dir_out; in ucb1400_gpio_probe() 66 ucb->gc.get = ucb1400_gpio_get; in ucb1400_gpio_probe() [all …]
|
/Linux-v4.19/include/linux/mfd/ |
D | ucb1x00.h | 149 struct ucb1x00 *ucb; member 174 static inline unsigned int ucb1x00_clkrate(struct ucb1x00 *ucb) in ucb1x00_clkrate() argument 176 return mcp_get_sclk_rate(ucb->mcp); in ucb1x00_clkrate() 185 static inline void ucb1x00_enable(struct ucb1x00 *ucb) in ucb1x00_enable() argument 187 mcp_enable(ucb->mcp); in ucb1x00_enable() 198 static inline void ucb1x00_disable(struct ucb1x00 *ucb) in ucb1x00_disable() argument 200 mcp_disable(ucb->mcp); in ucb1x00_disable() 212 static inline void ucb1x00_reg_write(struct ucb1x00 *ucb, unsigned int reg, unsigned int val) in ucb1x00_reg_write() argument 214 mcp_reg_write(ucb->mcp, reg, val); in ucb1x00_reg_write() 225 static inline unsigned int ucb1x00_reg_read(struct ucb1x00 *ucb, unsigned int reg) in ucb1x00_reg_read() argument [all …]
|
/Linux-v4.19/drivers/power/supply/ |
D | collie_battery.c | 28 static struct ucb1x00 *ucb; variable 65 ucb1x00_adc_enable(ucb); in collie_read_bat() 66 value = ucb1x00_adc_read(ucb, bat->adc_bat, UCB_SYNC); in collie_read_bat() 67 ucb1x00_adc_disable(ucb); in collie_read_bat() 84 ucb1x00_adc_enable(ucb); in collie_read_temp() 85 value = ucb1x00_adc_read(ucb, bat->adc_temp, UCB_SYNC); in collie_read_temp() 86 ucb1x00_adc_disable(ucb); in collie_read_temp() 300 if (device_may_wakeup(&dev->ucb->dev) && in collie_bat_suspend() 331 ucb = dev->ucb; in collie_bat_probe() 343 collie_bat_main.psy = power_supply_register(&dev->ucb->dev, in collie_bat_probe() [all …]
|
/Linux-v4.19/kernel/trace/ |
D | trace_uprobe.c | 737 struct uprobe_cpu_buffer *ucb; in uprobe_buffer_get() local 741 ucb = per_cpu_ptr(uprobe_cpu_buffer, cpu); in uprobe_buffer_get() 747 mutex_lock(&ucb->mutex); in uprobe_buffer_get() 749 return ucb; in uprobe_buffer_get() 752 static void uprobe_buffer_put(struct uprobe_cpu_buffer *ucb) in uprobe_buffer_put() argument 754 mutex_unlock(&ucb->mutex); in uprobe_buffer_put() 759 struct uprobe_cpu_buffer *ucb, int dsize, in __uprobe_trace_func() argument 794 memcpy(data, ucb->buf, tu->tp.size + dsize); in __uprobe_trace_func() 801 struct uprobe_cpu_buffer *ucb, int dsize) in uprobe_trace_func() argument 810 __uprobe_trace_func(tu, 0, regs, ucb, dsize, link->file); in uprobe_trace_func() [all …]
|
/Linux-v4.19/drivers/media/dvb-frontends/ |
D | cx24120.c | 618 u16 sig, ucb; in cx24120_get_stats() local 697 ucb = cx24120_readreg(state, CX24120_REG_UCB_H) << 8; in cx24120_get_stats() 698 ucb |= cx24120_readreg(state, CX24120_REG_UCB_L); in cx24120_get_stats() 699 dev_dbg(&state->i2c->dev, "ucblocks = %d\n", ucb); in cx24120_get_stats() 702 if (ucb < state->ucb_offset) in cx24120_get_stats() 706 c->block_error.stat[0].uvalue = ucb + state->ucb_offset; in cx24120_get_stats()
|
D | dib7000p.c | 1671 u32 ucb; in dib7000p_reset_stats() local 1695 dib7000p_read_unc_blocks(demod, &ucb); in dib7000p_reset_stats() 1697 state->old_ucb = ucb; in dib7000p_reset_stats() 1902 u64 blocks, ucb; in dib7000p_get_stats() local 1944 ucb = val - state->old_ucb; in dib7000p_get_stats() 1946 ucb += 0x100000000LL; in dib7000p_get_stats() 1949 c->block_error.stat[0].uvalue = ucb; in dib7000p_get_stats()
|
D | dib8000.c | 1002 u32 ucb; in dib8000_reset_stats() local 1026 dib8000_read_unc_blocks(fe, &ucb); in dib8000_reset_stats() 1028 state->init_ucb = -ucb; in dib8000_reset_stats()
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | tegra20-trimslice.dts | 197 nvidia,pins = "uca", "ucb"; 242 "uab", "uad", "uca", "ucb";
|
D | tegra20-tamonten.dtsi | 181 nvidia,pins = "uca", "ucb"; 227 "uca", "ucb";
|
D | tegra20-paz00.dts | 191 nvidia,pins = "uca", "ucb"; 231 "spie", "spih", "uad", "uca", "ucb";
|
D | tegra20-ventana.dts | 201 nvidia,pins = "uca", "ucb"; 211 "uac", "uad", "uca", "ucb", "uda";
|
D | tegra20-harmony.dts | 199 nvidia,pins = "uca", "ucb"; 245 "uca", "ucb";
|
D | tegra20-seaboard.dts | 202 nvidia,pins = "uca", "ucb"; 212 "uad", "uca", "ucb", "uda";
|
/Linux-v4.19/Documentation/devicetree/bindings/pinctrl/ |
D | nvidia,tegra20-pinmux.txt | 83 uca, ucb, uda.
|
/Linux-v4.19/drivers/pinctrl/tegra/ |
D | pinctrl-tegra20.c | 2162 MUX_PG(ucb, UARTC, PWM, GMI, RSVD4, 0x18, 23, 0x84, 18, 0xac, 10),
|
/Linux-v4.19/drivers/media/dvb-frontends/drx39xyj/ |
D | drxj.c | 12058 static int drx39xxj_read_ucblocks(struct dvb_frontend *fe, u32 *ucb) in drx39xxj_read_ucblocks() argument 12063 *ucb = 0; in drx39xxj_read_ucblocks() 12067 *ucb = p->block_error.stat[0].uvalue; in drx39xxj_read_ucblocks()
|