/linux-3.3/drivers/net/wireless/b43/ |
D | radio_2055.h | 10 #define B2055_C1_SP_RSSI 0x03 /* SP RSSI Core 1 */ 11 #define B2055_C1_SP_PDMISC 0x04 /* SP PD MISC Core 1 */ 12 #define B2055_C2_SP_RSSI 0x05 /* SP RSSI Core 2 */ 13 #define B2055_C2_SP_PDMISC 0x06 /* SP PD MISC Core 2 */ 14 #define B2055_C1_SP_RXGC1 0x07 /* SP RX GC1 Core 1 */ 15 #define B2055_C1_SP_RXGC2 0x08 /* SP RX GC2 Core 1 */ 16 #define B2055_C2_SP_RXGC1 0x09 /* SP RX GC1 Core 2 */ 17 #define B2055_C2_SP_RXGC2 0x0A /* SP RX GC2 Core 2 */ 18 #define B2055_C1_SP_LPFBWSEL 0x0B /* SP LPF BW select Core 1 */ 19 #define B2055_C2_SP_LPFBWSEL 0x0C /* SP LPF BW select Core 2 */ [all …]
|
/linux-3.3/drivers/net/wireless/brcm80211/include/ |
D | soc.h | 22 /* core codes */ 24 #define CC_CORE_ID 0x800 /* chipcommon core */ 25 #define ILINE20_CORE_ID 0x801 /* iline20 core */ 26 #define SRAM_CORE_ID 0x802 /* sram core */ 27 #define SDRAM_CORE_ID 0x803 /* sdram core */ 28 #define PCI_CORE_ID 0x804 /* pci core */ 29 #define MIPS_CORE_ID 0x805 /* mips core */ 30 #define ENET_CORE_ID 0x806 /* enet mac core */ 31 #define CODEC_CORE_ID 0x807 /* v90 codec core */ 32 #define USB_CORE_ID 0x808 /* usb 1.1 host/device core */ [all …]
|
/linux-3.3/drivers/bcma/ |
D | main.c | 23 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in manuf_show() local 24 return sprintf(buf, "0x%03X\n", core->id.manuf); in manuf_show() 28 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in id_show() local 29 return sprintf(buf, "0x%03X\n", core->id.id); in id_show() 33 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in rev_show() local 34 return sprintf(buf, "0x%02X\n", core->id.rev); in rev_show() 38 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in class_show() local 39 return sprintf(buf, "0x%X\n", core->id.class); in class_show() 60 struct bcma_device *core; in bcma_find_core() local 62 list_for_each_entry(core, &bus->cores, list) { in bcma_find_core() [all …]
|
D | host_pci.c | 14 static void bcma_host_pci_switch_core(struct bcma_device *core) in bcma_host_pci_switch_core() argument 16 pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN, in bcma_host_pci_switch_core() 17 core->addr); in bcma_host_pci_switch_core() 18 pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN2, in bcma_host_pci_switch_core() 19 core->wrap); in bcma_host_pci_switch_core() 20 core->bus->mapped_core = core; in bcma_host_pci_switch_core() 21 pr_debug("Switched to core: 0x%X\n", core->id.id); in bcma_host_pci_switch_core() 24 /* Provides access to the requested core. Returns base offset that has to be 26 static u16 bcma_host_pci_provide_access_to_core(struct bcma_device *core) in bcma_host_pci_provide_access_to_core() argument 28 switch (core->id.id) { in bcma_host_pci_provide_access_to_core() [all …]
|
D | core.c | 3 * Core ops 12 bool bcma_core_is_enabled(struct bcma_device *core) in bcma_core_is_enabled() argument 14 if ((bcma_aread32(core, BCMA_IOCTL) & (BCMA_IOCTL_CLK | BCMA_IOCTL_FGC)) in bcma_core_is_enabled() 17 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET) in bcma_core_is_enabled() 23 void bcma_core_disable(struct bcma_device *core, u32 flags) in bcma_core_disable() argument 25 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET) in bcma_core_disable() 28 bcma_awrite32(core, BCMA_IOCTL, flags); in bcma_core_disable() 29 bcma_aread32(core, BCMA_IOCTL); in bcma_core_disable() 32 bcma_awrite32(core, BCMA_RESET_CTL, BCMA_RESET_CTL_RESET); in bcma_core_disable() 37 int bcma_core_enable(struct bcma_device *core, u32 flags) in bcma_core_enable() argument [all …]
|
D | scan.c | 206 struct bcma_device *core; in bcma_find_core_by_index() local 208 list_for_each_entry(core, &bus->cores, list) { in bcma_find_core_by_index() 209 if (core->core_index == index) in bcma_find_core_by_index() 210 return core; in bcma_find_core_by_index() 217 struct bcma_device *core) in bcma_get_next_core() argument 237 core->id.class = (cia & SCAN_CIA_CLASS) >> SCAN_CIA_CLASS_SHIFT; in bcma_get_next_core() 238 core->id.id = (cia & SCAN_CIA_ID) >> SCAN_CIA_ID_SHIFT; in bcma_get_next_core() 239 core->id.manuf = (cia & SCAN_CIA_MANUF) >> SCAN_CIA_MANUF_SHIFT; in bcma_get_next_core() 244 core->id.rev = (cib & SCAN_CIB_REV) >> SCAN_CIB_REV_SHIFT; in bcma_get_next_core() 246 if (((core->id.manuf == BCMA_MANUF_ARM) && in bcma_get_next_core() [all …]
|
D | host_soc.c | 13 static u8 bcma_host_soc_read8(struct bcma_device *core, u16 offset) in bcma_host_soc_read8() argument 15 return readb(core->io_addr + offset); in bcma_host_soc_read8() 18 static u16 bcma_host_soc_read16(struct bcma_device *core, u16 offset) in bcma_host_soc_read16() argument 20 return readw(core->io_addr + offset); in bcma_host_soc_read16() 23 static u32 bcma_host_soc_read32(struct bcma_device *core, u16 offset) in bcma_host_soc_read32() argument 25 return readl(core->io_addr + offset); in bcma_host_soc_read32() 28 static void bcma_host_soc_write8(struct bcma_device *core, u16 offset, in bcma_host_soc_write8() argument 31 writeb(value, core->io_addr + offset); in bcma_host_soc_write8() 34 static void bcma_host_soc_write16(struct bcma_device *core, u16 offset, in bcma_host_soc_write16() argument 37 writew(value, core->io_addr + offset); in bcma_host_soc_write16() [all …]
|
D | driver_mips.c | 3 * Broadcom MIPS32 74K core driver 41 return bcma_read32(mcore->core, offset); in mips_read32() 48 bcma_write32(mcore->core, offset, value); in mips_write32() 85 struct bcma_device *mdev = dev->bus->drv_mips.core; in bcma_core_mips_irq() 104 struct bcma_device *mdev = bus->drv_mips.core; in bcma_core_mips_set_irq() 129 struct bcma_device *core; in bcma_core_mips_set_irq() local 134 list_for_each_entry_reverse(core, &bus->cores, list) { in bcma_core_mips_set_irq() 135 if ((1 << bcma_core_mips_irqflag(core)) == in bcma_core_mips_set_irq() 137 bcma_core_mips_set_irq(core, 0); in bcma_core_mips_set_irq() 146 pr_info("set_irq: core 0x%04x, irq %d => %d\n", in bcma_core_mips_set_irq() [all …]
|
/linux-3.3/drivers/media/radio/ |
D | radio-wl1273.c | 24 #include <linux/mfd/wl1273-core.h> 89 struct wl1273_core *core; member 107 static int wl1273_fm_write_fw(struct wl1273_core *core, in wl1273_fm_write_fw() argument 110 struct i2c_client *client = core->client; in wl1273_fm_write_fw() 145 struct wl1273_core *core = radio->core; in wl1273_fm_rds() local 146 struct i2c_client *client = core->client; in wl1273_fm_rds() 166 if (core->mode != WL1273_MODE_RX) in wl1273_fm_rds() 169 r = core->read(core, WL1273_RDS_SYNC_GET, &val); in wl1273_fm_rds() 233 struct wl1273_core *core = radio->core; in wl1273_fm_irq_thread_handler() local 237 r = core->read(core, WL1273_FLAG_GET, &flags); in wl1273_fm_irq_thread_handler() [all …]
|
/linux-3.3/drivers/mfd/ |
D | wl1273-core.c | 23 #include <linux/mfd/wl1273-core.h> 27 #define DRIVER_DESC "WL1273 FM Radio Core" 35 static int wl1273_fm_read_reg(struct wl1273_core *core, u8 reg, u16 *value) in wl1273_fm_read_reg() argument 37 struct i2c_client *client = core->client; in wl1273_fm_read_reg() 52 static int wl1273_fm_write_cmd(struct wl1273_core *core, u8 cmd, u16 param) in wl1273_fm_write_cmd() argument 54 struct i2c_client *client = core->client; in wl1273_fm_write_cmd() 67 static int wl1273_fm_write_data(struct wl1273_core *core, u8 *data, u16 len) in wl1273_fm_write_data() argument 69 struct i2c_client *client = core->client; in wl1273_fm_write_data() 89 * @core: A pointer to the device struct. 94 static int wl1273_fm_set_audio(struct wl1273_core *core, unsigned int new_mode) in wl1273_fm_set_audio() argument [all …]
|
D | Makefile | 5 88pm860x-objs := 88pm860x-core.o 88pm860x-i2c.o 26 obj-$(CONFIG_MFD_WM8400) += wm8400-core.o 27 wm831x-objs := wm831x-core.o wm831x-irq.o wm831x-otp.o 32 wm8350-objs := wm8350-core.o wm8350-regmap.o wm8350-gpio.o 36 obj-$(CONFIG_MFD_WM8994) += wm8994-core.o wm8994-irq.o wm8994-regmap.o 42 tps65912-objs := tps65912-core.o tps65912-irq.o 48 obj-$(CONFIG_TWL4030_CORE) += twl-core.o twl4030-irq.o twl6030-irq.o 53 obj-$(CONFIG_TWL6040_CORE) += twl6040-core.o twl6040-irq.o 55 obj-$(CONFIG_MFD_MC13XXX) += mc13xxx-core.o 57 obj-$(CONFIG_MFD_CORE) += mfd-core.o [all …]
|
/linux-3.3/include/linux/bcma/ |
D | bcma.h | 35 u8 (*read8)(struct bcma_device *core, u16 offset); 36 u16 (*read16)(struct bcma_device *core, u16 offset); 37 u32 (*read32)(struct bcma_device *core, u16 offset); 38 void (*write8)(struct bcma_device *core, u16 offset, u8 value); 39 void (*write16)(struct bcma_device *core, u16 offset, u16 value); 40 void (*write32)(struct bcma_device *core, u16 offset, u32 value); 42 void (*block_read)(struct bcma_device *core, void *buffer, 44 void (*block_write)(struct bcma_device *core, const void *buffer, 48 u32 (*aread32)(struct bcma_device *core, u16 offset); 49 void (*awrite32)(struct bcma_device *core, u16 offset, u32 value); [all …]
|
/linux-3.3/arch/parisc/kernel/ |
D | hardware.c | 327 {HPHW_A_DMA, 0x005, 0x00039, 0x80, "KittyHawk CSY Core SCSI"}, 333 {HPHW_A_DMA, 0x005, 0x0003B, 0x80, "KittyHawk CSY Core FW-SCSI"}, 354 {HPHW_A_DMA, 0x015, 0x00089, 0x80, "KittyHawk GSY Core FW-SCSI"}, 358 {HPHW_A_DMA, 0x032, 0x00089, 0x80, "Raven T' Core FW-SCSI"}, 359 {HPHW_A_DMA, 0x03B, 0x00089, 0x80, "Raven U/L2 Core FW-SCSI"}, 360 {HPHW_A_DMA, 0x03C, 0x00089, 0x80, "Merlin 132 Core FW-SCSI"}, 361 {HPHW_A_DMA, 0x03D, 0x00089, 0x80, "Merlin 160 Core FW-SCSI"}, 362 {HPHW_A_DMA, 0x044, 0x00089, 0x80, "Mohawk Core FW-SCSI"}, 387 {HPHW_BA, 0x004, 0x00070, 0x0, "Cobra Core BA"}, 388 {HPHW_BA, 0x005, 0x00070, 0x0, "Coral Core BA"}, [all …]
|
/linux-3.3/drivers/media/video/cx88/ |
D | cx88-i2c.c | 52 printk(KERN_DEBUG "%s: " fmt, core->name , ## arg) 58 struct cx88_core *core = data; in cx8800_bit_setscl() local 61 core->i2c_state |= 0x02; in cx8800_bit_setscl() 63 core->i2c_state &= ~0x02; in cx8800_bit_setscl() 64 cx_write(MO_I2C, core->i2c_state); in cx8800_bit_setscl() 70 struct cx88_core *core = data; in cx8800_bit_setsda() local 73 core->i2c_state |= 0x01; in cx8800_bit_setsda() 75 core->i2c_state &= ~0x01; in cx8800_bit_setsda() 76 cx_write(MO_I2C, core->i2c_state); in cx8800_bit_setsda() 82 struct cx88_core *core = data; in cx8800_bit_getscl() local [all …]
|
D | cx88-video.c | 77 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg) 347 int cx8800_ctrl_query(struct cx88_core *core, struct v4l2_queryctrl *qctrl) in cx8800_ctrl_query() argument 364 core->tvnorm & V4L2_STD_SECAM) in cx8800_ctrl_query() 376 struct cx88_core *core = dev->core; in res_get() local 382 mutex_lock(&core->lock); in res_get() 385 mutex_unlock(&core->lock); in res_get() 392 mutex_unlock(&core->lock); in res_get() 411 struct cx88_core *core = dev->core; in res_free() local 414 mutex_lock(&core->lock); in res_free() 418 mutex_unlock(&core->lock); in res_free() [all …]
|
D | cx88-dvb.c | 80 printk(KERN_DEBUG "%s/2-dvb: " fmt, core->name, ## arg) 138 mutex_lock(&dev->core->lock); in cx88_dvb_bus_ctrl() 149 mutex_unlock(&dev->core->lock); in cx88_dvb_bus_ctrl() 154 static void cx88_dvb_gate_ctrl(struct cx88_core *core, int open) in cx88_dvb_gate_ctrl() argument 159 if (!core->dvbdev) in cx88_dvb_gate_ctrl() 162 f = &core->dvbdev->frontends; in cx88_dvb_gate_ctrl() 345 struct cx88_core *core = dev->core; in lgdt330x_pll_rf_set() local 410 struct cx88_core *core = dev->core; in kworld_dvbs_100_set_voltage() local 417 if (core->prev_set_voltage) in kworld_dvbs_100_set_voltage() 418 return core->prev_set_voltage(fe, voltage); in kworld_dvbs_100_set_voltage() [all …]
|
D | cx88-blackbird.c | 56 printk(KERN_DEBUG "%s/2-bb: " fmt, dev->core->name , ## arg) 183 static void host_setup(struct cx88_core *core) in host_setup() argument 217 static int wait_ready_gpio0_bit1(struct cx88_core *core, u32 state) in wait_ready_gpio0_bit1() argument 233 static int memory_write(struct cx88_core *core, u32 address, u32 value) in memory_write() argument 246 return wait_ready_gpio0_bit1(core,1); in memory_write() 249 static int memory_read(struct cx88_core *core, u32 address, u32 *value) in memory_read() argument 260 retval = wait_ready_gpio0_bit1(core,1); in memory_read() 275 static int register_write(struct cx88_core *core, u32 address, u32 value) in register_write() argument 287 return wait_ready_gpio0_bit1(core,1); in register_write() 291 static int register_read(struct cx88_core *core, u32 address, u32 *value) in register_read() argument [all …]
|
D | cx88-tvaudio.c | 69 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg) 104 static void set_audio_registers(struct cx88_core *core, const struct rlist *l) in set_audio_registers() argument 125 static void set_audio_start(struct cx88_core *core, u32 mode) in set_audio_start() argument 136 static void set_audio_finish(struct cx88_core *core, u32 ctl) in set_audio_finish() argument 141 cx88_stop_audio_dma(core); in set_audio_finish() 143 cx88_start_audio_dma(core); in set_audio_finish() 145 if (core->board.mpeg & CX88_MPEG_BLACKBIRD) { in set_audio_finish() 154 if ((always_analog) || (!(core->board.mpeg & CX88_MPEG_BLACKBIRD))) { in set_audio_finish() 166 core->last_change = jiffies; in set_audio_finish() 171 static void set_audio_standard_BTSC(struct cx88_core *core, unsigned int sap, in set_audio_standard_BTSC() argument [all …]
|
D | cx88-mpeg.c | 49 printk(KERN_DEBUG "%s/2-mpeg: " fmt, dev->core->name, ## arg) 52 printk(KERN_DEBUG "%s/2-mpeg: " fmt, core->name, ## arg) 59 if (dev->core->board.mpeg & CX88_MPEG_DVB) in request_module_async() 61 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD) in request_module_async() 89 struct cx88_core *core = dev->core; in cx8802_start_dma() local 95 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28], in cx8802_start_dma() 104 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id); in cx8802_start_dma() 106 if ( (core->active_type_id == CX88_MPEG_DVB) && in cx8802_start_dma() 107 (core->board.mpeg & CX88_MPEG_DVB) ) { in cx8802_start_dma() 115 switch (core->boardnr) { in cx8802_start_dma() [all …]
|
D | cx88.h | 128 /* SRAM memory management data (see cx88-core.c) */ 307 #define INPUT(nr) (core->board.input[nr]) 373 void (*gate_ctrl)(struct cx88_core *core, int open); 414 #define call_hw(core, grpid, o, f, args...) \ argument 416 if (!core->i2c_rc) { \ 417 if (core->gate_ctrl) \ 418 core->gate_ctrl(core, 1); \ 419 v4l2_device_call_all(&core->v4l2_dev, grpid, o, f, ##args); \ 420 if (core->gate_ctrl) \ 421 core->gate_ctrl(core, 0); \ [all …]
|
D | cx88-input.c | 32 #include <media/rc-core.h> 39 struct cx88_core *core; member 69 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg) 78 struct cx88_core *core = ir->core; in cx88_ir_handle_key() local 83 switch (core->boardnr) { in cx88_ir_handle_key() 128 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) { in cx88_ir_handle_key() 172 struct cx88_core *core = priv; in __cx88_ir_start() local 175 if (!core || !core->ir) in __cx88_ir_start() 178 ir = core->ir; in __cx88_ir_start() 188 core->pci_irqmask |= PCI_INT_IR_SMPINT; in __cx88_ir_start() [all …]
|
/linux-3.3/drivers/net/wireless/brcm80211/brcmsmac/ |
D | pmu.c | 145 struct bcma_device *core; in si_pmu_spuravoid_pllupdate() local 148 core = ai_findcore(sih, BCMA_CORE_CHIPCOMMON, 0); in si_pmu_spuravoid_pllupdate() 154 bcma_write32(core, CHIPCREGOFFS(pllcontrol_addr), in si_pmu_spuravoid_pllupdate() 156 bcma_write32(core, CHIPCREGOFFS(pllcontrol_data), in si_pmu_spuravoid_pllupdate() 158 bcma_write32(core, CHIPCREGOFFS(pllcontrol_addr), in si_pmu_spuravoid_pllupdate() 160 bcma_write32(core, CHIPCREGOFFS(pllcontrol_data), in si_pmu_spuravoid_pllupdate() 162 bcma_write32(core, CHIPCREGOFFS(pllcontrol_addr), in si_pmu_spuravoid_pllupdate() 164 bcma_write32(core, CHIPCREGOFFS(pllcontrol_data), in si_pmu_spuravoid_pllupdate() 166 bcma_write32(core, CHIPCREGOFFS(pllcontrol_addr), in si_pmu_spuravoid_pllupdate() 168 bcma_write32(core, CHIPCREGOFFS(pllcontrol_data), in si_pmu_spuravoid_pllupdate() [all …]
|
/linux-3.3/Documentation/devicetree/bindings/c6x/ |
D | interrupt.txt | 4 * C64X+ Core Interrupt Controller 6 The core interrupt controller provides 16 prioritized interrupts to the 7 C64X+ core. Priority 0 and 1 are used for reset and NMI respectively. 9 sources coming from outside the core. 13 - compatible: Should be "ti,c64x+core-pic"; 18 Single cell specifying the core interrupt priority level (4-15) where 26 compatible = "ti,c64x+core-pic"; 35 may be cascaded into the core interrupt controller. The megamodule PIC 36 has a total of 12 outputs cascading into the core interrupt controller. 37 One for each core interrupt priority level. In addition to the combined [all …]
|
/linux-3.3/sound/soc/codecs/ |
D | wl1273.c | 24 #include <linux/mfd/wl1273-core.h> 39 struct wl1273_core *core; member 43 static int snd_wl1273_fm_set_i2s_mode(struct wl1273_core *core, in snd_wl1273_fm_set_i2s_mode() argument 46 struct device *dev = &core->client->dev; in snd_wl1273_fm_set_i2s_mode() 53 mutex_lock(&core->lock); in snd_wl1273_fm_set_i2s_mode() 55 mode = core->i2s_mode & ~WL1273_IS2_WIDTH & ~WL1273_IS2_RATE; in snd_wl1273_fm_set_i2s_mode() 123 dev_dbg(dev, "core->i2s_mode: 0x%04x\n", core->i2s_mode); in snd_wl1273_fm_set_i2s_mode() 126 if (core->i2s_mode != mode) { in snd_wl1273_fm_set_i2s_mode() 127 r = core->write(core, WL1273_I2S_MODE_CONFIG_SET, mode); in snd_wl1273_fm_set_i2s_mode() 131 core->i2s_mode = mode; in snd_wl1273_fm_set_i2s_mode() [all …]
|
/linux-3.3/arch/m68k/ |
D | Makefile | 95 core-y += arch/m68k/kernel/ arch/m68k/mm/ 98 core-$(CONFIG_Q40) += arch/m68k/q40/ 99 core-$(CONFIG_AMIGA) += arch/m68k/amiga/ 100 core-$(CONFIG_ATARI) += arch/m68k/atari/ 101 core-$(CONFIG_MAC) += arch/m68k/mac/ 102 core-$(CONFIG_HP300) += arch/m68k/hp300/ 103 core-$(CONFIG_APOLLO) += arch/m68k/apollo/ 104 core-$(CONFIG_MVME147) += arch/m68k/mvme147/ 105 core-$(CONFIG_MVME16x) += arch/m68k/mvme16x/ 106 core-$(CONFIG_BVME6000) += arch/m68k/bvme6000/ [all …]
|