| /linux/sound/pcmcia/pdaudiocf/ |
| H A D | pdaudiocf_irq.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 18 struct snd_pdacf *chip = dev; in pdacf_interrupt() local 22 if ((chip->chip_status & (PDAUDIOCF_STAT_IS_STALE| in pdacf_interrupt() 27 stat = inw(chip->port + PDAUDIOCF_REG_ISR); in pdacf_interrupt() 30 dev_err(chip->card->dev, "PDAUDIOCF SRAM buffer overrun detected!\n"); in pdacf_interrupt() 31 if (chip->pcm_substream) in pdacf_interrupt() 37 snd_ak4117_check_rate_and_errors(chip->ak4117, 0); in pdacf_interrupt() 43 while (size-- > 0) { in pdacf_transfer_mono16() 53 while (size-- > 0) { in pdacf_transfer_mono32() 63 while (size-- > 0) { in pdacf_transfer_stereo16() [all …]
|
| /linux/drivers/dma/dw-edma/ |
| H A D | dw-edma-pcie.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (c) 2018-2019 Synopsys, Inc. and/or its affiliates. 14 #include <linux/pci-epf.h> 18 #include "dw-edma-core.h" 29 .off = b, \ 35 off_t off; member 58 .rg.off = 0x00001000, /* 4 Kbytes */ 62 /* Channel 0 - BAR 2, offset 0 Mbytes, size 2 Kbytes */ 64 /* Channel 1 - BAR 2, offset 2 Mbytes, size 2 Kbytes */ 68 /* Channel 0 - BAR 2, offset 4 Mbytes, size 2 Kbytes */ [all …]
|
| /linux/drivers/gpio/ |
| H A D | gpio-max732x.c | 1 // SPDX-License-Identifier: GPL-2.0-only 26 * - Push Pull Output 27 * - Input 28 * - Open Drain I/O 37 * - Group A : by I2C address 0b'110xxxx 38 * - Group B : by I2C address 0b'101xxxx 52 * NOTE: MAX7328/MAX7329 are drop-in replacements for PCF8574/a, so 57 #define PORT_OUTPUT 0x1 /* 'O' Push-Pull, Output Only */ 59 #define PORT_OPENDRAIN 0x3 /* 'P' Open-Drain, I/O */ 154 static int max732x_writeb(struct max732x_chip *chip, int group_a, uint8_t val) in max732x_writeb() argument [all …]
|
| H A D | gpio-adp5585.c | 1 // SPDX-License-Identifier: GPL-2.0-only 31 #define ADP5585_BIT(n) ((n) >= 6 ? BIT((n) - 6) : BIT(n)) 42 int (*bank)(unsigned int off); 43 int (*bit)(unsigned int off); 69 static int adp5585_gpio_bank(unsigned int off) in adp5585_gpio_bank() argument 71 return ADP5585_BANK(off); in adp5585_gpio_bank() 74 static int adp5585_gpio_bit(unsigned int off) in adp5585_gpio_bit() argument 76 return ADP5585_BIT(off); in adp5585_gpio_bit() 79 static int adp5589_gpio_bank(unsigned int off) in adp5589_gpio_bank() argument 81 return ADP5589_BANK(off); in adp5589_gpio_bank() [all …]
|
| H A D | gpio-adp5520.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 23 static int adp5520_gpio_get_value(struct gpio_chip *chip, unsigned off) in adp5520_gpio_get_value() argument 28 dev = gpiochip_get_data(chip); in adp5520_gpio_get_value() 35 if (test_bit(off, &dev->output)) in adp5520_gpio_get_value() 36 adp5520_read(dev->master, ADP5520_GPIO_OUT, ®_val); in adp5520_gpio_get_value() 38 adp5520_read(dev->master, ADP5520_GPIO_IN, ®_val); in adp5520_gpio_get_value() 40 return !!(reg_val & dev->lut[off]); in adp5520_gpio_get_value() 43 static int adp5520_gpio_set_value(struct gpio_chip *chip, in adp5520_gpio_set_value() argument 44 unsigned int off, int val) in adp5520_gpio_set_value() argument 47 dev = gpiochip_get_data(chip); in adp5520_gpio_set_value() [all …]
|
| H A D | gpio-pca953x.c | 1 // SPDX-License-Identifier: GPL-2.0-only 32 #include <linux/pinctrl/pinconf-generic.h> 141 { "irq-gpios", &pca953x_irq_gpios, 1, ACPI_GPIO_QUIRK_ABSOLUTE_NUMBER }, 167 * relative. Since first controller (gpio-sch.c) and 168 * second (gpio-dwapb.c) are at the fixed bases, we may 190 #define NBANK(chip) DIV_ROUND_UP(chip->gpio_chip.ngpio, BANK_SZ) argument 243 u8 (*recalc_addr)(struct pca953x_chip *chip, int reg, int off); 244 bool (*check_reg)(struct pca953x_chip *chip, unsigned int reg, 248 static int pca953x_bank_shift(struct pca953x_chip *chip) in pca953x_bank_shift() argument 250 return fls((chip->gpio_chip.ngpio - 1) / BANK_SZ); in pca953x_bank_shift() [all …]
|
| /linux/arch/mips/alchemy/common/ |
| H A D | gpiolib.c | 2 * Copyright (C) 2007-2009, OpenWrt.org, Florian Fainelli <florian@openwrt.org> 35 #include <asm/mach-au1x00/gpio-au1000.h> 36 #include <asm/mach-au1x00/gpio-au1300.h> 38 static int gpio2_get(struct gpio_chip *chip, unsigned offset) in gpio2_get() argument 43 static int gpio2_set(struct gpio_chip *chip, unsigned offset, int value) in gpio2_set() argument 50 static int gpio2_direction_input(struct gpio_chip *chip, unsigned offset) in gpio2_direction_input() argument 55 static int gpio2_direction_output(struct gpio_chip *chip, unsigned offset, in gpio2_direction_output() argument 62 static int gpio2_to_irq(struct gpio_chip *chip, unsigned offset) in gpio2_to_irq() argument 68 static int gpio1_get(struct gpio_chip *chip, unsigned offset) in gpio1_get() argument 73 static int gpio1_set(struct gpio_chip *chip, in gpio1_set() argument [all …]
|
| /linux/tools/perf/pmu-events/arch/s390/cf_zec12/ |
| H A D | extended.json | 3 "Unit": "CPU-M-CF", 7 …"PublicDescription": "Level-1 Data TLB miss in progress. Incremented by one for every cycle a DTLB… 10 "Unit": "CPU-M-CF", 14 …"PublicDescription": "Level-1 Instruction TLB miss in progress. Incremented by one for every cycle… 17 "Unit": "CPU-M-CF", 21 …on": "A directory write to the Level-1 Data cache directory where the returned cache line was sour… 24 "Unit": "CPU-M-CF", 28 … "A directory write to the Level-1 Instruction cache directory where the returned cache line was s… 31 "Unit": "CPU-M-CF", 35 …on": "A directory write to the Level-1 Data cache directory where the returned cache line was sour… [all …]
|
| /linux/arch/arm/mach-s3c/ |
| H A D | gpio-samsung.c | 1 // SPDX-License-Identifier: GPL-2.0 3 // Copyright (c) 2009-2011 Samsung Electronics Co., Ltd. 11 // Samsung - GPIOlib support 31 #include "regs-gpio.h" 32 #include "gpio-samsung.h" 35 #include "gpio-core.h" 36 #include "gpio-cfg.h" 37 #include "gpio-cfg-helpers.h" 40 static int samsung_gpio_setpull_updown(struct samsung_gpio_chip *chip, in samsung_gpio_setpull_updown() argument 41 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_setpull_updown() argument [all …]
|
| H A D | gpio-cfg-helpers.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 8 * Samsung Platform - GPIO pin configuration helper definitions 23 static inline int samsung_gpio_do_setcfg(struct samsung_gpio_chip *chip, in samsung_gpio_do_setcfg() argument 24 unsigned int off, unsigned int config) in samsung_gpio_do_setcfg() argument 26 return (chip->config->set_config)(chip, off, config); in samsung_gpio_do_setcfg() 29 static inline int samsung_gpio_do_setpull(struct samsung_gpio_chip *chip, in samsung_gpio_do_setpull() argument 30 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_do_setpull() argument 32 return (chip->config->set_pull)(chip, off, pull); in samsung_gpio_do_setpull()
|
| /linux/sound/ppc/ |
| H A D | burgundy.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 20 snd_pmac_burgundy_busy_wait(struct snd_pmac *chip) in snd_pmac_burgundy_busy_wait() argument 23 while ((in_le32(&chip->awacs->codec_ctrl) & MASK_NEWECMD) && timeout- in snd_pmac_burgundy_busy_wait() 30 snd_pmac_burgundy_extend_wait(struct snd_pmac * chip) snd_pmac_burgundy_extend_wait() argument 46 snd_pmac_burgundy_wcw(struct snd_pmac * chip,unsigned addr,unsigned val) snd_pmac_burgundy_wcw() argument 59 snd_pmac_burgundy_rcw(struct snd_pmac * chip,unsigned addr) snd_pmac_burgundy_rcw() argument 92 snd_pmac_burgundy_wcb(struct snd_pmac * chip,unsigned int addr,unsigned int val) snd_pmac_burgundy_wcb() argument 100 snd_pmac_burgundy_rcb(struct snd_pmac * chip,unsigned int addr) snd_pmac_burgundy_rcb() argument 124 snd_pmac_burgundy_write_volume(struct snd_pmac * chip,unsigned int address,long * volume,int shift) snd_pmac_burgundy_write_volume() argument 143 snd_pmac_burgundy_read_volume(struct snd_pmac * chip,unsigned int address,long * volume,int shift) snd_pmac_burgundy_read_volume() argument 175 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_get_volume() local 186 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_put_volume() local 209 snd_pmac_burgundy_write_volume_2b(struct snd_pmac * chip,unsigned int address,long * volume,int off) snd_pmac_burgundy_write_volume_2b() argument 210 snd_pmac_burgundy_write_volume_2b(struct snd_pmac * chip,unsigned int address,long * volume,int off) snd_pmac_burgundy_write_volume_2b() argument 223 snd_pmac_burgundy_read_volume_2b(struct snd_pmac * chip,unsigned int address,long * volume,int off) snd_pmac_burgundy_read_volume_2b() argument 224 snd_pmac_burgundy_read_volume_2b(struct snd_pmac * chip,unsigned int address,long * volume,int off) snd_pmac_burgundy_read_volume_2b() argument 251 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_get_volume_2b() local 253 int off = kcontrol->private_value & 0x300; snd_pmac_burgundy_get_volume_2b() local 262 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_put_volume_2b() local 264 int off = kcontrol->private_value & 0x300; snd_pmac_burgundy_put_volume_2b() local 274 BURGUNDY_VOLUME_2B(xname,xindex,addr,off) global() argument 298 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_get_gain() local 316 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_put_gain() local 360 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_get_switch_w() local 375 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_put_switch_w() local 416 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_get_switch_b() local 431 struct snd_pmac *chip = snd_kcontrol_chip(kcontrol); snd_pmac_burgundy_put_switch_b() local 564 snd_pmac_burgundy_detect_headphone(struct snd_pmac * chip) snd_pmac_burgundy_detect_headphone() argument 569 snd_pmac_burgundy_update_automute(struct snd_pmac * chip,int do_notify) snd_pmac_burgundy_update_automute() argument 608 snd_pmac_burgundy_init(struct snd_pmac * chip) snd_pmac_burgundy_init() argument [all...] |
| /linux/drivers/leds/ |
| H A D | leds-an30259a.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 // Driver for Panasonic AN30259A 3-channel LED driver 24 #define AN30259A_LED_EN(x) BIT((x) - 1) 25 #define AN30259A_LED_SLOPE(x) BIT(((x) - 1) + 4) 27 #define AN30259A_REG_LEDCC(x) (0x03 + ((x) - 1)) 30 #define AN30259A_REG_SLOPE(x) (0x06 + ((x) - 1)) 34 #define AN30259A_REG_LEDCNT1(x) (0x09 + (4 * ((x) - 1))) 38 #define AN30259A_REG_LEDCNT2(x) (0x0A + (4 * ((x) - 1))) 43 #define AN30259A_REG_LEDCNT3(x) (0x0B + (4 * ((x) - 1))) 47 #define AN30259A_REG_LEDCNT4(x) (0x0C + (4 * ((x) - 1))) [all …]
|
| H A D | leds-aw2013.c | 1 // SPDX-License-Identifier: GPL-2.0+ 2 // Driver for Awinic AW2013 3-channel LED driver 29 #define AW2013_LCFG_IMAX_MASK (BIT(0) | BIT(1)) // Should be 0-3 39 #define AW2013_LEDT0_T1(x) ((x) << 4) // Should be 0-7 40 #define AW2013_LEDT0_T2(x) (x) // Should be 0-5 43 #define AW2013_LEDT1_T3(x) ((x) << 4) // Should be 0-7 44 #define AW2013_LEDT1_T4(x) (x) // Should be 0-7 47 #define AW2013_LEDT2_T0(x) ((x) << 4) // Should be 0-8 48 #define AW2013_LEDT2_REPEAT(x) (x) // Should be 0-15 57 struct aw2013 *chip; member [all …]
|
| /linux/arch/powerpc/platforms/powernv/ |
| H A D | opal-xscom.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 30 * its form. Bits 4-11 are always 0. in opal_scom_unmangle() 34 * of the 64-bit address, and thus cannot use the indirect bit. in opal_scom_unmangle() 37 * bits 4-7 (IBM notation) instead of bit 0-3 in this API, we in opal_scom_unmangle() 40 * For in-kernel use, we don't need to do this mangling. In in opal_scom_unmangle() 41 * kernel won't have bits 4-7 set. in opal_scom_unmangle() 44 * debugfs will always set 0-3 = 0 and clear 4-7 in opal_scom_unmangle() 45 * kernel will always clear 0-3 = 0 and set 4-7 in opal_scom_unmangle() 55 static int opal_scom_read(uint32_t chip, uint64_t addr, u64 reg, u64 *value) in opal_scom_read() argument 61 rc = opal_xscom_read(chip, reg, (__be64 *)__pa(&v)); in opal_scom_read() [all …]
|
| /linux/drivers/pinctrl/spear/ |
| H A D | pinctrl-plgpio.c | 58 * chip: gpio framework specific chip information structure 60 * machines where mapping b/w pin and offset is not 1-to-1. 62 * machines where mapping b/w pin and offset is not 1-to-1. 71 struct gpio_chip chip; member 115 static int plgpio_direction_input(struct gpio_chip *chip, unsigned offset) in plgpio_direction_input() argument 117 struct plgpio *plgpio = gpiochip_get_data(chip); in plgpio_direction_input() 121 if (plgpio->p2o && (plgpio->p2o_regs & PTO_DIR_REG)) { in plgpio_direction_input() 122 offset = plgpio->p2o(offset); in plgpio_direction_input() 123 if (offset == -1) in plgpio_direction_input() 124 return -EINVAL; in plgpio_direction_input() [all …]
|
| /linux/tools/perf/pmu-events/arch/s390/cf_z14/ |
| H A D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 17 "Unit": "CPU-M-CF", 21 …data cache. Incremented by one for every TLB2 miss in progress for the Level-1 Data cache on this … 24 "Unit": "CPU-M-CF", 27 "BriefDescription": "DTLB2 One-Megabyte Page Writes", 28 … into the Combined Region and Segment Table Entry array in the Level-2 TLB for a one-megabyte page… 31 "Unit": "CPU-M-CF", [all …]
|
| /linux/drivers/pwm/ |
| H A D | pwm-adp5585.c | 1 // SPDX-License-Identifier: GPL-2.0-only 9 * - The .apply() operation executes atomically, but may not wait for the 11 * - Disabling the PWM drives the output pin to a low level immediately. 12 * - The hardware can only generate normal polarity output. 48 static int pwm_adp5585_request(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_adp5585_request() argument 50 struct adp5585_pwm *adp5585_pwm = pwmchip_get_drvdata(chip); in pwm_adp5585_request() 53 return regmap_update_bits(adp5585_pwm->regmap, adp5585_pwm->ext_cfg, in pwm_adp5585_request() 58 static void pwm_adp5585_free(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_adp5585_free() argument 60 struct adp5585_pwm *adp5585_pwm = pwmchip_get_drvdata(chip); in pwm_adp5585_free() 62 regmap_update_bits(adp5585_pwm->regmap, adp5585_pwm->ext_cfg, in pwm_adp5585_free() [all …]
|
| H A D | pwm-twl.c | 1 // SPDX-License-Identifier: GPL-2.0-only 54 static inline struct twl_pwm_chip *to_twl(struct pwm_chip *chip) in to_twl() argument 56 return pwmchip_get_drvdata(chip); in to_twl() 59 static int twl_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in twl_pwm_config() argument 68 * On-cycle is set to 1 (the minimum allowed value) in twl_pwm_config() 69 * The off time of 0 is not configurable, so the mapping is: in twl_pwm_config() 70 * 0 -> off cycle = 2, in twl_pwm_config() 71 * 1 -> off cycle = 2, in twl_pwm_config() 72 * 2 -> off cycle = 3, in twl_pwm_config() 73 * 126 - > off cycle 127, in twl_pwm_config() [all …]
|
| H A D | pwm-twl-led.c | 1 // SPDX-License-Identifier: GPL-2.0-only 8 * This driver is a complete rewrite of the former pwm-twl6030.c authorded by: 15 * - The twl6030 hardware only supports two period lengths (128 clock ticks and 17 * - The hardware doesn't support ON = 0, so the active part of a period doesn't 19 * - The hardware could support inverted polarity (with a similar limitation as 21 * - The hardware emits a constant low output when disabled. 22 * - A request for .duty_cycle = 0 results in an output wave with one active 24 * - The driver only implements setting the relative duty cycle. 25 * - The driver doesn't implement .get_state(). 38 * - LEDA uses PWMA [all …]
|
| /linux/tools/perf/pmu-events/arch/s390/cf_z15/ |
| H A D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 17 "Unit": "CPU-M-CF", 21 …data cache. Incremented by one for every TLB2 miss in progress for the Level-1 Data cache on this … 24 "Unit": "CPU-M-CF", 27 "BriefDescription": "DTLB2 One-Megabyte Page Writes", 28 … into the Combined Region and Segment Table Entry array in the Level-2 TLB for a one-megabyte page… 31 "Unit": "CPU-M-CF", [all …]
|
| /linux/tools/perf/pmu-events/arch/s390/cf_z16/ |
| H A D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 14 … Translation Lookaside Buffer 2 (TLB2) and the request was made by the Level-1 Data cache. This is… 17 "Unit": "CPU-M-CF", 21 …ress for a request made by the Level-1 Data cache. Incremented by one for every TLB2 miss in progr… 24 "Unit": "CPU-M-CF", 28 … into the Combined Region and Segment Table Entry array in the Level-2 TLB for a one-megabyte page… 31 "Unit": "CPU-M-CF", [all …]
|
| /linux/tools/perf/pmu-events/arch/s390/cf_z13/ |
| H A D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 14 …"PublicDescription": "A translation entry has been written to the Level-1 Data Translation Lookasi… 17 "Unit": "CPU-M-CF", 21 …"PublicDescription": "Level-1 Data TLB miss in progress. Incremented by one for every cycle a DTLB… 24 "Unit": "CPU-M-CF", 27 "BriefDescription": "DTLB1 One-Megabyte Page Writes", 28 …": "A translation entry has been written to the Level-1 Data Translation Lookaside Buffer for a on… [all …]
|
| /linux/tools/perf/pmu-events/arch/s390/cf_z196/ |
| H A D | extended.json | 3 "Unit": "CPU-M-CF", 7 …on": "A directory write to the Level-1 Data Cache directory where the returned cache line was sour… 10 "Unit": "CPU-M-CF", 14 … "A directory write to the Level-1 Instruction Cache directory where the returned cache line was s… 17 "Unit": "CPU-M-CF", 21 …"PublicDescription": "Level-1 Data TLB miss in progress. Incremented by one for every cycle a DTLB… 24 "Unit": "CPU-M-CF", 28 …"PublicDescription": "Level-1 Instruction TLB miss in progress. Incremented by one for every cycle… 31 "Unit": "CPU-M-CF", 35 "PublicDescription": "Incremented by one for every store sent to Level-2 cache." [all …]
|
| /linux/tools/perf/pmu-events/arch/s390/cf_z17/ |
| H A D | extended.json | 3 "Unit": "CPU-M-CF", 6 "BriefDescription": "L1D Read-only Exclusive Writes", 7 …blicDescription": "A directory write to the Level-1 Data cache where the line was originally in a … 10 "Unit": "CPU-M-CF", 14 … Translation Lookaside Buffer 2 (TLB2) and the request was made by the Level-1 Data cache. This is… 17 "Unit": "CPU-M-CF", 21 …ress for a request made by the Level-1 Data cache. Incremented by one for every TLB2 miss in progr… 24 "Unit": "CPU-M-CF", 28 … into the Combined Region and Segment Table Entry array in the Level-2 TLB for a one-megabyte page… 31 "Unit": "CPU-M-CF", [all …]
|
| /linux/drivers/char/tpm/ |
| H A D | tpm-dev-common.c | 1 // SPDX-License-Identifier: GPL-2.0-only 20 #include "tpm-dev.h" 24 static ssize_t tpm_dev_transmit(struct tpm_chip *chip, struct tpm_space *space, in tpm_dev_transmit() argument 30 if (chip->flags & TPM_CHIP_FLAG_TPM2) in tpm_dev_transmit() 31 tpm2_end_auth_session(chip); in tpm_dev_transmit() 33 ret = tpm2_prepare_space(chip, space, buf, bufsiz); in tpm_dev_transmit() 35 * response with a TPM2_RC_COMMAND_CODE return for user-space. in tpm_dev_transmit() 37 if (ret == -EOPNOTSUPP) { in tpm_dev_transmit() 38 header->length = cpu_to_be32(sizeof(*header)); in tpm_dev_transmit() 39 header->tag = cpu_to_be16(TPM2_ST_NO_SESSIONS); in tpm_dev_transmit() [all …]
|