Home
last modified time | relevance | path

Searched refs:core (Results 1 – 200 of 1502) sorted by relevance

12345678

/linux-4.4.14/drivers/mfd/
Dsi476x-i2c.c45 static int si476x_core_config_pinmux(struct si476x_core *core) in si476x_core_config_pinmux() argument
48 dev_dbg(&core->client->dev, "Configuring pinmux\n"); in si476x_core_config_pinmux()
49 err = si476x_core_cmd_dig_audio_pin_cfg(core, in si476x_core_config_pinmux()
50 core->pinmux.dclk, in si476x_core_config_pinmux()
51 core->pinmux.dfs, in si476x_core_config_pinmux()
52 core->pinmux.dout, in si476x_core_config_pinmux()
53 core->pinmux.xout); in si476x_core_config_pinmux()
55 dev_err(&core->client->dev, in si476x_core_config_pinmux()
61 err = si476x_core_cmd_zif_pin_cfg(core, in si476x_core_config_pinmux()
62 core->pinmux.iqclk, in si476x_core_config_pinmux()
[all …]
Dwl1273-core.c35 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()
94 static int wl1273_fm_set_audio(struct wl1273_core *core, unsigned int new_mode) in wl1273_fm_set_audio() argument
98 if (core->mode == WL1273_MODE_OFF || in wl1273_fm_set_audio()
99 core->mode == WL1273_MODE_SUSPENDED) in wl1273_fm_set_audio()
102 if (core->mode == WL1273_MODE_RX && new_mode == WL1273_AUDIO_DIGITAL) { in wl1273_fm_set_audio()
[all …]
Dsi476x-cmd.c180 static int si476x_core_parse_and_nag_about_error(struct si476x_core *core) in si476x_core_parse_and_nag_about_error() argument
186 if (core->revision != SI476X_REVISION_A10) { in si476x_core_parse_and_nag_about_error()
187 err = si476x_core_i2c_xfer(core, SI476X_I2C_RECV, in si476x_core_parse_and_nag_about_error()
236 dev_err(&core->client->dev, in si476x_core_parse_and_nag_about_error()
239 dev_err(&core->client->dev, in si476x_core_parse_and_nag_about_error()
266 static int si476x_core_send_command(struct si476x_core *core, in si476x_core_send_command() argument
274 struct i2c_client *client = core->client; in si476x_core_send_command()
293 err = si476x_core_i2c_xfer(core, SI476X_I2C_SEND, in si476x_core_send_command()
296 dev_err(&core->client->dev, in si476x_core_send_command()
304 atomic_set(&core->cts, 0); in si476x_core_send_command()
[all …]
Dsi476x-prop.c53 static bool si476x_core_is_valid_property_a10(struct si476x_core *core, in si476x_core_is_valid_property_a10() argument
94 static bool si476x_core_is_valid_property_a20(struct si476x_core *core, in si476x_core_is_valid_property_a20() argument
108 return si476x_core_is_valid_property_a10(core, property) || in si476x_core_is_valid_property_a20()
115 static bool si476x_core_is_valid_property_a30(struct si476x_core *core, in si476x_core_is_valid_property_a30() argument
134 return si476x_core_is_valid_property_a20(core, property) || in si476x_core_is_valid_property_a30()
143 static bool si476x_core_is_valid_property(struct si476x_core *core, in si476x_core_is_valid_property() argument
152 BUG_ON(core->revision > SI476X_REVISION_A30 || in si476x_core_is_valid_property()
153 core->revision == -1); in si476x_core_is_valid_property()
154 return is_valid_property[core->revision](core, property); in si476x_core_is_valid_property()
158 static bool si476x_core_is_readonly_property(struct si476x_core *core, in si476x_core_is_readonly_property() argument
[all …]
DMakefile5 88pm860x-objs := 88pm860x-core.o 88pm860x-i2c.o
38 obj-$(CONFIG_MFD_ARIZONA) += arizona-core.o
54 obj-$(CONFIG_MFD_WM8400) += wm8400-core.o
55 wm831x-objs := wm831x-core.o wm831x-irq.o wm831x-otp.o
60 wm8350-objs := wm8350-core.o wm8350-regmap.o wm8350-gpio.o
64 obj-$(CONFIG_MFD_WM8994) += wm8994-core.o wm8994-irq.o wm8994-regmap.o
72 tps65912-objs := tps65912-core.o tps65912-irq.o
79 obj-$(CONFIG_TWL4030_CORE) += twl-core.o twl4030-irq.o twl6030-irq.o
84 obj-$(CONFIG_MFD_MC13XXX) += mc13xxx-core.o
88 obj-$(CONFIG_MFD_CORE) += mfd-core.o
[all …]
/linux-4.4.14/drivers/clk/
Dclk.c82 struct clk_core *core; member
151 static bool clk_core_is_prepared(struct clk_core *core) in clk_core_is_prepared() argument
157 if (!core->ops->is_prepared) in clk_core_is_prepared()
158 return core->prepare_count; in clk_core_is_prepared()
160 return core->ops->is_prepared(core->hw); in clk_core_is_prepared()
163 static bool clk_core_is_enabled(struct clk_core *core) in clk_core_is_enabled() argument
169 if (!core->ops->is_enabled) in clk_core_is_enabled()
170 return core->enable_count; in clk_core_is_enabled()
172 return core->ops->is_enabled(core->hw); in clk_core_is_enabled()
175 static void clk_unprepare_unused_subtree(struct clk_core *core) in clk_unprepare_unused_subtree() argument
[all …]
/linux-4.4.14/drivers/bcma/
Dmain.c35 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in manuf_show() local
36 return sprintf(buf, "0x%03X\n", core->id.manuf); in manuf_show()
42 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in id_show() local
43 return sprintf(buf, "0x%03X\n", core->id.id); in id_show()
49 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in rev_show() local
50 return sprintf(buf, "0x%02X\n", core->id.rev); in rev_show()
56 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in class_show() local
57 return sprintf(buf, "0x%X\n", core->id.class); in class_show()
89 struct bcma_device *core; in bcma_find_core_unit() local
91 list_for_each_entry(core, &bus->cores, list) { in bcma_find_core_unit()
[all …]
Dcore.c12 static bool bcma_core_wait_value(struct bcma_device *core, u16 reg, u32 mask, in bcma_core_wait_value() argument
19 val = bcma_aread32(core, reg); in bcma_core_wait_value()
26 bcma_warn(core->bus, "Timeout waiting for register 0x%04X!\n", reg); in bcma_core_wait_value()
31 bool bcma_core_is_enabled(struct bcma_device *core) in bcma_core_is_enabled() argument
33 if ((bcma_aread32(core, BCMA_IOCTL) & (BCMA_IOCTL_CLK | BCMA_IOCTL_FGC)) in bcma_core_is_enabled()
36 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET) in bcma_core_is_enabled()
42 void bcma_core_disable(struct bcma_device *core, u32 flags) in bcma_core_disable() argument
44 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET) in bcma_core_disable()
47 bcma_core_wait_value(core, BCMA_RESET_ST, ~0, 0, 300); in bcma_core_disable()
49 bcma_awrite32(core, BCMA_RESET_CTL, BCMA_RESET_CTL_RESET); in bcma_core_disable()
[all …]
Dhost_pci.c14 static void bcma_host_pci_switch_core(struct bcma_device *core) in bcma_host_pci_switch_core() argument
16 int win2 = core->bus->host_is_pcie2 ? in bcma_host_pci_switch_core()
19 pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN, in bcma_host_pci_switch_core()
20 core->addr); in bcma_host_pci_switch_core()
21 pci_write_config_dword(core->bus->host_pci, win2, core->wrap); in bcma_host_pci_switch_core()
22 core->bus->mapped_core = core; in bcma_host_pci_switch_core()
23 bcma_debug(core->bus, "Switched to core: 0x%X\n", core->id.id); in bcma_host_pci_switch_core()
28 static u16 bcma_host_pci_provide_access_to_core(struct bcma_device *core) in bcma_host_pci_provide_access_to_core() argument
30 switch (core->id.id) { in bcma_host_pci_provide_access_to_core()
37 if (core->bus->mapped_core != core) in bcma_host_pci_provide_access_to_core()
[all …]
Dscan.c252 struct bcma_device *core; in bcma_find_core_by_index() local
254 list_for_each_entry(core, &bus->cores, list) { in bcma_find_core_by_index()
255 if (core->core_index == index) in bcma_find_core_by_index()
256 return core; in bcma_find_core_by_index()
263 struct bcma_device *core; in bcma_find_core_reverse() local
265 list_for_each_entry_reverse(core, &bus->cores, list) { in bcma_find_core_reverse()
266 if (core->id.id == coreid) in bcma_find_core_reverse()
267 return core; in bcma_find_core_reverse()
276 struct bcma_device *core) in bcma_get_next_core() argument
296 core->id.class = (cia & SCAN_CIA_CLASS) >> SCAN_CIA_CLASS_SHIFT; in bcma_get_next_core()
[all …]
Dhost_soc.c16 static u8 bcma_host_soc_read8(struct bcma_device *core, u16 offset) in bcma_host_soc_read8() argument
18 return readb(core->io_addr + offset); in bcma_host_soc_read8()
21 static u16 bcma_host_soc_read16(struct bcma_device *core, u16 offset) in bcma_host_soc_read16() argument
23 return readw(core->io_addr + offset); in bcma_host_soc_read16()
26 static u32 bcma_host_soc_read32(struct bcma_device *core, u16 offset) in bcma_host_soc_read32() argument
28 return readl(core->io_addr + offset); in bcma_host_soc_read32()
31 static void bcma_host_soc_write8(struct bcma_device *core, u16 offset, in bcma_host_soc_write8() argument
34 writeb(value, core->io_addr + offset); in bcma_host_soc_write8()
37 static void bcma_host_soc_write16(struct bcma_device *core, u16 offset, in bcma_host_soc_write16() argument
40 writew(value, core->io_addr + offset); in bcma_host_soc_write16()
[all …]
Ddriver_mips.c74 return bcma_read32(mcore->core, offset); in mips_read32()
81 bcma_write32(mcore->core, offset, value); in mips_write32()
123 struct bcma_device *mdev = dev->bus->drv_mips.core; in bcma_core_mips_irq()
143 struct bcma_device *mdev = bus->drv_mips.core; in bcma_core_mips_set_irq()
168 struct bcma_device *core; in bcma_core_mips_set_irq() local
173 list_for_each_entry(core, &bus->cores, list) { in bcma_core_mips_set_irq()
174 if ((1 << bcma_core_mips_irqflag(core)) == in bcma_core_mips_set_irq()
176 bcma_core_mips_set_irq(core, 0); in bcma_core_mips_set_irq()
192 struct bcma_device *core; in bcma_core_mips_set_irq_name() local
194 core = bcma_find_core_unit(bus, coreid, unit); in bcma_core_mips_set_irq_name()
[all …]
Ddriver_chipcommon.c39 struct bcma_bus *bus = cc->core->bus; in bcma_chipco_watchdog_get_max_timer()
45 else if (cc->core->id.rev < 26) in bcma_chipco_watchdog_get_max_timer()
48 nb = (cc->core->id.rev >= 37) ? 32 : 24; in bcma_chipco_watchdog_get_max_timer()
78 struct bcma_bus *bus = cc->core->bus; in bcma_chipco_watchdog_ticks_per_ms()
106 cc->core->bus->num, &wdt, in bcma_chipco_watchdog_register()
123 if (cc->core->id.rev >= 11) in bcma_core_chipcommon_early_init()
126 if (cc->core->id.rev >= 35) in bcma_core_chipcommon_early_init()
145 if (cc->core->id.rev >= 20) { in bcma_core_chipcommon_init()
148 if (cc->core->bus->chipinfo.id == BCMA_CHIP_ID_BCM43142) { in bcma_core_chipcommon_init()
160 bcma_err(cc->core->bus, "Power control not implemented!\n"); in bcma_core_chipcommon_init()
[all …]
DKconfig43 bool "BCMA Broadcom PCI core driver"
47 BCMA bus may have many versions of PCIe core. This driver
49 1) PCIe core working in clientmode
50 2) PCIe Gen 2 clientmode core
52 In general PCIe (Gen 2) clientmode core is required on PCIe
55 This driver is also prerequisite for a hostmode PCIe core
59 bool "Driver for PCI core working in hostmode"
62 PCI core hostmode operation (external PCI bus).
65 bool "BCMA Broadcom MIPS core driver"
68 Driver for the Broadcom MIPS core attached to Broadcom specific
[all …]
Dbcma_private.h25 bool bcma_wait_value(struct bcma_device *core, u16 reg, u32 mask, u32 value,
27 void bcma_prepare_core(struct bcma_bus *bus, struct bcma_device *core);
72 bcma_err(cc->core->bus, "Serial flash not supported\n"); in bcma_sflash_init()
84 bcma_err(cc->core->bus, "NAND flash not supported\n"); in bcma_nflash_init()
119 WARN_ON(pc->core->bus->hosttype == BCMA_HOSTTYPE_PCI); in bcma_core_pci_early_init()
124 WARN_ON(pc->core->bus->hosttype == BCMA_HOSTTYPE_PCI); in bcma_core_pci_init()
136 WARN_ON(pcie2->core->bus->hosttype == BCMA_HOSTTYPE_PCI); in bcma_core_pcie2_init()
Ddriver_gpio.c132 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC) in bcma_gpio_irq_init()
135 hwirq = bcma_core_irq(cc->core, 0); in bcma_gpio_irq_init()
159 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC) in bcma_gpio_irq_exit()
163 free_irq(bcma_core_irq(cc->core, 0), cc); in bcma_gpio_irq_exit()
178 struct bcma_bus *bus = cc->core->bus; in bcma_gpio_init()
193 if (cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) in bcma_gpio_init()
194 chip->of_node = cc->core->dev.of_node; in bcma_gpio_init()
214 cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC) in bcma_gpio_init()
Ddriver_pci.c70 if (pc->core->id.rev >= 10) { in bcma_pcie_mdio_read()
113 if (pc->core->id.rev >= 10) { in bcma_pcie_mdio_write()
153 struct bcma_device *core = pc->core; in bcma_core_pci_fixcfg() local
158 core_index = (u16)core->core_index; in bcma_core_pci_fixcfg()
269 if (pc->core->id.rev >= 15 && pc->core->id.rev <= 20) { in bcma_core_pci_power_save()
275 } else if (pc->core->id.rev >= 21 && pc->core->id.rev <= 22) { in bcma_core_pci_power_save()
Ddriver_pcie2.c72 u8 core_rev = pcie2->core->id.rev; in bcma_core_pcie2_hw_ltr_war()
108 u8 core_rev = pcie2->core->id.rev; in pciedev_crwlpciegen2()
145 struct bcma_drv_cc *drv_cc = &pcie2->core->bus->drv_cc; in pciedev_reg_pm_clk_period()
146 u8 core_rev = pcie2->core->id.rev; in pciedev_reg_pm_clk_period()
160 struct bcma_bus *bus = pcie2->core->bus; in bcma_core_pcie2_init()
193 struct bcma_bus *bus = pcie2->core->bus; in bcma_core_pcie2_up()
Ddriver_chipcommon_nflash.c21 struct bcma_bus *bus = cc->core->bus; in bcma_nflash_init()
24 cc->core->id.rev != 38) { in bcma_nflash_init()
35 if (cc->core->id.rev == 38 && in bcma_nflash_init()
Ddriver_chipcommon_pmu.c82 struct bcma_bus *bus = cc->core->bus; in bcma_pmu2_pll_init0()
132 bcma_wait_value(cc->core, BCMA_CLKCTLST, in bcma_pmu2_pll_init0()
150 struct bcma_bus *bus = cc->core->bus; in bcma_pmu_pll_init()
164 struct bcma_bus *bus = cc->core->bus; in bcma_pmu_resources_init()
212 struct bcma_bus *bus = cc->core->bus; in bcma_chipco_bcm4331_ext_pa_lines_ctl()
232 struct bcma_bus *bus = cc->core->bus; in bcma_pmu_workarounds()
277 bcma_debug(cc->core->bus, "Found rev %u PMU (capabilities 0x%08X)\n", in bcma_pmu_early_init()
297 struct bcma_bus *bus = cc->core->bus; in bcma_pmu_get_alp_clock()
342 struct bcma_bus *bus = cc->core->bus; in bcma_pmu_pll_clock()
408 struct bcma_bus *bus = cc->core->bus; in bcma_pmu_get_bus_clock()
[all …]
Ddriver_pci_host.c30 struct bcma_bus *bus = pc->core->bus; in bcma_core_pci_is_in_hostmode()
39 bcma_core_enable(pc->core, 0); in bcma_core_pci_is_in_hostmode()
41 return !mips_busprobe32(tmp, pc->core->io_addr); in bcma_core_pci_is_in_hostmode()
155 u16 chipid = pc->core->bus->chipinfo.id; in bcma_extpci_write_config()
342 struct bcma_bus *bus = pc->core->bus; in bcma_core_pci_enable_crs()
389 struct bcma_bus *bus = pc->core->bus; in bcma_core_pci_hostmode_init()
456 if (pc->core->core_unit == 0) { in bcma_core_pci_hostmode_init()
465 } else if (pc->core->core_unit == 1) { in bcma_core_pci_hostmode_init()
597 dev->irq = bcma_core_irq(pc_host->pdev->core, 0); in bcma_core_pci_plat_dev_init()
621 return bcma_core_irq(pc_host->pdev->core, 0); in bcma_core_pci_pcibios_map_irq()
/linux-4.4.14/include/trace/events/
Dclk.h25 TP_PROTO(struct clk_core *core),
27 TP_ARGS(core),
30 __string( name, core->name )
34 __assign_str(name, core->name);
42 TP_PROTO(struct clk_core *core),
44 TP_ARGS(core)
49 TP_PROTO(struct clk_core *core),
51 TP_ARGS(core)
56 TP_PROTO(struct clk_core *core),
58 TP_ARGS(core)
[all …]
/linux-4.4.14/drivers/media/pci/cx88/
Dcx88-i2c.c52 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 …]
Dcx88-video.c74 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg)
298 int cx88_video_mux(struct cx88_core *core, unsigned int input) in cx88_video_mux() argument
306 core->input = input; in cx88_video_mux()
334 if (core->sd_wm8775) { in cx88_video_mux()
335 call_all(core, audio, s_routing, in cx88_video_mux()
344 core->tvaudio = WW_I2SADC; in cx88_video_mux()
345 cx88_set_tvaudio(core); in cx88_video_mux()
363 struct cx88_core *core = dev->core; in start_video_dma() local
366 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21], in start_video_dma()
368 cx88_set_scale(core, core->width, core->height, core->field); in start_video_dma()
[all …]
Dcx88-tvaudio.c69 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 …]
Dcx88.h303 #define INPUT(nr) (core->board.input[nr])
381 void (*gate_ctrl)(struct cx88_core *core, int open);
425 #define call_hw(core, grpid, o, f, args...) \ argument
427 if (!core->i2c_rc) { \
428 if (core->gate_ctrl) \
429 core->gate_ctrl(core, 1); \
430 v4l2_device_call_all(&core->v4l2_dev, grpid, o, f, ##args); \
431 if (core->gate_ctrl) \
432 core->gate_ctrl(core, 0); \
436 #define call_all(core, o, f, args...) call_hw(core, 0, o, f, ##args) argument
[all …]
Dcx88-blackbird.c54 printk(KERN_DEBUG "%s/2-bb: " fmt, dev->core->name , ## arg); \
181 static void host_setup(struct cx88_core *core) in host_setup() argument
215 static int wait_ready_gpio0_bit1(struct cx88_core *core, u32 state) in wait_ready_gpio0_bit1() argument
231 static int memory_write(struct cx88_core *core, u32 address, u32 value) in memory_write() argument
244 return wait_ready_gpio0_bit1(core,1); in memory_write()
247 static int memory_read(struct cx88_core *core, u32 address, u32 *value) in memory_read() argument
258 retval = wait_ready_gpio0_bit1(core,1); in memory_read()
273 static int register_write(struct cx88_core *core, u32 address, u32 value) in register_write() argument
285 return wait_ready_gpio0_bit1(core,1); in register_write()
289 static int register_read(struct cx88_core *core, u32 address, u32 *value) in register_read() argument
[all …]
Dcx88-mpeg.c50 printk(KERN_DEBUG "%s/2-mpeg: " fmt, dev->core->name, ## arg); \
55 printk(KERN_DEBUG "%s/2-mpeg: " fmt, core->name, ## arg); \
63 if (dev->core->board.mpeg & CX88_MPEG_DVB) in request_module_async()
65 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD) in request_module_async()
93 struct cx88_core *core = dev->core; in cx8802_start_dma() local
96 core->width, core->height, core->field); in cx8802_start_dma()
99 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28], in cx8802_start_dma()
108 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id); in cx8802_start_dma()
110 if ( (core->active_type_id == CX88_MPEG_DVB) && in cx8802_start_dma()
111 (core->board.mpeg & CX88_MPEG_DVB) ) { in cx8802_start_dma()
[all …]
Dcx88-core.c65 printk(KERN_DEBUG "%s: " fmt, core->name , ## arg); \
333 int cx88_sram_channel_setup(struct cx88_core *core, in cx88_sram_channel_setup() argument
412 void cx88_sram_channel_dump(struct cx88_core *core, in cx88_sram_channel_dump() argument
432 core->name,ch->name); in cx88_sram_channel_dump()
435 core->name,name[i], in cx88_sram_channel_dump()
439 printk("%s: risc%d: ", core->name, i); in cx88_sram_channel_dump()
447 printk("%s: iq %x: ", core->name, i); in cx88_sram_channel_dump()
452 core->name, i+j, risc, j); in cx88_sram_channel_dump()
457 core->name, ch->fifo_start, ch->fifo_start+ch->fifo_size); in cx88_sram_channel_dump()
459 core->name, ch->ctrl_start, ch->ctrl_start+6*16); in cx88_sram_channel_dump()
[all …]
Dcx88-input.c39 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()
135 } else if (ir->core->boardnr == CX88_BOARD_PROLINK_PLAYTVPVR || in cx88_ir_handle_key()
136 ir->core->boardnr == CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO) { in cx88_ir_handle_key()
188 struct cx88_core *core = priv; in __cx88_ir_start() local
191 if (!core || !core->ir) in __cx88_ir_start()
194 ir = core->ir; in __cx88_ir_start()
[all …]
Dcx88-dvb.c81 printk(KERN_DEBUG "%s/2-dvb: " fmt, core->name, ## arg)
186 mutex_lock(&dev->core->lock); in cx88_dvb_bus_ctrl()
197 mutex_unlock(&dev->core->lock); in cx88_dvb_bus_ctrl()
202 static void cx88_dvb_gate_ctrl(struct cx88_core *core, int open) in cx88_dvb_gate_ctrl() argument
207 if (!core->dvbdev) in cx88_dvb_gate_ctrl()
210 f = &core->dvbdev->frontends; in cx88_dvb_gate_ctrl()
393 struct cx88_core *core = dev->core; in lgdt330x_pll_rf_set() local
458 struct cx88_core *core = dev->core; in kworld_dvbs_100_set_voltage() local
465 if (core->prev_set_voltage) in kworld_dvbs_100_set_voltage()
466 return core->prev_set_voltage(fe, voltage); in kworld_dvbs_100_set_voltage()
[all …]
Dcx88-cards.c53 #define info_printk(core, fmt, arg...) \ argument
54 printk(KERN_INFO "%s: " fmt, core->name , ## arg)
56 #define warn_printk(core, fmt, arg...) \ argument
57 printk(KERN_WARNING "%s: " fmt, core->name , ## arg)
59 #define err_printk(core, fmt, arg...) \ argument
60 printk(KERN_ERR "%s: " fmt, core->name , ## arg)
64 printk(KERN_DEBUG "%s: " fmt, core->name , ## arg); \
2827 static void leadtek_eeprom(struct cx88_core *core, u8 *eeprom_data) in leadtek_eeprom() argument
2832 warn_printk(core, "Leadtek eeprom invalid.\n"); in leadtek_eeprom()
2843 core->board.tuner_type = TUNER_PHILIPS_FM1236_MK3; in leadtek_eeprom()
[all …]
Dcx88-alsa.c50 printk(KERN_INFO "%s/1: " fmt, chip->core->name , ## arg);\
55 printk(KERN_DEBUG "%s/1: " fmt, chip->core->name , ## arg);\
72 struct cx88_core *core; member
141 struct cx88_core *core=chip->core; in _cx88_start_audio_dma() local
148 cx88_sram_channel_setup(chip->core, audio_ch, buf->bpl, buf->risc.dma); in _cx88_start_audio_dma()
169 cx_set(MO_PCI_INTMSK, chip->core->pci_irqmask | PCI_INT_AUDINT); in _cx88_start_audio_dma()
176 cx88_sram_channel_dump(chip->core, audio_ch); in _cx88_start_audio_dma()
186 struct cx88_core *core=chip->core; in _cx88_stop_audio_dma() local
198 cx88_sram_channel_dump(chip->core, &cx88_sram_channels[SRAM_CH25]); in _cx88_stop_audio_dma()
226 struct cx88_core *core = chip->core; in cx8801_aud_irq() local
[all …]
Dcx88-vp3054-i2c.c43 struct cx88_core *core = dev->core; in vp3054_bit_setscl() local
60 struct cx88_core *core = dev->core; in vp3054_bit_setsda() local
77 struct cx88_core *core = dev->core; in vp3054_bit_getscl() local
87 struct cx88_core *core = dev->core; in vp3054_bit_getsda() local
109 struct cx88_core *core = dev->core; in vp3054_i2c_probe() local
113 if (core->boardnr != CX88_BOARD_DNTV_LIVE_DVB_T_PRO) in vp3054_i2c_probe()
124 strlcpy(vp3054_i2c->adap.name, core->name, in vp3054_i2c_probe()
136 printk("%s: vp3054_i2c register FAILED\n", core->name); in vp3054_i2c_probe()
150 dev->core->boardnr != CX88_BOARD_DNTV_LIVE_DVB_T_PRO) in vp3054_i2c_remove()
Dcx88-dsp.c75 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg)
155 static s32 detect_a2_a2m_eiaj(struct cx88_core *core, s16 x[], u32 N) in detect_a2_a2m_eiaj() argument
161 switch (core->tvaudio) { in detect_a2_a2m_eiaj()
180 core->name, core->tvaudio, __func__); in detect_a2_a2m_eiaj()
197 if (core->tvaudio == WW_EIAJ) { in detect_a2_a2m_eiaj()
219 static s32 detect_btsc(struct cx88_core *core, s16 x[], u32 N) in detect_btsc() argument
231 static s16 *read_rds_samples(struct cx88_core *core, u32 *N) in read_rds_samples() argument
271 s32 cx88_dsp_detect_stereo_sap(struct cx88_core *core) in cx88_dsp_detect_stereo_sap() argument
284 if (time_before(jiffies, core->last_change + msecs_to_jiffies(500))) in cx88_dsp_detect_stereo_sap()
287 samples = read_rds_samples(core, &N); in cx88_dsp_detect_stereo_sap()
[all …]
Dcx88-vbi.c14 printk(KERN_DEBUG "%s: " fmt, dev->core->name , ## arg)
27 if (dev->core->tvnorm & V4L2_STD_525_60) { in cx8800_vbi_fmt()
35 } else if (dev->core->tvnorm & V4L2_STD_625_50) { in cx8800_vbi_fmt()
50 struct cx88_core *core = dev->core; in cx8800_start_vbi_dma() local
53 cx88_sram_channel_setup(dev->core, &cx88_sram_channels[SRAM_CH24], in cx8800_start_vbi_dma()
65 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_VIDINT); in cx8800_start_vbi_dma()
80 struct cx88_core *core = dev->core; in cx8800_stop_vbi_dma() local
117 if (dev->core->tvnorm & V4L2_STD_525_60) in queue_setup()
135 if (dev->core->tvnorm & V4L2_STD_525_60) in buffer_prepare()
206 struct cx88_core *core = dev->core; in stop_streaming() local
/linux-4.4.14/drivers/media/radio/
Dradio-wl1273.c89 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()
261 r = core->read(core, WL1273_RSSI_LVL_GET, &level); in wl1273_fm_irq_thread_handler()
[all …]
Dradio-si476x.c311 struct si476x_core *core; member
349 si476x_core_lock(radio->core); in si476x_radio_querycap()
350 if (!si476x_core_is_a_secondary_tuner(radio->core)) in si476x_radio_querycap()
353 si476x_core_unlock(radio->core); in si476x_radio_querycap()
369 switch (radio->core->chip_id) { in si476x_radio_enum_freq_bands()
424 si476x_core_lock(radio->core); in si476x_radio_g_tuner()
426 if (si476x_core_is_a_secondary_tuner(radio->core)) { in si476x_radio_g_tuner()
430 } else if (si476x_core_has_am(radio->core)) { in si476x_radio_g_tuner()
431 if (si476x_core_is_a_primary_tuner(radio->core)) in si476x_radio_g_tuner()
458 err = radio->ops->rsq_status(radio->core, in si476x_radio_g_tuner()
[all …]
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/
Ddebug.h54 #define brcms_dbg(core, l, f, a...) __brcms_dbg(&(core)->dev, l, __func__, f, ##a) argument
55 #define brcms_info(core, f, a...) __brcms_info(&(core)->dev, f, ##a) argument
56 #define brcms_warn(core, f, a...) __brcms_warn(&(core)->dev, f, ##a) argument
57 #define brcms_err(core, f, a...) __brcms_err(&(core)->dev, f, ##a) argument
58 #define brcms_crit(core, f, a...) __brcms_crit(&(core)->dev, f, ##a) argument
60 #define brcms_dbg_info(core, f, a...) brcms_dbg(core, BRCM_DL_INFO, f, ##a) argument
61 #define brcms_dbg_mac80211(core, f, a...) brcms_dbg(core, BRCM_DL_MAC80211, f, ##a) argument
62 #define brcms_dbg_rx(core, f, a...) brcms_dbg(core, BRCM_DL_RX, f, ##a) argument
63 #define brcms_dbg_tx(core, f, a...) brcms_dbg(core, BRCM_DL_TX, f, ##a) argument
64 #define brcms_dbg_int(core, f, a...) brcms_dbg(core, BRCM_DL_INT, f, ##a) argument
[all …]
Ddma.c212 struct bcma_device *core; member
363 control = bcma_read32(di->core, DMA64TXREGOFFS(di, control)); in _dma_ctrlflags()
364 bcma_write32(di->core, DMA64TXREGOFFS(di, control), in _dma_ctrlflags()
366 if (bcma_read32(di->core, DMA64TXREGOFFS(di, control)) & in _dma_ctrlflags()
371 bcma_write32(di->core, DMA64TXREGOFFS(di, control), in _dma_ctrlflags()
386 bcma_set32(di->core, ctrl_offset, D64_XC_AE); in _dma64_addrext()
387 w = bcma_read32(di->core, ctrl_offset); in _dma64_addrext()
388 bcma_mask32(di->core, ctrl_offset, ~D64_XC_AE); in _dma64_addrext()
403 brcms_dbg_dma(di->core, in _dma_isaddrext()
409 brcms_dbg_dma(di->core, in _dma_isaddrext()
[all …]
Dpmu.c121 struct bcma_device *core; in si_pmu_measure_alpclk() local
128 core = sii->icbus->drv_cc.core; in si_pmu_measure_alpclk()
130 if (bcma_read32(core, CHIPCREGOFFS(pmustatus)) & PST_EXTLPOAVAIL) { in si_pmu_measure_alpclk()
137 bcma_write32(core, CHIPCREGOFFS(pmu_xtalfreq), in si_pmu_measure_alpclk()
144 ilp_ctr = bcma_read32(core, CHIPCREGOFFS(pmu_xtalfreq)) & in si_pmu_measure_alpclk()
151 bcma_write32(core, CHIPCREGOFFS(pmu_xtalfreq), 0); in si_pmu_measure_alpclk()
Dmain.c597 struct bcma_device *core = wlc_hw->d11core; in brcms_b_update_slot_timing() local
601 bcma_write16(core, D11REGOFFS(ifs_slot), 0x0207); in brcms_b_update_slot_timing()
605 bcma_write16(core, D11REGOFFS(ifs_slot), 0x0212); in brcms_b_update_slot_timing()
682 struct bcma_device *core = wlc_hw->d11core; in brcms_c_write_inits() local
695 bcma_write16(core, offset, value); in brcms_c_write_inits()
697 bcma_write32(core, offset, value); in brcms_c_write_inits()
751 struct bcma_device *core = wlc_hw->d11core; in brcms_b_core_ioctl() local
752 u32 ioctl = bcma_aread32(core, BCMA_IOCTL) & ~m; in brcms_b_core_ioctl()
754 bcma_awrite32(core, BCMA_IOCTL, ioctl | v); in brcms_b_core_ioctl()
1032 struct bcma_device *core; in brcms_b_txstatus() local
[all …]
/linux-4.4.14/include/linux/bcma/
Dbcma.h42 u8 (*read8)(struct bcma_device *core, u16 offset);
43 u16 (*read16)(struct bcma_device *core, u16 offset);
44 u32 (*read32)(struct bcma_device *core, u16 offset);
45 void (*write8)(struct bcma_device *core, u16 offset, u8 value);
46 void (*write16)(struct bcma_device *core, u16 offset, u16 value);
47 void (*write32)(struct bcma_device *core, u16 offset, u32 value);
49 void (*block_read)(struct bcma_device *core, void *buffer,
51 void (*block_write)(struct bcma_device *core, const void *buffer,
55 u32 (*aread32)(struct bcma_device *core, u16 offset);
56 void (*awrite32)(struct bcma_device *core, u16 offset, u32 value);
[all …]
Dbcma_driver_pcie2.h145 struct bcma_device *core; member
150 #define pcie2_read16(pcie2, offset) bcma_read16((pcie2)->core, offset)
151 #define pcie2_read32(pcie2, offset) bcma_read32((pcie2)->core, offset)
152 #define pcie2_write16(pcie2, offset, val) bcma_write16((pcie2)->core, offset, val)
153 #define pcie2_write32(pcie2, offset, val) bcma_write32((pcie2)->core, offset, val)
155 #define pcie2_set32(pcie2, offset, set) bcma_set32((pcie2)->core, offset, set)
156 #define pcie2_mask32(pcie2, offset, mask) bcma_mask32((pcie2)->core, offset, mask)
Dbcma_driver_gmac_cmn.h81 struct bcma_device *core; member
89 #define gmac_cmn_read16(gc, offset) bcma_read16((gc)->core, offset)
90 #define gmac_cmn_read32(gc, offset) bcma_read32((gc)->core, offset)
91 #define gmac_cmn_write16(gc, offset, val) bcma_write16((gc)->core, offset, val)
92 #define gmac_cmn_write32(gc, offset, val) bcma_write32((gc)->core, offset, val)
Dbcma_driver_pci.h225 struct bcma_device *core; member
236 #define pcicore_read16(pc, offset) bcma_read16((pc)->core, offset)
237 #define pcicore_read32(pc, offset) bcma_read32((pc)->core, offset)
238 #define pcicore_write16(pc, offset, val) bcma_write16((pc)->core, offset, val)
239 #define pcicore_write32(pc, offset, val) bcma_write32((pc)->core, offset, val)
/linux-4.4.14/drivers/media/i2c/
Dmt9v011.c175 struct mt9v011 *core = to_mt9v011(sd); in set_balance() local
180 exposure = core->exposure; in set_balance()
182 green_gain = calc_mt9v011_gain(core->global_gain); in set_balance()
184 bal = core->global_gain; in set_balance()
185 bal += (core->blue_bal * core->global_gain / (1 << 7)); in set_balance()
188 bal = core->global_gain; in set_balance()
189 bal += (core->red_bal * core->global_gain / (1 << 7)); in set_balance()
201 struct mt9v011 *core = to_mt9v011(sd); in calc_fps() local
216 frames_per_ms = core->xtal * 1000l; in calc_fps()
231 struct mt9v011 *core = to_mt9v011(sd); in calc_speed() local
[all …]
Dtvp5150.c1096 .core = &tvp5150_core_ops,
1111 struct tvp5150 *core; in tvp5150_probe() local
1121 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL); in tvp5150_probe()
1122 if (!core) in tvp5150_probe()
1124 sd = &core->sd; in tvp5150_probe()
1160 core->norm = V4L2_STD_ALL; /* Default is autodetect */ in tvp5150_probe()
1161 core->input = TVP5150_COMPOSITE1; in tvp5150_probe()
1162 core->enable = 1; in tvp5150_probe()
1164 v4l2_ctrl_handler_init(&core->hdl, 4); in tvp5150_probe()
1165 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops, in tvp5150_probe()
[all …]
/linux-4.4.14/drivers/phy/
Dphy-bcm-cygnus-pcie.c40 struct cygnus_pcie_phy_core *core; member
61 struct cygnus_pcie_phy_core *core = phy->core; in cygnus_pcie_power_config() local
65 mutex_lock(&core->lock); in cygnus_pcie_power_config()
77 mutex_unlock(&core->lock); in cygnus_pcie_power_config()
78 dev_err(core->dev, "PCIe PHY %d invalid\n", phy->id); in cygnus_pcie_power_config()
83 val = readl(core->base + PCIE_CFG_OFFSET); in cygnus_pcie_power_config()
85 writel(val, core->base + PCIE_CFG_OFFSET); in cygnus_pcie_power_config()
92 val = readl(core->base + PCIE_CFG_OFFSET); in cygnus_pcie_power_config()
94 writel(val, core->base + PCIE_CFG_OFFSET); in cygnus_pcie_power_config()
97 mutex_unlock(&core->lock); in cygnus_pcie_power_config()
[all …]
/linux-4.4.14/Documentation/DocBook/
D.alsa-driver-api.xml.cmd2core/init.c sound/core/device.c sound/core/sound.c sound/core/memory.c sound/core/memalloc.c sound…
D.device-drivers.xml.cmd2core.c kernel/sched/cpupri.c kernel/sched/fair.c include/linux/completion.h kernel/time/timer.c in…
D.usb.xml.cmd2core/urb.c drivers/usb/core/message.c drivers/usb/core/file.c drivers/usb/core/driver.c drivers/us…
D.networking.xml.cmd2core/skbuff.c net/core/sock.c net/core/datagram.c net/core/stream.c net/core/filter.c include/uapi…
D.iio.xml.cmd2 … drivers/iio/industrialio-core.c drivers/iio/industrialio-core.c drivers/iio/industrialio-core.c d…
/linux-4.4.14/sound/soc/codecs/
Dwl1273.c39 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()
132 r = core->write(core, WL1273_AUDIO_ENABLE, in snd_wl1273_fm_set_i2s_mode()
[all …]
Dsi476x.c77 struct si476x_core *core = i2c_mfd_cell_to_core(codec_dai->dev); in si476x_codec_set_dai_fmt() local
141 si476x_core_lock(core); in si476x_codec_set_dai_fmt()
147 si476x_core_unlock(core); in si476x_codec_set_dai_fmt()
161 struct si476x_core *core = i2c_mfd_cell_to_core(dai->dev); in si476x_codec_hw_params() local
187 si476x_core_lock(core); in si476x_codec_hw_params()
206 si476x_core_unlock(core); in si476x_codec_hw_params()
Dwm5102.c38 struct arizona_priv core; member
1875 ret = wm_adsp2_codec_probe(&priv->core.adsp[0], codec); in wm5102_codec_probe()
1889 priv->core.arizona->dapm = dapm; in wm5102_codec_probe()
1894 wm_adsp2_codec_remove(&priv->core.adsp[0], codec); in wm5102_codec_probe()
1903 wm_adsp2_codec_remove(&priv->core.adsp[0], codec); in wm5102_codec_remove()
1905 priv->core.arizona->dapm = NULL; in wm5102_codec_remove()
1928 return priv->core.arizona->regmap; in wm5102_get_regmap()
1963 wm5102->core.arizona = arizona; in wm5102_probe()
1964 wm5102->core.num_inputs = 6; in wm5102_probe()
1966 arizona_init_dvfs(&wm5102->core); in wm5102_probe()
[all …]
/linux-4.4.14/drivers/staging/rtl8188eu/
DMakefile2 core/rtw_ap.o \
3 core/rtw_cmd.o \
4 core/rtw_debug.o \
5 core/rtw_efuse.o \
6 core/rtw_ieee80211.o \
7 core/rtw_ioctl_set.o \
8 core/rtw_iol.o \
9 core/rtw_led.o \
10 core/rtw_mlme.o \
11 core/rtw_mlme_ext.o \
[all …]
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
Dchip.c241 bool (*iscoreup)(struct brcmf_core_priv *core);
242 void (*coredisable)(struct brcmf_core_priv *core, u32 prereset,
244 void (*resetcore)(struct brcmf_core_priv *core, u32 prereset, u32 reset,
249 struct brcmf_core *core) in brcmf_chip_sb_corerev() argument
253 regdata = ci->ops->read32(ci->ctx, CORE_SB(core->base, sbidhigh)); in brcmf_chip_sb_corerev()
254 core->rev = SBCOREREV(regdata); in brcmf_chip_sb_corerev()
257 static bool brcmf_chip_sb_iscoreup(struct brcmf_core_priv *core) in brcmf_chip_sb_iscoreup() argument
263 ci = core->chip; in brcmf_chip_sb_iscoreup()
264 address = CORE_SB(core->pub.base, sbtmstatelow); in brcmf_chip_sb_iscoreup()
271 static bool brcmf_chip_ai_iscoreup(struct brcmf_core_priv *core) in brcmf_chip_ai_iscoreup() argument
[all …]
Dchip.h86 bool brcmf_chip_iscoreup(struct brcmf_core *core);
87 void brcmf_chip_coredisable(struct brcmf_core *core, u32 prereset, u32 reset);
88 void brcmf_chip_resetcore(struct brcmf_core *core, u32 prereset, u32 reset,
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/core/
DKbuild1 nvkm-y := nvkm/core/client.o
2 nvkm-y += nvkm/core/engine.o
3 nvkm-y += nvkm/core/enum.o
4 nvkm-y += nvkm/core/event.o
5 nvkm-y += nvkm/core/gpuobj.o
6 nvkm-y += nvkm/core/ioctl.o
7 nvkm-y += nvkm/core/memory.o
8 nvkm-y += nvkm/core/mm.o
9 nvkm-y += nvkm/core/notify.o
10 nvkm-y += nvkm/core/object.o
[all …]
/linux-4.4.14/arch/s390/numa/
Dmode_emu.c92 static int core_pinned_to_node_id(struct toptree *core) in core_pinned_to_node_id() argument
94 return emu_cores->to_node_id[core->id]; in core_pinned_to_node_id()
102 struct toptree *core; in cores_free() local
105 toptree_for_each(core, tree, CORE) { in cores_free()
106 if (core_pinned_to_node_id(core) == NODE_ID_FREE) in cores_free()
115 static struct toptree *core_node(struct toptree *core) in core_node() argument
117 return core->parent->parent->parent; in core_node()
123 static struct toptree *core_book(struct toptree *core) in core_book() argument
125 return core->parent->parent; in core_book()
131 static struct toptree *core_mc(struct toptree *core) in core_mc() argument
[all …]
/linux-4.4.14/arch/mips/kernel/
Dsmp-cps.c34 static unsigned core_vpe_count(unsigned core) in core_vpe_count() argument
41 mips_cm_lock_other(core, 0); in core_vpe_count()
64 cpu_data[nvpes + v].core = c; in cps_smp_setup()
130 if (cpu_data[c].core) in cps_prepare_cpus()
170 atomic_set(&mips_cps_core_bootcfg[current_cpu_data.core].vpe_mask, in cps_prepare_cpus()
191 static void boot_core(unsigned core) in boot_core() argument
197 mips_cm_lock_other(core, 0); in boot_core()
207 access |= 1 << (CM_GCR_ACCESS_ACCESSEN_SHF + core); in boot_core()
212 mips_cpc_lock_other(core); in boot_core()
232 core, stat); in boot_core()
[all …]
Dsmp-gic.c25 unsigned int core = cpu_data[cpu].core; in gic_send_ipi_single() local
47 if (mips_cpc_present() && (core != current_cpu_data.core)) { in gic_send_ipi_single()
49 mips_cm_lock_other(core, 0); in gic_send_ipi_single()
50 mips_cpc_lock_other(core); in gic_send_ipi_single()
Dmips-cpc.c71 void mips_cpc_lock_other(unsigned int core) in mips_cpc_lock_other() argument
75 curr_core = current_cpu_data.core; in mips_cpc_lock_other()
78 write_cpc_cl_other(core << CPC_Cx_OTHER_CORENUM_SHF); in mips_cpc_lock_other()
89 unsigned curr_core = current_cpu_data.core; in mips_cpc_unlock_other()
Dpm-cps.c122 unsigned core = current_cpu_data.core; in cps_pm_enter_state() local
132 entry = per_cpu(nc_asm_enter, core)[state]; in cps_pm_enter_state()
156 core_cfg = &mips_cps_core_bootcfg[core]; in cps_pm_enter_state()
168 core_ready_count = per_cpu(ready_count, core); in cps_pm_enter_state()
176 coupled_barrier(&per_cpu(pm_barrier, core), online); in cps_pm_enter_state()
477 uasm_i_addiu(&p, t0, zero, 1 << cpu_data[cpu].core); in cps_gen_entry_code()
627 unsigned core = cpu_data[cpu].core; in cps_gen_core_entries() local
632 if (per_cpu(nc_asm_enter, core)[state]) in cps_gen_core_entries()
640 core, state); in cps_gen_core_entries()
644 per_cpu(nc_asm_enter, core)[state] = entry_fn; in cps_gen_core_entries()
[all …]
Dmips-cm.c262 void mips_cm_lock_other(unsigned int core, unsigned int vp) in mips_cm_lock_other() argument
268 curr_core = current_cpu_data.core; in mips_cm_lock_other()
273 val = core << CM3_GCR_Cx_OTHER_CORE_SHF; in mips_cm_lock_other()
277 val = core << CM_GCR_Cx_OTHER_CORENUM_SHF; in mips_cm_lock_other()
291 unsigned curr_core = current_cpu_data.core; in mips_cm_unlock_other()
/linux-4.4.14/sound/pci/hda/
Dhda_bind.c22 struct hda_codec *codec = container_of(dev, struct hda_codec, core); in hda_codec_match()
24 container_of(drv, struct hda_codec_driver, core); in hda_codec_match()
27 u32 id = codec->probe_id ? codec->probe_id : codec->core.vendor_id; in hda_codec_match()
28 u32 rev_id = codec->core.revision_id; in hda_codec_match()
43 struct hda_codec *codec = container_of(dev, struct hda_codec, core); in hda_codec_unsol_event()
60 err = snd_hdac_device_set_chip_name(&codec->core, name); in snd_hda_codec_set_name()
66 codec->bus->mixer_assigned >= codec->core.addr) { in snd_hda_codec_set_name()
69 codec->core.vendor_name, codec->core.chip_name); in snd_hda_codec_set_name()
70 codec->bus->mixer_assigned = codec->core.addr; in snd_hda_codec_set_name()
90 err = snd_hdac_regmap_init(&codec->core); in hda_codec_driver_probe()
[all …]
Dhda_codec.h51 struct hdac_bus core; member
77 #define to_hda_bus(bus) container_of(bus, struct hda_bus, core)
98 struct hdac_driver core; member
183 struct hdac_device core; member
292 #define dev_to_hda_codec(_dev) container_of(_dev, struct hda_codec, core.dev)
293 #define hda_codec_dev(_dev) (&(_dev)->core.dev)
296 list_for_each_entry(c, &(bus)->core.codec_list, core.list)
317 return snd_hdac_codec_read(&codec->core, nid, flags, verb, parm); in snd_hda_codec_read()
324 return snd_hdac_codec_write(&codec->core, nid, flags, verb, parm); in snd_hda_codec_write()
328 snd_hdac_read_parm(&(codec)->core, nid, param)
[all …]
Dhda_sysfs.c70 CODEC_INFO_SHOW(vendor_id, core.vendor_id);
71 CODEC_INFO_SHOW(subsystem_id, core.subsystem_id);
72 CODEC_INFO_SHOW(revision_id, core.revision_id);
73 CODEC_INFO_SHOW(afg, core.afg);
74 CODEC_INFO_SHOW(mfg, core.mfg);
75 CODEC_INFO_STR_SHOW(vendor_name, core.vendor_name);
76 CODEC_INFO_STR_SHOW(chip_name, core.chip_name);
193 CODEC_INFO_STORE(vendor_id, core.vendor_id);
194 CODEC_INFO_STORE(subsystem_id, core.subsystem_id);
195 CODEC_INFO_STORE(revision_id, core.revision_id);
[all …]
Dhda_codec.c43 #define codec_in_pm(codec) atomic_read(&(codec)->core.in_pm)
52 ((codec)->core.power_caps & AC_PWRST_EPSS)
54 ((codec)->core.power_caps & AC_PWRST_CLKSTOP)
62 struct hda_codec *codec = container_of(dev, struct hda_codec, core); in codec_exec_verb()
71 mutex_lock(&bus->core.cmd_mutex); in codec_exec_verb()
74 err = snd_hdac_bus_exec_verb_unlocked(&bus->core, codec->core.addr, in codec_exec_verb()
77 mutex_unlock(&bus->core.cmd_mutex); in codec_exec_verb()
325 parm = snd_hdac_read_parm_uncached(&codec->core, nid, AC_PAR_DEVLIST_LEN); in get_num_devices()
356 if (snd_hdac_read(&codec->core, nid, in snd_hda_get_devices()
379 codec->wcaps = kmalloc(codec->core.num_nodes * 4, GFP_KERNEL); in read_widget_caps()
[all …]
Dhda_controller.h62 struct hdac_stream core; member
74 #define azx_stream(dev) (&(dev)->core)
75 #define stream_to_azx_dev(s) container_of(s, struct azx_dev, core)
163 #define azx_bus(chip) (&(chip)->bus.core)
164 #define bus_to_azx(_bus) container_of(_bus, struct azx, bus.core)
Dhda_controller.c124 azx_dev->core.bufsize = 0; in azx_pcm_hw_params()
125 azx_dev->core.period_bytes = 0; in azx_pcm_hw_params()
126 azx_dev->core.format_val = 0; in azx_pcm_hw_params()
195 stream_tag = azx_dev->core.stream_tag; in azx_pcm_prepare()
201 azx_dev->core.format_val, substream); in azx_pcm_prepare()
253 sbits |= 1 << azx_dev->core.index; in azx_pcm_trigger()
301 struct snd_pcm_substream *substream = azx_dev->core.substream; in azx_get_position()
311 if (pos >= azx_dev->core.bufsize) in azx_get_position()
353 nsec = timecounter_read(&azx_dev->core.tc); in azx_get_time_info()
527 struct hdac_bus *bus = &_bus->core; in snd_hda_attach_pcm_stream()
[all …]
Dhda_local.h131 snd_hdac_regmap_get_amp(&(codec)->core, nid, ch, dir, idx)
518 for ((nid) = (codec)->core.start_nid; (nid) < (codec)->core.end_nid; (nid)++)
525 if (nid < codec->core.start_nid || in get_wcaps()
526 nid >= codec->core.start_nid + codec->core.num_nodes) in get_wcaps()
528 return codec->wcaps[nid - codec->core.start_nid]; in get_wcaps()
552 if (nid >= codec->core.start_nid && in snd_hda_override_wcaps()
553 nid < codec->core.start_nid + codec->core.num_nodes) in snd_hda_override_wcaps()
554 codec->wcaps[nid - codec->core.start_nid] = val; in snd_hda_override_wcaps()
592 return snd_hdac_override_parm(&codec->core, nid, AC_PAR_PIN_CAP, caps); in snd_hda_override_pin_caps()
684 return snd_hdac_check_power_state(&codec->core, nid, target_state); in snd_hda_check_power_state()
/linux-4.4.14/arch/metag/oprofile/
DMakefile3 oprofile-core-y += buffer_sync.o
4 oprofile-core-y += cpu_buffer.o
5 oprofile-core-y += event_buffer.o
6 oprofile-core-y += oprof.o
7 oprofile-core-y += oprofile_files.o
8 oprofile-core-y += oprofile_stats.o
9 oprofile-core-y += oprofilefs.o
10 oprofile-core-y += timer_int.o
11 oprofile-core-$(CONFIG_HW_PERF_EVENTS) += oprofile_perf.o
15 oprofile-y += $(addprefix ../../../drivers/oprofile/,$(oprofile-core-y))
/linux-4.4.14/drivers/ps3/
Dps3-vuart.c167 dev_dbg(&dev->core, "%s:%d: tx_trigger failed: %s\n", in ps3_vuart_get_triggers()
176 dev_dbg(&dev->core, "%s:%d: tx_buf_size failed: %s\n", in ps3_vuart_get_triggers()
185 dev_dbg(&dev->core, "%s:%d: rx_trigger failed: %s\n", in ps3_vuart_get_triggers()
192 dev_dbg(&dev->core, "%s:%d: tx %lxh, rx %lxh\n", __func__, __LINE__, in ps3_vuart_get_triggers()
208 dev_dbg(&dev->core, "%s:%d: tx_trigger failed: %s\n", in ps3_vuart_set_triggers()
217 dev_dbg(&dev->core, "%s:%d: tx_buf_size failed: %s\n", in ps3_vuart_set_triggers()
226 dev_dbg(&dev->core, "%s:%d: rx_trigger failed: %s\n", in ps3_vuart_set_triggers()
231 dev_dbg(&dev->core, "%s:%d: tx %xh, rx %xh\n", __func__, __LINE__, in ps3_vuart_set_triggers()
246 dev_dbg(&dev->core, "%s:%d: rx_bytes failed: %s\n", in ps3_vuart_get_rx_bytes_waiting()
249 dev_dbg(&dev->core, "%s:%d: %llxh\n", __func__, __LINE__, in ps3_vuart_get_rx_bytes_waiting()
[all …]
Dps3stor_lib.c101 dev_dbg(&dev->sbd.core, in ps3stor_probe_access()
109 dev_dbg(&dev->sbd.core, "%s:%u: read failed, " in ps3stor_probe_access()
115 dev_dbg(&dev->sbd.core, "%s:%u: region %u is accessible\n", in ps3stor_probe_access()
127 dev_info(&dev->sbd.core, in ps3stor_probe_access()
132 dev_info(&dev->sbd.core, in ps3stor_probe_access()
155 dev_err(&dev->sbd.core, in ps3stor_setup()
164 dev_err(&dev->sbd.core, in ps3stor_setup()
171 dev->sbd.core.driver->name, dev); in ps3stor_setup()
173 dev_err(&dev->sbd.core, "%s:%u: request_irq failed %d\n", in ps3stor_setup()
181 dev_err(&dev->sbd.core, in ps3stor_setup()
[all …]
Dps3-sys-manager.c277 dev_dbg(&dev->core, "%s:%d: %xh\n", __func__, __LINE__, attr); in ps3_sys_manager_send_attr()
314 dev_dbg(&dev->core, "%s:%d: (%xh)\n", __func__, __LINE__, op); in ps3_sys_manager_send_next_op()
356 dev_dbg(&dev->core, "%s:%d\n", __func__, __LINE__); in ps3_sys_manager_send_request_shutdown()
393 dev_dbg(&dev->core, "%s:%d: (%s)\n", __func__, __LINE__, in ps3_sys_manager_send_response()
431 dev_dbg(&dev->core, "%s:%d: unsupported event version (%u)\n", in ps3_sys_manager_handle_event()
438 dev_dbg(&dev->core, "%s:%d: POWER_PRESSED (%s)\n", in ps3_sys_manager_handle_event()
452 dev_dbg(&dev->core, "%s:%d: POWER_RELEASED (%u ms)\n", in ps3_sys_manager_handle_event()
456 dev_dbg(&dev->core, "%s:%d: RESET_PRESSED (%s)\n", in ps3_sys_manager_handle_event()
470 dev_dbg(&dev->core, "%s:%d: RESET_RELEASED (%u ms)\n", in ps3_sys_manager_handle_event()
474 dev_dbg(&dev->core, "%s:%d: THERMAL_ALERT (zone %u)\n", in ps3_sys_manager_handle_event()
[all …]
Dps3av.c171 dev_dbg(&ps3av->dev->core, in ps3av_parse_event_packet()
191 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__); in ps3av_vuart_write()
193 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__); in ps3av_vuart_write()
203 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__); in ps3av_vuart_read()
233 dev_dbg(&ps3av->dev->core, in ps3av_send_cmd_pkt()
246 dev_dbg(&ps3av->dev->core, in ps3av_send_cmd_pkt()
256 dev_dbg(&ps3av->dev->core, in ps3av_send_cmd_pkt()
267 dev_dbg(&ps3av->dev->core, "%s: reply err (result=%x)\n", in ps3av_send_cmd_pkt()
282 dev_dbg(&ps3av->dev->core, "reply_packet invalid version:%x\n", in ps3av_process_reply_packet()
443 dev_dbg(&ps3av->dev->core, in ps3av_set_audio_mode()
[all …]
/linux-4.4.14/arch/mips/include/asm/netlogic/xlp-hal/
Dsys.h121 #define SYS_CPU_PLL_CTRL0(core) (0x1c0 + (core * 4)) argument
122 #define SYS_CPU_PLL_CTRL1(core) (0x1c1 + (core * 4)) argument
123 #define SYS_CPU_PLL_CTRL2(core) (0x1c2 + (core * 4)) argument
124 #define SYS_CPU_PLL_CTRL3(core) (0x1c3 + (core * 4)) argument
155 #define SYS_9XX_CPU_PLL_CTRL0(core) (0xc0 + (core * 4)) argument
156 #define SYS_9XX_CPU_PLL_CTRL1(core) (0xc1 + (core * 4)) argument
157 #define SYS_9XX_CPU_PLL_CTRL2(core) (0xc2 + (core * 4)) argument
158 #define SYS_9XX_CPU_PLL_CTRL3(core) (0xc3 + (core * 4)) argument
/linux-4.4.14/drivers/media/usb/tm6000/
Dtm6000-alsa.c36 printk(KERN_INFO "%s/1: " fmt, chip->core->name , ## arg); \
78 struct tm6000_core *core = chip->core; in _tm6000_start_audio_dma() local
83 tm6000_set_reg_mask(core, TM6010_REQ07_RCC_ACTIVE_IF, 0x40, 0x40); in _tm6000_start_audio_dma()
85 tm6000_set_audio_bitrate(core, 48000); in _tm6000_start_audio_dma()
95 struct tm6000_core *core = chip->core; in _tm6000_stop_audio_dma() local
100 tm6000_set_reg_mask(core, TM6010_REQ07_RCC_ACTIVE_IF, 0x00, 0x40); in _tm6000_stop_audio_dma()
199 struct tm6000_core *core = chip->core; in snd_tm6000_close() local
201 if (atomic_read(&core->stream_started) > 0) { in snd_tm6000_close()
202 atomic_set(&core->stream_started, 0); in snd_tm6000_close()
203 schedule_work(&core->wq_trigger); in snd_tm6000_close()
[all …]
/linux-4.4.14/drivers/staging/rtl8723au/
DMakefile2 core/rtw_cmd.o \
3 core/rtw_efuse.o \
4 core/rtw_ieee80211.o \
5 core/rtw_mlme.o \
6 core/rtw_mlme_ext.o \
7 core/rtw_pwrctrl.o \
8 core/rtw_recv.o \
9 core/rtw_security.o \
10 core/rtw_sreset.o \
11 core/rtw_sta_mgt.o \
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dmvebu-core-clock.txt3 Marvell MVEBU SoCs usually allow to determine core clock frequencies by
4 reading the Sample-At-Reset (SAR) register. The core clock consumer should
47 "marvell,armada-370-core-clock" - For Armada 370 SoC core clocks
48 "marvell,armada-375-core-clock" - For Armada 375 SoC core clocks
49 "marvell,armada-380-core-clock" - For Armada 380/385 SoC core clocks
50 "marvell,armada-390-core-clock" - For Armada 39x SoC core clocks
51 "marvell,armada-xp-core-clock" - For Armada XP SoC core clocks
52 "marvell,dove-core-clock" - for Dove SoC core clocks
53 "marvell,kirkwood-core-clock" - for Kirkwood SoC (except mv88f6180)
54 "marvell,mv88f6180-core-clock" - for Kirkwood MV88f6180 SoC
[all …]
Dqoriq-clock.txt97 * "fsl,qoriq-core-pll-1.0" for core PLL clocks (v1.0)
98 * "fsl,qoriq-core-pll-2.0" for core PLL clocks (v2.0)
99 * "fsl,qoriq-core-mux-1.0" for core mux clocks (v1.0)
100 * "fsl,qoriq-core-mux-2.0" for core mux clocks (v2.0)
109 clocks, or <1> for "fsl,qoriq-core-pll-[1,2].0" clocks.
110 For "fsl,qoriq-core-pll-[1,2].0" clocks, the single
143 compatible = "fsl,qoriq-core-pll-1.0";
151 compatible = "fsl,qoriq-core-pll-1.0";
159 compatible = "fsl,qoriq-core-mux-1.0";
168 compatible = "fsl,qoriq-core-mux-1.0";
Darm-integrator.txt7 core module and there is only one of these.
9 This clock node *must* be a subnode of the core module, since
23 core-module@10000000 {
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/
Dti,c64x+megamod-pic.txt6 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
39 the core interrupt controller. When an individual interrupt is cascaded,
[all …]
Dsnps,archs-idu-intc.txt4 dynamic IRQ routing, load balancing of common/external IRQs towards core intc.
10 - interrupt-parent: <reference to parent core intc>
12 - interrupts: <...> specifies the upstream core irqs
22 core_intc: core-interrupt-controller {
39 /* upstream core irqs: downstream these are "COMMON" irq 0,1.. */
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/phy/
Dphyreg_n.h157 #define NPHY_IqestIqAccLo(core) ((core == 0) ? 0x12c : 0x134) argument
159 #define NPHY_IqestIqAccHi(core) ((core == 0) ? 0x12d : 0x135) argument
161 #define NPHY_IqestipwrAccLo(core) ((core == 0) ? 0x12e : 0x136) argument
163 #define NPHY_IqestipwrAccHi(core) ((core == 0) ? 0x12f : 0x137) argument
165 #define NPHY_IqestqpwrAccLo(core) ((core == 0) ? 0x130 : 0x138) argument
167 #define NPHY_IqestqpwrAccHi(core) ((core == 0) ? 0x131 : 0x139) argument
Dphy_n.c36 #define READ_RADIO_REG2(pi, radio_type, jspace, core, reg_name) \ argument
38 ((core == PHY_CORE_0) ? \
42 #define WRITE_RADIO_REG2(pi, radio_type, jspace, core, reg_name, value) \ argument
44 ((core == PHY_CORE_0) ? \
51 #define READ_RADIO_REG3(pi, radio_type, jspace, core, reg_name) \ argument
52 read_radio_reg(pi, ((core == PHY_CORE_0) ? \
56 #define WRITE_RADIO_REG3(pi, radio_type, jspace, core, reg_name, value) \ argument
57 write_radio_reg(pi, ((core == PHY_CORE_0) ? \
62 #define READ_RADIO_REG4(pi, radio_type, jspace, core, reg_name) \ argument
63 read_radio_reg(pi, ((core == PHY_CORE_0) ? \
[all …]
/linux-4.4.14/drivers/media/pci/bt8xx/
Dbttv-gpio.c84 int bttv_sub_add_device(struct bttv_core *core, char *name) in bttv_sub_add_device() argument
93 sub->core = core; in bttv_sub_add_device()
94 sub->dev.parent = &core->pci->dev; in bttv_sub_add_device()
97 dev_set_name(&sub->dev, "%s%d", name, core->nr); in bttv_sub_add_device()
104 pr_info("%d: add subdevice \"%s\"\n", core->nr, dev_name(&sub->dev)); in bttv_sub_add_device()
105 list_add_tail(&sub->list,&core->subs); in bttv_sub_add_device()
109 int bttv_sub_del_devices(struct bttv_core *core) in bttv_sub_del_devices() argument
113 list_for_each_entry_safe(sub, save, &core->subs, list) { in bttv_sub_del_devices()
141 void bttv_gpio_inout(struct bttv_core *core, u32 mask, u32 outbits) in bttv_gpio_inout() argument
143 struct bttv *btv = container_of(core, struct bttv, c); in bttv_gpio_inout()
[all …]
/linux-4.4.14/drivers/video/fbdev/omap2/dss/
Dhdmi5_core.c50 static void hdmi_core_ddc_init(struct hdmi_core_data *core) in hdmi_core_ddc_init() argument
52 void __iomem *base = core->base; in hdmi_core_ddc_init()
129 static void hdmi_core_ddc_uninit(struct hdmi_core_data *core) in hdmi_core_ddc_uninit() argument
131 void __iomem *base = core->base; in hdmi_core_ddc_uninit()
139 static int hdmi_core_ddc_edid(struct hdmi_core_data *core, u8 *pedid, u8 ext) in hdmi_core_ddc_edid() argument
141 void __iomem *base = core->base; in hdmi_core_ddc_edid()
199 int hdmi5_read_edid(struct hdmi_core_data *core, u8 *edid, int len) in hdmi5_read_edid() argument
207 hdmi_core_ddc_init(core); in hdmi5_read_edid()
209 r = hdmi_core_ddc_edid(core, edid, 0); in hdmi5_read_edid()
219 r = hdmi_core_ddc_edid(core, edid + i * EDID_LENGTH, i); in hdmi5_read_edid()
[all …]
Dhdmi4_core.c42 static inline void __iomem *hdmi_av_base(struct hdmi_core_data *core) in hdmi_av_base() argument
44 return core->base + HDMI_CORE_AV; in hdmi_av_base()
47 static int hdmi_core_ddc_init(struct hdmi_core_data *core) in hdmi_core_ddc_init() argument
49 void __iomem *base = core->base; in hdmi_core_ddc_init()
89 static int hdmi_core_ddc_edid(struct hdmi_core_data *core, in hdmi_core_ddc_edid() argument
92 void __iomem *base = core->base; in hdmi_core_ddc_edid()
171 int hdmi4_read_edid(struct hdmi_core_data *core, u8 *edid, int len) in hdmi4_read_edid() argument
178 r = hdmi_core_ddc_init(core); in hdmi4_read_edid()
182 r = hdmi_core_ddc_edid(core, edid, 0); in hdmi4_read_edid()
189 r = hdmi_core_ddc_edid(core, edid + 0x80, 1); in hdmi4_read_edid()
[all …]
Dcore.c47 } core; variable
55 return core.default_display_name; in omapdss_get_default_display_name()
61 struct omap_dss_board_info *pdata = core.pdev->dev.platform_data; in omapdss_get_version()
68 return core.pdev; in dss_get_core_pdev()
73 struct omap_dss_board_info *board_data = core.pdev->dev.platform_data; in dss_dsi_enable_pads()
83 struct omap_dss_board_info *board_data = core.pdev->dev.platform_data; in dss_dsi_disable_pads()
93 struct omap_dss_board_info *pdata = core.pdev->dev.platform_data; in dss_set_min_bus_tput()
199 core.pdev = pdev; in omap_dss_probe()
208 core.default_display_name = def_disp_name; in omap_dss_probe()
210 core.default_display_name = pdata->default_display_name; in omap_dss_probe()
[all …]
Dhdmi4_core.h263 int hdmi4_read_edid(struct hdmi_core_data *core, u8 *edid, int len);
264 void hdmi4_configure(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
266 void hdmi4_core_dump(struct hdmi_core_data *core, struct seq_file *s);
267 int hdmi4_core_init(struct platform_device *pdev, struct hdmi_core_data *core);
269 int hdmi4_audio_start(struct hdmi_core_data *core, struct hdmi_wp_data *wp);
270 void hdmi4_audio_stop(struct hdmi_core_data *core, struct hdmi_wp_data *wp);
271 int hdmi4_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
Dhdmi5_core.h295 int hdmi5_read_edid(struct hdmi_core_data *core, u8 *edid, int len);
296 void hdmi5_core_dump(struct hdmi_core_data *core, struct seq_file *s);
297 int hdmi5_core_handle_irqs(struct hdmi_core_data *core);
298 void hdmi5_configure(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
300 int hdmi5_core_init(struct platform_device *pdev, struct hdmi_core_data *core);
302 int hdmi5_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
/linux-4.4.14/drivers/usb/host/
Dohci-ps3.c94 dev_dbg(&dev->core, "%s:%d: ps3_open_hv_device failed: %s\n", in ps3_ohci_probe()
103 dev_dbg(&dev->core, "%s:%d: ps3_dma_region_create failed: " in ps3_ohci_probe()
112 dev_dbg(&dev->core, "%s:%d: ps3_map_mmio_region failed\n", in ps3_ohci_probe()
118 dev_dbg(&dev->core, "%s:%d: mmio mapped_addr %lxh\n", __func__, in ps3_ohci_probe()
124 dev_dbg(&dev->core, "%s:%d: ps3_construct_io_irq(%d) failed.\n", in ps3_ohci_probe()
130 dev->core.dma_mask = &dummy_mask; /* FIXME: for improper usb code */ in ps3_ohci_probe()
132 hcd = usb_create_hcd(&ps3_ohci_hc_driver, &dev->core, dev_name(&dev->core)); in ps3_ohci_probe()
135 dev_dbg(&dev->core, "%s:%d: usb_create_hcd failed\n", __func__, in ps3_ohci_probe()
145 dev_dbg(&dev->core, "%s:%d: request_mem_region failed\n", in ps3_ohci_probe()
151 dev_dbg(&dev->core, "%s:%d: ioremap failed\n", __func__, in ps3_ohci_probe()
[all …]
Dehci-ps3.c111 dev_dbg(&dev->core, "%s:%d: ps3_open_hv_device failed\n", in ps3_ehci_probe()
119 dev_dbg(&dev->core, "%s:%d: ps3_dma_region_create failed: " in ps3_ehci_probe()
128 dev_dbg(&dev->core, "%s:%d: ps3_map_mmio_region failed\n", in ps3_ehci_probe()
134 dev_dbg(&dev->core, "%s:%d: mmio mapped_addr %lxh\n", __func__, in ps3_ehci_probe()
140 dev_dbg(&dev->core, "%s:%d: ps3_construct_io_irq(%d) failed.\n", in ps3_ehci_probe()
146 dev->core.dma_mask = &dummy_mask; /* FIXME: for improper usb code */ in ps3_ehci_probe()
148 hcd = usb_create_hcd(&ps3_ehci_hc_driver, &dev->core, dev_name(&dev->core)); in ps3_ehci_probe()
151 dev_dbg(&dev->core, "%s:%d: usb_create_hcd failed\n", __func__, in ps3_ehci_probe()
161 dev_dbg(&dev->core, "%s:%d: request_mem_region failed\n", in ps3_ehci_probe()
167 dev_dbg(&dev->core, "%s:%d: ioremap failed\n", __func__, in ps3_ehci_probe()
[all …]
/linux-4.4.14/drivers/net/ethernet/broadcom/
Dbgmac.c29 static bool bgmac_wait_value(struct bcma_device *core, u16 reg, u32 mask, in bgmac_wait_value() argument
36 val = bcma_read32(core, reg); in bgmac_wait_value()
80 if (!bgmac_wait_value(bgmac->core, in bgmac_dma_tx_reset()
100 if (bgmac->core->id.rev >= 4) { in bgmac_dma_tx_enable()
143 struct device *dma_dev = bgmac->core->dma_dev; in bgmac_dma_tx_add()
243 struct device *dma_dev = bgmac->core->dma_dev; in bgmac_dma_tx_free()
303 if (!bgmac_wait_value(bgmac->core, in bgmac_dma_rx_reset()
317 if (bgmac->core->id.rev >= 4) { in bgmac_dma_rx_enable()
338 struct device *dma_dev = bgmac->core->dma_dev; in bgmac_dma_rx_skb_for_slot()
427 struct device *dma_dev = bgmac->core->dma_dev; in bgmac_dma_rx_read()
[all …]
Dbgmac.h7 dev_err(&(bgmac)->core->dev, fmt, ##__VA_ARGS__)
9 dev_warn(&(bgmac)->core->dev, fmt, ##__VA_ARGS__)
11 dev_info(&(bgmac)->core->dev, fmt, ##__VA_ARGS__)
13 dev_dbg(&(bgmac)->core->dev, fmt, ##__VA_ARGS__)
439 struct bcma_device *core; member
470 return bcma_read32(bgmac->core, offset); in bgmac_read()
475 bcma_write32(bgmac->core, offset, value); in bgmac_write()
/linux-4.4.14/arch/mips/netlogic/xlp/
Dwakeup.c53 static int xlp_wakeup_core(uint64_t sysbase, int node, int core) in xlp_wakeup_core() argument
58 coremask = (1 << core); in xlp_wakeup_core()
114 int core, n, cpu, ncores; in xlp_enable_secondary_cores() local
172 for (core = 0; core < ncores; core++) { in xlp_enable_secondary_cores()
174 if (n == 0 && core == 0) in xlp_enable_secondary_cores()
178 if ((syscoremask & (1 << core)) == 0) in xlp_enable_secondary_cores()
182 cpu = (n * ncores + core) * NLM_THREADS_PER_CORE; in xlp_enable_secondary_cores()
187 if (!xlp_wakeup_core(nodep->sysbase, n, core)) in xlp_enable_secondary_cores()
191 nodep->coremask |= 1u << core; in xlp_enable_secondary_cores()
195 pr_err("Node %d : timeout core %d\n", n, core); in xlp_enable_secondary_cores()
Dnlm_hal.c228 static unsigned int nlm_xlp2_get_core_frequency(int node, int core) in nlm_xlp2_get_core_frequency() argument
236 SYS_9XX_CPU_PLL_CTRL0(core)); in nlm_xlp2_get_core_frequency()
238 SYS_9XX_CPU_PLL_CTRL1(core)); in nlm_xlp2_get_core_frequency()
242 SYS_CPU_PLL_CTRL0(core)); in nlm_xlp2_get_core_frequency()
244 SYS_CPU_PLL_CTRL1(core)); in nlm_xlp2_get_core_frequency()
274 static unsigned int nlm_xlp_get_core_frequency(int node, int core) in nlm_xlp_get_core_frequency() argument
286 dfs_div = ((dfsval >> (core * 4)) & 0xf) + 1; in nlm_xlp_get_core_frequency()
295 unsigned int nlm_get_core_frequency(int node, int core) in nlm_get_core_frequency() argument
298 return nlm_xlp2_get_core_frequency(node, core); in nlm_get_core_frequency()
300 return nlm_xlp_get_core_frequency(node, core); in nlm_get_core_frequency()
/linux-4.4.14/drivers/firewire/
DMakefile5 firewire-core-y += core-card.o core-cdev.o core-device.o \
6 core-iso.o core-topology.o core-transaction.o
11 obj-$(CONFIG_FIREWIRE) += firewire-core.o
/linux-4.4.14/arch/powerpc/platforms/ps3/
Dsystem-bus.c362 dev->match_id, dev->match_sub_id, dev_name(&dev->core), in ps3_system_bus_match()
363 drv->match_id, drv->match_sub_id, drv->core.name); in ps3_system_bus_match()
367 dev->match_id, dev->match_sub_id, dev_name(&dev->core), in ps3_system_bus_match()
368 drv->match_id, drv->match_sub_id, drv->core.name); in ps3_system_bus_match()
389 dev_name(&dev->core)); in ps3_system_bus_probe()
391 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev_name(&dev->core)); in ps3_system_bus_probe()
410 dev_dbg(&dev->core, "%s:%d %s: no remove method\n", in ps3_system_bus_remove()
411 __func__, __LINE__, drv->core.name); in ps3_system_bus_remove()
413 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev_name(&dev->core)); in ps3_system_bus_remove()
424 dev_dbg(&dev->core, " -> %s:%d: match_id %d\n", __func__, __LINE__, in ps3_system_bus_shutdown()
[all …]
/linux-4.4.14/arch/arm/crypto/
DMakefile28 aes-arm-bs-y := aesbs-core.o aesbs-glue.o
32 sha256-arm-y := sha256-core.o sha256_glue.o $(sha256-arm-neon-y)
34 sha512-arm-y := sha512-core.o sha512-glue.o $(sha512-arm-neon-y)
35 sha1-arm-ce-y := sha1-ce-core.o sha1-ce-glue.o
36 sha2-arm-ce-y := sha2-ce-core.o sha2-ce-glue.o
37 aes-arm-ce-y := aes-ce-core.o aes-ce-glue.o
38 ghash-arm-ce-y := ghash-ce-core.o ghash-ce-glue.o
43 $(src)/aesbs-core.S_shipped: $(src)/bsaes-armv7.pl
46 $(src)/sha256-core.S_shipped: $(src)/sha256-armv4.pl
49 $(src)/sha512-core.S_shipped: $(src)/sha512-armv4.pl
[all …]
D.gitignore1 aesbs-core.S
2 sha256-core.S
3 sha512-core.S
/linux-4.4.14/drivers/block/
Dps3disk.c104 dev_dbg(&dev->sbd.core, "%s:%u: bio %u: %u sectors from %lu\n", in ps3disk_scatter_gather()
137 dev_dbg(&dev->sbd.core, in ps3disk_submit_request_sg()
144 dev_dbg(&dev->sbd.core, "%s:%u: %s %llu sectors starting at %llu\n", in ps3disk_submit_request_sg()
159 dev_err(&dev->sbd.core, "%s:%u: %s failed %d\n", __func__, in ps3disk_submit_request_sg()
175 dev_dbg(&dev->sbd.core, "%s:%u: flush request\n", __func__, __LINE__); in ps3disk_submit_flush_request()
181 dev_err(&dev->sbd.core, "%s:%u: sync cache failed 0x%llx\n", in ps3disk_submit_flush_request()
196 dev_dbg(&dev->sbd.core, "%s:%u\n", __func__, __LINE__); in ps3disk_do_request()
219 dev_dbg(&dev->sbd.core, "%s:%u busy\n", __func__, __LINE__); in ps3disk_request()
238 dev_err(&dev->sbd.core, in ps3disk_interrupt()
243 dev_err(&dev->sbd.core, "%s:%u: res=%d status=0x%llx\n", in ps3disk_interrupt()
[all …]
Dps3vram.c167 dev_warn(&dev->core, "FIFO timeout (%08x/%08x/%08x)\n", in ps3vram_wait_ring()
197 dev_err(&dev->core, "%s: lv1_gpu_fb_blit failed %d\n", in ps3vram_rewind_ring()
216 dev_err(&dev->core, "%s: lv1_gpu_fb_blit failed %d\n", in ps3vram_fire_ring()
221 dev_dbg(&dev->core, "FIFO full, rewinding\n"); in ps3vram_fire_ring()
275 dev_warn(&dev->core, "%s: Notifier timeout\n", __func__); in ps3vram_upload()
307 dev_warn(&dev->core, "%s: Notifier timeout\n", __func__); in ps3vram_download()
322 dev_dbg(&dev->core, "Flushing %d: 0x%08x\n", entry, in ps3vram_cache_evict()
327 dev_err(&dev->core, in ps3vram_cache_evict()
341 dev_dbg(&dev->core, "Fetching %d: 0x%08x\n", entry, address); in ps3vram_cache_load()
346 dev_err(&dev->core, in ps3vram_cache_load()
[all …]
/linux-4.4.14/include/linux/mfd/
Dsi476x-core.h179 static inline void si476x_core_lock(struct si476x_core *core) in si476x_core_lock() argument
181 mutex_lock(&core->cmd_lock); in si476x_core_lock()
188 static inline void si476x_core_unlock(struct si476x_core *core) in si476x_core_unlock() argument
190 mutex_unlock(&core->cmd_lock); in si476x_core_unlock()
195 static inline u16 hz_to_si476x(struct si476x_core *core, int freq) in hz_to_si476x() argument
199 switch (core->power_up_parameters.func) { in hz_to_si476x()
212 static inline int si476x_to_hz(struct si476x_core *core, u16 freq) in si476x_to_hz() argument
216 switch (core->power_up_parameters.func) { in si476x_to_hz()
242 static inline u16 v4l2_to_si476x(struct si476x_core *core, int freq) in v4l2_to_si476x() argument
244 return hz_to_si476x(core, v4l2_to_hz(freq)); in v4l2_to_si476x()
[all …]
Dwl1273-core.h283 int (*read)(struct wl1273_core *core, u8, u16 *);
284 int (*write)(struct wl1273_core *core, u8, u16);
285 int (*write_data)(struct wl1273_core *core, u8 *, u16);
286 int (*set_audio)(struct wl1273_core *core, unsigned int);
287 int (*set_volume)(struct wl1273_core *core, unsigned int);
/linux-4.4.14/arch/avr32/
DMakefile33 core-y += $(machdirs)
34 core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/
35 core-$(CONFIG_BOARD_ATNGW100_COMMON) += arch/avr32/boards/atngw100/
36 core-$(CONFIG_BOARD_HAMMERHEAD) += arch/avr32/boards/hammerhead/
37 core-$(CONFIG_BOARD_FAVR_32) += arch/avr32/boards/favr-32/
38 core-$(CONFIG_BOARD_MERISC) += arch/avr32/boards/merisc/
39 core-$(CONFIG_BOARD_MIMC200) += arch/avr32/boards/mimc200/
40 core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/
41 core-y += arch/avr32/kernel/
42 core-y += arch/avr32/mm/
/linux-4.4.14/drivers/net/wireless/b43/
Dphy_ht.c53 int core; in b43_radio_2059_channel_setup() local
69 for (core = 0; core < 3; core++) { in b43_radio_2059_channel_setup()
70 r = routing[core]; in b43_radio_2059_channel_setup()
449 int core; in b43_phy_ht_rssi_select() local
454 for (core = 0; core < 3; core++) { in b43_phy_ht_rssi_select()
456 if ((core_sel == 1 && core != 0) || in b43_phy_ht_rssi_select()
457 (core_sel == 2 && core != 1) || in b43_phy_ht_rssi_select()
458 (core_sel == 3 && core != 2)) in b43_phy_ht_rssi_select()
463 b43_phy_set(dev, ctl_regs[core][0], 0x3 << 8); in b43_phy_ht_rssi_select()
464 b43_phy_set(dev, ctl_regs[core][0], 0x3 << 10); in b43_phy_ht_rssi_select()
[all …]
Dbus.c88 struct b43_bus_dev *b43_bus_dev_bcma_init(struct bcma_device *core) in b43_bus_dev_bcma_init() argument
95 dev->bdev = core; in b43_bus_dev_bcma_init()
116 dev->dev = &core->dev; in b43_bus_dev_bcma_init()
117 dev->dma_dev = core->dma_dev; in b43_bus_dev_bcma_init()
118 dev->irq = core->irq; in b43_bus_dev_bcma_init()
120 dev->board_vendor = core->bus->boardinfo.vendor; in b43_bus_dev_bcma_init()
121 dev->board_type = core->bus->boardinfo.type; in b43_bus_dev_bcma_init()
122 dev->board_rev = core->bus->sprom.board_rev; in b43_bus_dev_bcma_init()
124 dev->chip_id = core->bus->chipinfo.id; in b43_bus_dev_bcma_init()
125 dev->chip_rev = core->bus->chipinfo.rev; in b43_bus_dev_bcma_init()
[all …]
Dphy_n.c155 u16 value, u8 core, bool off, in b43_nphy_rf_ctl_override_rev19() argument
163 u16 value, u8 core, bool off, in b43_nphy_rf_ctl_override_rev7() argument
199 if (!core || (core & (1 << i))) { in b43_nphy_rf_ctl_override_rev7()
211 u16 value, u8 core, bool off) in b43_nphy_rf_ctl_override_one_to_many() argument
220 b43_nphy_rf_ctl_override_rev7(dev, 0x20, value, core, off, 1); in b43_nphy_rf_ctl_override_one_to_many()
221 b43_nphy_rf_ctl_override_rev7(dev, 0x10, value, core, off, 1); in b43_nphy_rf_ctl_override_one_to_many()
222 b43_nphy_rf_ctl_override_rev7(dev, 0x08, value, core, off, 1); in b43_nphy_rf_ctl_override_one_to_many()
225 b43_nphy_rf_ctl_override_rev7(dev, 0x4, value, core, off, 1); in b43_nphy_rf_ctl_override_one_to_many()
226 b43_nphy_rf_ctl_override_rev7(dev, 0x2, value, core, off, 1); in b43_nphy_rf_ctl_override_one_to_many()
227 b43_nphy_rf_ctl_override_rev7(dev, 0x1, value, core, off, 1); in b43_nphy_rf_ctl_override_one_to_many()
[all …]
/linux-4.4.14/drivers/watchdog/
Docteon-wdt-main.c252 unsigned int core = cvmx_get_core_num(); in octeon_wdt_poke_irq() local
253 int cpu = core2cpu(core); in octeon_wdt_poke_irq()
258 cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1); in octeon_wdt_poke_irq()
267 cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1); in octeon_wdt_poke_irq()
379 unsigned int core; in octeon_wdt_disable_interrupt() local
383 core = cpu2core(cpu); in octeon_wdt_disable_interrupt()
385 irq = OCTEON_IRQ_WDOG0 + core; in octeon_wdt_disable_interrupt()
388 cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1); in octeon_wdt_disable_interrupt()
392 cvmx_write_csr(CVMX_CIU_WDOGX(core), ciu_wdog.u64); in octeon_wdt_disable_interrupt()
399 unsigned int core; in octeon_wdt_setup_interrupt() local
[all …]
/linux-4.4.14/drivers/scsi/
Dps3rom.c81 dev_dbg(&dev->sbd.core, "%s:%u: id %u, lun %llu, channel %u\n", __func__, in ps3rom_slave_configure()
104 dev_dbg(&dev->sbd.core, "%s:%u: send ATAPI command 0x%02x\n", __func__, in ps3rom_atapi_request()
144 dev_dbg(&dev->sbd.core, in ps3rom_atapi_request()
151 dev_err(&dev->sbd.core, in ps3rom_atapi_request()
177 dev_dbg(&dev->sbd.core, "%s:%u: read %u sectors starting at %u\n", in ps3rom_read_request()
184 dev_err(&dev->sbd.core, "%s:%u: read failed %d\n", __func__, in ps3rom_read_request()
198 dev_dbg(&dev->sbd.core, "%s:%u: write %u sectors starting at %u\n", in ps3rom_write_request()
207 dev_err(&dev->sbd.core, "%s:%u: write failed %d\n", __func__, in ps3rom_write_request()
292 dev_err(&dev->sbd.core, in ps3rom_interrupt()
297 dev_err(&dev->sbd.core, "%s:%u: res=%d status=0x%llx\n", in ps3rom_interrupt()
[all …]
/linux-4.4.14/sound/soc/
DMakefile1 snd-soc-core-objs := soc-core.o soc-dapm.o soc-jack.o soc-cache.o soc-utils.o
2 snd-soc-core-objs += soc-pcm.o soc-io.o soc-devres.o soc-ops.o
3 snd-soc-core-$(CONFIG_SND_SOC_COMPRESS) += soc-compress.o
6 snd-soc-core-objs += soc-topology.o
10 snd-soc-core-objs += soc-generic-dmaengine-pcm.o
14 snd-soc-core-objs += soc-ac97.o
17 obj-$(CONFIG_SND_SOC) += snd-soc-core.o
/linux-4.4.14/Documentation/target/
Dtcm_mod_builder.txt30 target:/mnt/sdb/lio-core-2.6.git/Documentation/target# python tcm_mod_builder.py -p iSCSI -m tcm_na…
31 tcm_dir: /mnt/sdb/lio-core-2.6.git/Documentation/target/../../
34 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000
37 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000
39 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_base.h
41 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../include/target/target_core_fabric_ops.h
43 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_fabric.c
45 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_fabric.h
47 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_configf…
49 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/Kbuild
[all …]
/linux-4.4.14/drivers/char/
Dps3flash.c53 dev_err(&dev->sbd.core, "%s:%u: %s failed 0x%llx\n", __func__, in ps3flash_read_write_sectors()
115 dev_dbg(&dev->sbd.core, in ps3flash_read()
124 dev_dbg(&dev->sbd.core, in ps3flash_read()
144 dev_dbg(&dev->sbd.core, in ps3flash_read()
184 dev_dbg(&dev->sbd.core, in ps3flash_write()
193 dev_dbg(&dev->sbd.core, in ps3flash_write()
216 dev_dbg(&dev->sbd.core, in ps3flash_write()
308 dev_err(&dev->sbd.core, in ps3flash_interrupt()
313 dev_err(&dev->sbd.core, "%s:%u: res=%d status=0x%llx\n", in ps3flash_interrupt()
344 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core); in ps3flash_probe()
[all …]
/linux-4.4.14/drivers/spi/
Dspi-bcm53xx.c18 struct bcma_device *core; member
26 return bcma_read32(b53spi->core, offset); in bcm53xxspi_read()
32 bcma_write32(b53spi->core, offset, value); in bcm53xxspi_write()
223 static int bcm53xxspi_bcma_probe(struct bcma_device *core) in bcm53xxspi_bcma_probe() argument
229 if (core->bus->drv_cc.core->id.rev != 42) { in bcm53xxspi_bcma_probe()
234 master = spi_alloc_master(&core->dev, sizeof(*b53spi)); in bcm53xxspi_bcma_probe()
240 b53spi->core = core; in bcm53xxspi_bcma_probe()
244 bcma_set_drvdata(core, b53spi); in bcm53xxspi_bcma_probe()
246 err = devm_spi_register_master(&core->dev, master); in bcm53xxspi_bcma_probe()
249 bcma_set_drvdata(core, NULL); in bcm53xxspi_bcma_probe()
/linux-4.4.14/arch/c6x/boot/dts/
Dtms320c6678.dtsi60 compatible = "ti,c64x+core-pic";
80 ti,core-mask = < 0x01 >;
86 ti,core-mask = < 0x02 >;
92 ti,core-mask = < 0x04 >;
98 ti,core-mask = < 0x08 >;
104 ti,core-mask = < 0x10 >;
110 ti,core-mask = < 0x20 >;
116 ti,core-mask = < 0x40 >;
122 ti,core-mask = < 0x80 >;
Dtms320c6472.dtsi50 compatible = "ti,c64x+core-pic";
70 ti,core-mask = < 0x01 >;
76 ti,core-mask = < 0x02 >;
82 ti,core-mask = < 0x04 >;
88 ti,core-mask = < 0x08 >;
94 ti,core-mask = < 0x10 >;
100 ti,core-mask = < 0x20 >;
Dtms320c6474.dtsi37 compatible = "ti,c64x+core-pic";
55 ti,core-mask = < 0x04 >;
61 ti,core-mask = < 0x02 >;
67 ti,core-mask = < 0x01 >;
/linux-4.4.14/include/crypto/
Ddrbg.h127 const struct drbg_core *core; member
134 if (drbg && drbg->core) in drbg_statelen()
135 return drbg->core->statelen; in drbg_statelen()
141 if (drbg && drbg->core) in drbg_blocklen()
142 return drbg->core->blocklen_bytes; in drbg_blocklen()
148 if (drbg && drbg->core) in drbg_keylen()
149 return (drbg->core->statelen - drbg->core->blocklen_bytes); in drbg_keylen()
/linux-4.4.14/tools/power/cpupower/utils/helpers/
Dtopology.c47 else if (top1->core < top2->core) in __compare()
49 else if (top1->core > top2->core) in __compare()
81 cpu_top->core_info[cpu].core = -1; in get_cpu_topology()
87 &(cpu_top->core_info[cpu].core)) < 0) { in get_cpu_topology()
89 cpu_top->core_info[cpu].core = -1; in get_cpu_topology()
/linux-4.4.14/drivers/macintosh/
Dwindfarm_smu_sat.c212 u8 chip, core; in wf_sat_probe() local
248 core = loc[5] - '0'; in wf_sat_probe()
249 if (chip > 1 || core > 1) { in wf_sat_probe()
254 cpu = 2 * chip + core; in wf_sat_probe()
266 vsens[core] = index; in wf_sat_probe()
270 isens[core] = index; in wf_sat_probe()
301 for (core = 0; core < 2; ++core) { in wf_sat_probe()
302 if (vsens[core] < 0 || isens[core] < 0) in wf_sat_probe()
304 cpu = 2 * sat->nr + core; in wf_sat_probe()
311 sens->index = vsens[core]; in wf_sat_probe()
[all …]
/linux-4.4.14/drivers/ide/
DMakefile7 ide-core-y += ide.o ide-ioctls.o ide-io.o ide-iops.o ide-lib.o ide-probe.o \
12 ide-core-$(CONFIG_IDE_XFER_MODE) += ide-pio-blacklist.o ide-xfer-mode.o
13 ide-core-$(CONFIG_IDE_TIMINGS) += ide-timings.o
14 ide-core-$(CONFIG_IDE_ATAPI) += ide-atapi.o
15 ide-core-$(CONFIG_BLK_DEV_IDEPCI) += setup-pci.o
16 ide-core-$(CONFIG_BLK_DEV_IDEDMA) += ide-dma.o
17 ide-core-$(CONFIG_BLK_DEV_IDEDMA_SFF) += ide-dma-sff.o
18 ide-core-$(CONFIG_IDE_PROC_FS) += ide-proc.o
19 ide-core-$(CONFIG_BLK_DEV_IDEACPI) += ide-acpi.o
20 ide-core-$(CONFIG_IDE_LEGACY) += ide-legacy.o
[all …]
/linux-4.4.14/drivers/net/ethernet/mellanox/mlxsw/
Dswitchx2.c62 struct mlxsw_core *core; member
196 return mlxsw_reg_write(mlxsw_sx->core, MLXSW_REG(paos), paos_pl); in mlxsw_sx_port_admin_status_set()
208 err = mlxsw_reg_query(mlxsw_sx->core, MLXSW_REG(paos), paos_pl); in mlxsw_sx_port_oper_status_get()
225 err = mlxsw_reg_query(mlxsw_sx->core, MLXSW_REG(pmtu), pmtu_pl); in mlxsw_sx_port_mtu_set()
234 return mlxsw_reg_write(mlxsw_sx->core, MLXSW_REG(pmtu), pmtu_pl); in mlxsw_sx_port_mtu_set()
243 return mlxsw_reg_write(mlxsw_sx->core, MLXSW_REG(pspa), pspa_pl); in mlxsw_sx_port_swid_set()
253 return mlxsw_reg_write(mlxsw_sx->core, MLXSW_REG(sspr), sspr_pl); in mlxsw_sx_port_system_port_mapping_set()
264 err = mlxsw_reg_query(mlxsw_sx->core, MLXSW_REG(pmlp), pmlp_pl); in mlxsw_sx_port_module_check()
520 err = mlxsw_reg_query(mlxsw_sx->core, MLXSW_REG(ppcnt), ppcnt_pl); in mlxsw_sx_port_get_stats()
740 err = mlxsw_reg_query(mlxsw_sx->core, MLXSW_REG(ptys), ptys_pl); in mlxsw_sx_port_get_settings()
[all …]
Dspectrum.c153 err = mlxsw_reg_query(mlxsw_sp->core, MLXSW_REG(spad), spad_pl); in mlxsw_sp_base_mac_get()
169 return mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(paos), paos_pl); in mlxsw_sp_port_admin_status_set()
181 err = mlxsw_reg_query(mlxsw_sp->core, MLXSW_REG(paos), paos_pl); in mlxsw_sp_port_oper_status_get()
196 err = mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(sfmr), sfmr_pl); in mlxsw_sp_vfid_create()
213 mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(sfmr), sfmr_pl); in mlxsw_sp_vfid_destroy()
224 return mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(ppad), ppad_pl); in mlxsw_sp_port_dev_addr_set()
249 err = mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(spms), spms_pl); in mlxsw_sp_port_stp_state_set()
263 err = mlxsw_reg_query(mlxsw_sp->core, MLXSW_REG(pmtu), pmtu_pl); in mlxsw_sp_port_mtu_set()
272 return mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(pmtu), pmtu_pl); in mlxsw_sp_port_mtu_set()
281 return mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(pspa), pspa_pl); in mlxsw_sp_port_swid_set()
[all …]
/linux-4.4.14/sound/hda/
DMakefile1 snd-hda-core-objs := hda_bus_type.o hdac_bus.o hdac_device.o hdac_sysfs.o \
4 snd-hda-core-objs += trace.o
8 snd-hda-core-$(CONFIG_SND_HDA_I915) += hdac_i915.o
10 obj-$(CONFIG_SND_HDA_CORE) += snd-hda-core.o
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/
DMakefile56 REGDESC += $(BASEDIR)/core/cpu/intr_vect/rtl/guinness/ivmask.config.r
57 REGDESC += $(BASEDIR)/core/memarb/rtl/guinness/marb_top.r
58 REGDESC += $(BASEDIR)/core/cpu/mmu/doc/mmu_regs.r
62 REGDESC += $(BASEDIR)/core/strcop/rtl/strcop_regs.r
101 dma_defs.h: $(BASEDIR)/core/dma/rtl/common/dma_regdes.r
103 $(BASEDIR)/core/dma/sw/dma.h:
104 dma.h: $(BASEDIR)/core/dma/sw/dma.h
112 intr_vect_defs.h: $(BASEDIR)/core/cpu/intr_vect/rtl/guinness/ivmask.config.r
114 intr_vect_defs_asm.h: $(BASEDIR)/core/cpu/intr_vect/rtl/guinness/ivmask.config.r
121 mmu_defs_asm.h: $(BASEDIR)/core/cpu/mmu/doc/mmu_regs.r
[all …]
/linux-4.4.14/drivers/misc/sgi-gru/
Dgrufile.c326 int core; in gru_chiplet_cpu_to_mmr() local
334 core = uv_cpu_core_number(cpu) + UV_MAX_INT_CORES * uv_cpu_socket_number(cpu); in gru_chiplet_cpu_to_mmr()
335 if (core >= GRU_NUM_TFM || uv_cpu_ht_number(cpu)) in gru_chiplet_cpu_to_mmr()
340 core * (UVH_GR0_TLB_INT1_CONFIG - UVH_GR0_TLB_INT0_CONFIG); in gru_chiplet_cpu_to_mmr()
343 core * (UVH_GR1_TLB_INT1_CONFIG - UVH_GR1_TLB_INT0_CONFIG); in gru_chiplet_cpu_to_mmr()
348 *corep = core; in gru_chiplet_cpu_to_mmr()
373 int ret, core; in gru_chiplet_setup_tlb_irq() local
375 mmr = gru_chiplet_cpu_to_mmr(chiplet, cpu, &core); in gru_chiplet_setup_tlb_irq()
403 int core, irq = IRQ_GRU + chiplet; in gru_chiplet_teardown_tlb_irq() local
408 mmr = gru_chiplet_cpu_to_mmr(chiplet, cpu, &core); in gru_chiplet_teardown_tlb_irq()
[all …]
/linux-4.4.14/arch/ia64/
DMakefile48 core-y += arch/ia64/kernel/ arch/ia64/mm/
49 core-$(CONFIG_IA64_DIG) += arch/ia64/dig/
50 core-$(CONFIG_IA64_DIG_VTD) += arch/ia64/dig/
51 core-$(CONFIG_IA64_GENERIC) += arch/ia64/dig/
52 core-$(CONFIG_IA64_HP_ZX1) += arch/ia64/dig/
53 core-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += arch/ia64/dig/
54 core-$(CONFIG_IA64_SGI_SN2) += arch/ia64/sn/
55 core-$(CONFIG_IA64_SGI_UV) += arch/ia64/uv/
/linux-4.4.14/drivers/media/usb/dvb-usb/
Ddvb-usb-remote.c252 if (dvb_usb_disable_rc_polling || d->props.rc.core.bulk_mode) in dvb_usb_read_remote_control()
255 err = d->props.rc.core.rc_query(d); in dvb_usb_read_remote_control()
260 msecs_to_jiffies(d->props.rc.core.rc_interval)); in dvb_usb_read_remote_control()
272 dev->driver_name = d->props.rc.core.module_name; in rc_core_dvb_usb_remote_init()
273 dev->map_name = d->props.rc.core.rc_codes; in rc_core_dvb_usb_remote_init()
274 dev->change_protocol = d->props.rc.core.change_protocol; in rc_core_dvb_usb_remote_init()
275 dev->allowed_protocols = d->props.rc.core.allowed_protos; in rc_core_dvb_usb_remote_init()
276 dev->driver_type = d->props.rc.core.driver_type; in rc_core_dvb_usb_remote_init()
292 if (!d->props.rc.core.rc_query || d->props.rc.core.bulk_mode) in rc_core_dvb_usb_remote_init()
298 rc_interval = d->props.rc.core.rc_interval; in rc_core_dvb_usb_remote_init()
[all …]
/linux-4.4.14/arch/x86/kernel/
Dlivepatch.c44 unsigned long core = (unsigned long)mod->module_core; in klp_write_module_reloc() local
68 if (loc < core || loc >= core + core_size) in klp_write_module_reloc()
75 if (loc < core + mod->core_ro_size) in klp_write_module_reloc()
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/
DCPUfreq.txt8 the ability to change the core, memory and peripheral operating
9 frequencies. The core control is exported via the CPUFreq driver
11 rate the core is running at.
18 ARM core is available as a separate driver.
24 The code core manages the CPU specific drivers, any data that they
30 The core registers with drivers/cpufreq at init time if all the data
53 The core code exports extra information via sysfs in the directory
61 information with the core driver to provide information about what the
/linux-4.4.14/arch/arm64/
DMakefile68 core-y += arch/arm64/kernel/ arch/arm64/mm/
69 core-$(CONFIG_NET) += arch/arm64/net/
70 core-$(CONFIG_KVM) += arch/arm64/kvm/
71 core-$(CONFIG_XEN) += arch/arm64/xen/
72 core-$(CONFIG_CRYPTO) += arch/arm64/crypto/
74 core-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
/linux-4.4.14/drivers/edac/
Docteon_edac-pc.c45 unsigned int core = cvmx_get_core_num(); in co_cache_error_event() local
51 dcache_err = cache_err_dcache[core]; in co_cache_error_event()
52 cache_err_dcache[core] = 0; in co_cache_error_event()
60 (unsigned long long)icache_err, core, cpu, in co_cache_error_event()
68 (unsigned long long)dcache_err, core, cpu, in co_cache_error_event()
/linux-4.4.14/drivers/net/wireless/cw1200/
Dcw1200_sdio.c49 struct cw1200_common *core; member
97 if (self->core) in cw1200_sdio_irq_handler()
98 cw1200_irq_handler(self->core); in cw1200_sdio_irq_handler()
110 if (self->core) { in cw1200_gpio_irq()
112 cw1200_irq_handler(self->core); in cw1200_gpio_irq()
308 self, &func->dev, &self->core, in cw1200_sdio_probe()
334 if (self->core) { in cw1200_sdio_disconnect()
335 cw1200_core_release(self->core); in cw1200_sdio_disconnect()
336 self->core = NULL; in cw1200_sdio_disconnect()
353 if (!cw1200_can_suspend(self->core)) in cw1200_sdio_suspend()
Dcw1200_spi.c40 struct cw1200_common *core; member
239 if (self->core) { in cw1200_spi_irq_handler()
241 cw1200_irq_handler(self->core); in cw1200_spi_irq_handler()
418 self, &func->dev, &self->core, in cw1200_spi_probe()
439 if (self->core) { in cw1200_spi_disconnect()
440 cw1200_core_release(self->core); in cw1200_spi_disconnect()
441 self->core = NULL; in cw1200_spi_disconnect()
454 if (!cw1200_can_suspend(self->core)) in cw1200_spi_suspend()
/linux-4.4.14/Documentation/hid/
Dhid-transport.txt13 devices and register them with the HID bus. HID core then loads generic device
15 transport and device setup/management. HID core is responsible of
57 They allocate HID device objects and register them with HID core. Transport
58 drivers are not required to register themselves with HID core. HID core is never
63 device. Once a device is registered with HID core, the callbacks provided via
64 this struct are used by HID core to communicate with the device.
67 HID core will operate a device as long as it is registered regardless of any
69 must unregister the device from HID core and HID core will stop using the
87 HID core requires transport drivers to follow a given design. A Transport
110 Communication between devices and HID core is mostly done via HID reports. A
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Dgr-udc.txt3 The GRUSBDC USB Device Controller core is available in the GRLIB VHDL
4 IP core library.
6 Note: In the ordinary environment for the core, a Leon SPARC system,
24 each OUT endpoint of the core. Fewer entries overrides the default sizes
30 each IN endpoint of the core. Fewer entries overrides the default sizes
33 For further information look in the documentation for the GLIB IP core library:
Ddwc3.txt25 - snps,req_p1p2p3_quirk: when set, the core will always request for
27 - snps,del_p1p2p3_quirk: when set core will delay P1/P2/P3 until a certain
29 - snps,del_phy_power_chg_quirk: when set core will delay PHY power change
31 - snps,lfps_filter_quirk: when set core will filter LFPS reception.
32 - snps,rx_detect_poll_quirk: when set core will disable a 400us delay to start
34 - snps,tx_de_emphasis_quirk: when set core will set Tx de-emphasis value.
37 - snps,dis_u3_susphy_quirk: when set core will disable USB3 suspend phy.
38 - snps,dis_u2_susphy_quirk: when set core will disable USB2 suspend phy.
Dqcom,dwc3.txt8 "core" Master/Core clock, have to be >= 125 MHz for SS
13 "sleep" Sleep clock, used when USB3 core goes into low
17 A child node must exist to represent the core DWC3 IP block. The name of
50 clock-names = "core";
/linux-4.4.14/Documentation/devicetree/bindings/arm/msm/
Dqcom,idle-state.txt14 When the WFI instruction is executed the ARM core would gate its internal
17 interrupt to trigger the core back in to active. This triggers the cache
26 Retention: Retention is a low power state where the core is clock gated and
27 the memory and the registers associated with the core are retained. The
35 to indicate a core entering a power down state without consulting any other
36 cpu or the system resources. This helps save power only on that core. The SPM
38 core, wait for the interrupt, restore power to the core, and ensure the
39 system state including cache hierarchy is ready before allowing core to
40 resume. Applying power and resetting the core causes the core to warmboot
45 be flushed in s/w, before powering down the core.
/linux-4.4.14/drivers/net/wireless/ti/wlcore/
Dsdio.c55 struct platform_device *core; member
323 glue->core = platform_device_alloc(chip_family, PLATFORM_DEVID_AUTO); in wl1271_probe()
324 if (!glue->core) { in wl1271_probe()
330 glue->core->dev.parent = &func->dev; in wl1271_probe()
339 ret = platform_device_add_resources(glue->core, res, ARRAY_SIZE(res)); in wl1271_probe()
345 ret = platform_device_add_data(glue->core, &pdev_data, in wl1271_probe()
352 ret = platform_device_add(glue->core); in wl1271_probe()
360 platform_device_put(glue->core); in wl1271_probe()
376 platform_device_unregister(glue->core); in wl1271_remove()
387 struct wl1271 *wl = platform_get_drvdata(glue->core); in wl1271_suspend()
Dspi.c83 struct platform_device *core; member
362 glue->core = platform_device_alloc("wl12xx", PLATFORM_DEVID_AUTO); in wl1271_probe()
363 if (!glue->core) { in wl1271_probe()
368 glue->core->dev.parent = &spi->dev; in wl1271_probe()
376 ret = platform_device_add_resources(glue->core, res, ARRAY_SIZE(res)); in wl1271_probe()
382 ret = platform_device_add_data(glue->core, &pdev_data, in wl1271_probe()
389 ret = platform_device_add(glue->core); in wl1271_probe()
398 platform_device_put(glue->core); in wl1271_probe()
406 platform_device_unregister(glue->core); in wl1271_remove()
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dps2keyb-mouse-apbps2.txt3 The APBPS2 PS/2 core is available in the GRLIB VHDL IP core library.
5 Note: In the ordinary environment for the APBPS2 core, a LEON SPARC system,
15 For further information look in the documentation for the GLIB IP core library:
/linux-4.4.14/Documentation/devicetree/bindings/arm/
Dtopology.txt13 - core
19 The bottom hierarchy level sits at core or thread level depending on whether
25 in the system and map to the hierarchy level "core" above.
73 - core node
78 The nodes describing the CPU topology (cluster/core/thread) can only
79 be defined within the cpu-map node and every core/thread in the system
89 cluster/core/thread) (where N = {0, 1, ...} is the node number; nodes which
97 3 - cluster/core/thread node bindings
115 - one or more core nodes
119 - core node
[all …]
Darm-boards3 ARM's oldest Linux-supported platform with connectors for different core
14 - core-module: the root node to the Integrator platforms must have
15 a core-module with regs and the compatible string
16 "arm,core-module-integrator"
21 Required properties for the core module:
22 - regs: the location and size of the core module registers, one
49 core-module@10000000 {
50 compatible = "arm,core-module-integrator";
72 core tiles. The hardware configuration of the Versatile boards is
92 - core-module: the root node to the Versatile platforms must have
[all …]
/linux-4.4.14/scripts/coccinelle/api/
Dplatform_no_drv_owner.cocci126 msg = "No need to set .owner here. The core will do it."
133 msg = "No need to set .owner here. The core will do it."
140 msg = "No need to set .owner here. The core will do it."
147 msg = "No need to set .owner here. The core will do it."
156 msg = "No need to set .owner here. The core will do it."
163 msg = "No need to set .owner here. The core will do it."
170 msg = "No need to set .owner here. The core will do it."
177 msg = "No need to set .owner here. The core will do it."
/linux-4.4.14/arch/arm64/boot/dts/qcom/
Dmsm8916.dtsi111 clock-names = "core", "iface";
120 clock-names = "core", "iface";
141 clock-names = "core", "iface";
158 clock-names = "core", "iface";
175 clock-names = "core", "iface";
192 clock-names = "core", "iface";
209 clock-names = "core", "iface";
226 clock-names = "core", "iface";
243 clock-names = "iface", "core";
258 clock-names = "iface", "core";
[all …]
/linux-4.4.14/drivers/video/fbdev/
Dps3fb.c980 dev_err(&dev->core, "%s: Not enough video memory\n", __func__); in ps3fb_probe()
986 dev_err(&dev->core, "%s: ps3_open_hv_device failed\n", in ps3fb_probe()
993 dev_dbg(&dev->core, "ps3fb_mode: %d\n", ps3fb_mode); in ps3fb_probe()
1002 dev_err(&dev->core, "%s: lv1_gpu_display_sync failed: %d\n", in ps3fb_probe()
1011 dev_err(&dev->core, "%s: lv1_gpu_display_sync failed: %d\n", in ps3fb_probe()
1020 dev_info(&dev->core, "Limiting ps3fb mem size to %lu bytes\n", in ps3fb_probe()
1029 dev_err(&dev->core, "%s: lv1_gpu_memory_allocate failed: %d\n", in ps3fb_probe()
1034 dev_dbg(&dev->core, "ddr:lpar:0x%llx\n", ddr_lpar); in ps3fb_probe()
1041 dev_err(&dev->core, in ps3fb_probe()
1051 dev_err(&dev->core, "%s: ioremap failed\n", __func__); in ps3fb_probe()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/mmc/
Dsdhci-fujitsu.txt3 This file documents differences between the core properties in mmc.txt
13 "core" - core clock for sdhci controller
29 clock-names = "iface", "core";
Dsdhci-msm.txt3 This file documents differences between the core properties in mmc.txt
18 "core" - SDC MMC clock (MCLK) (required)
37 clock-names = "core", "iface";
54 clock-names = "core", "iface";
Dsdhci-pxa.txt3 This file documents differences between the core properties in mmc.txt
22 "io" for I/O clock and "core" for optional core clock.
35 clock-names = "io", "core";
/linux-4.4.14/sound/pci/vx222/
Dvx222.c228 vx->core.ibl.size = ibl[dev]; in snd_vx222_probe()
231 card->shortname, vx->port[0], vx->port[1], vx->core.irq); in snd_vx222_probe()
233 card->shortname, vx->port[0], vx->port[1], vx->core.irq); in snd_vx222_probe()
236 vx->core.dev = &pci->dev; in snd_vx222_probe()
239 if ((err = snd_vx_setup_firmware(&vx->core)) < 0) { in snd_vx222_probe()
265 return snd_vx_suspend(&vx->core); in snd_vx222_suspend()
273 return snd_vx_resume(&vx->core); in snd_vx222_resume()
/linux-4.4.14/Documentation/devicetree/bindings/arm/omap/
Dctrl.txt22 "ti,omap4-scm-core"
23 "ti,omap4-scm-padconf-core"
24 "ti,omap5-scm-core"
25 "ti,omap5-scm-padconf-core"
26 "ti,dra7-scm-core"
Dprcm.txt22 "ti,omap5-cm-core-aon"
24 "ti,omap5-cm-core"
26 "ti,dra7-cm-core-aon"
27 "ti,dra7-cm-core"
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dgpio-grgpio.txt3 The GRGPIO GPIO core is available in the GRLIB VHDL IP core library.
5 Note: In the ordinary environment for the GRGPIO core, a Leon SPARC system,
25 For further information look in the documentation for the GLIB IP core library:
/linux-4.4.14/arch/arm64/crypto/
DMakefile12 sha1-ce-y := sha1-ce-glue.o sha1-ce-core.o
15 sha2-ce-y := sha2-ce-glue.o sha2-ce-core.o
18 ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o
24 aes-ce-ccm-y := aes-ce-ccm-glue.o aes-ce-ccm-core.o
/linux-4.4.14/arch/arc/
DMakefile94 core-y += arch/arc/
97 core-y += arch/arc/boot/dts/
99 core-$(CONFIG_ARC_PLAT_SIM) += arch/arc/plat-sim/
100 core-$(CONFIG_ARC_PLAT_TB10X) += arch/arc/plat-tb10x/
101 core-$(CONFIG_ARC_PLAT_AXS10X) += arch/arc/plat-axs10x/
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/
Dfalcon.c102 nvkm_memory_del(&falcon->core); in nvkm_falcon_fini()
244 if (!falcon->data.data && !falcon->core) { in nvkm_falcon_init()
247 &falcon->core); in nvkm_falcon_init()
253 nvkm_kmap(falcon->core); in nvkm_falcon_init()
255 nvkm_wo32(falcon->core, i, falcon->code.data[i / 4]); in nvkm_falcon_init()
256 nvkm_done(falcon->core); in nvkm_falcon_init()
260 if (falcon->core) { in nvkm_falcon_init()
261 u64 addr = nvkm_memory_addr(falcon->core); in nvkm_falcon_init()
294 for (i = 0; !falcon->core && i < falcon->data.size / 4; i++) in nvkm_falcon_init()
300 for (i = 0; !falcon->core && i < falcon->data.size / 4; i++) in nvkm_falcon_init()
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/
Ddpll.txt19 "ti,omap3-dpll-core-clock",
24 "ti,omap4-dpll-core-clock",
32 "ti,am3-dpll-core-clock",
34 "ti,omap2-dpll-core-clock",
58 compatible = "ti,omap4-dpll-core-clock";
75 compatible = "ti,am3-dpll-core-clock";
82 compatible = "ti,omap2-dpll-core-clock";
/linux-4.4.14/drivers/misc/ti-st/
DKconfig7 tristate "Shared transport core driver"
11 This enables the shared transport core driver for TI
13 to register themselves with core and send data, the responses
/linux-4.4.14/drivers/media/v4l2-core/
DMakefile5 tuner-objs := tuner-core.o
30 obj-$(CONFIG_VIDEOBUF_GEN) += videobuf-core.o
36 obj-$(CONFIG_VIDEOBUF2_CORE) += videobuf2-core.o videobuf2-v4l2.o
43 ccflags-y += -I$(srctree)/drivers/media/dvb-core
/linux-4.4.14/drivers/cpuidle/
Dcpuidle-cps.c40 if (!cpu_data[dev->cpu].core && (index > STATE_NC_WAIT)) in cps_nc_enter()
121 int err, cpu, core, i; in cps_cpuidle_init() local
163 core = cpu_data[cpu].core; in cps_cpuidle_init()
/linux-4.4.14/drivers/ssb/
DKconfig124 bool "SSB PCI core driver"
128 Broadcom PCI core.
133 bool "Hostmode support for SSB PCI core"
139 bool "SSB Broadcom MIPS core driver"
145 Broadcom MIPS core.
154 # Assumption: We are on embedded, if we compile the MIPS core.
161 bool "SSB Broadcom EXTIF core driver"
165 Broadcom EXTIF core.
/linux-4.4.14/arch/powerpc/include/asm/
Dps3.h377 struct device core; member
391 struct device_driver core; member
406 return container_of(_drv, struct ps3_system_bus_driver, core); in ps3_drv_to_system_bus_drv()
411 return container_of(_dev, struct ps3_system_bus_device, core); in ps3_dev_to_system_bus_dev()
417 BUG_ON(!_dev->core.driver); in ps3_system_bus_dev_to_system_bus_drv()
418 return ps3_drv_to_system_bus_drv(_dev->core.driver); in ps3_system_bus_dev_to_system_bus_drv()
430 dev_set_drvdata(&dev->core, data); in ps3_system_bus_set_drvdata()
435 return dev_get_drvdata(&dev->core); in ps3_system_bus_get_drvdata()
Dcputhreads.h71 int cpu_first_thread_of_core(int core);
74 static inline int cpu_first_thread_of_core(int core) { return core; } in cpu_first_thread_of_core() argument
/linux-4.4.14/drivers/input/
DMakefile7 obj-$(CONFIG_INPUT) += input-core.o
8 input-core-y := input.o input-compat.o input-mt.o ff-core.o
/linux-4.4.14/Documentation/devicetree/bindings/c6x/
Dtimer64.txt17 - ti,core-mask: on multi-core SoCs, bitmask of cores allowed to use this timer.
22 ti,core-mask = < 0x01 >;
/linux-4.4.14/arch/arm/
DMakefile277 core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/
278 core-$(CONFIG_FPE_FASTFPE) += $(FASTFPE_OBJ)
279 core-$(CONFIG_VFP) += arch/arm/vfp/
280 core-$(CONFIG_XEN) += arch/arm/xen/
281 core-$(CONFIG_KVM_ARM_HOST) += arch/arm/kvm/
282 core-$(CONFIG_VDSO) += arch/arm/vdso/
285 core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/
286 core-y += arch/arm/probes/
287 core-y += arch/arm/net/
288 core-y += arch/arm/crypto/
[all …]
/linux-4.4.14/arch/mips/include/asm/mach-cavium-octeon/
Dkernel-entry-init.h25 # a2 = 1 if init core, zero otherwise
63 4: # core-16057 work around
66 5: # No core-16057 work around
89 # Get my core id
102 # This is the variable where the next core to boot os stored
105 # Get the core id of the next to be booted
/linux-4.4.14/Documentation/devicetree/bindings/spi/
Dqcom,spi-qup.txt3 The QUP core is an AHB slave that provides a common data path (an output FIFO
4 and an input FIFO) for serial peripheral interface (SPI) mini-core.
18 - clocks: Should contain the core clock and the AHB clock.
19 - clock-names: Should be "core" for the core clock and "iface" for the
57 clock-names = "core", "iface";
/linux-4.4.14/Documentation/devicetree/bindings/serial/
Dqcom,msm-uart.txt12 - clocks: Should contain the core clock.
13 - clock-names: Should be "core".
24 clock-names = "core";
Dqcom,msm-uartdm.txt22 - clocks: Should contain the core clock and the AHB clock.
23 - clock-names: Should be "core" for the core clock and "iface" for the
50 clock-names = "core", "iface";
63 clock-names = "core", "iface";
/linux-4.4.14/arch/mips/loongson64/loongson-3/
Dsmp.c304 cpu_data[cpu].core = in loongson3_init_secondary()
371 cpu_data[0].core = cpu_logical_map(0) % loongson_sysconf.cores_per_package; in loongson3_smp_setup()
446 register long cpuid, core, node, count; in loongson3a_play_dead() local
498 : [core] "=&r" (core), [node] "=&r" (node), in loongson3a_play_dead()
508 register long cpuid, core, node, count; in loongson3b_play_dead() local
562 : [core] "=&r" (core), [node] "=&r" (node), in loongson3b_play_dead()
594 uint64_t core_id = cpu_data[cpu].core; in loongson3_disable_clock()
607 uint64_t core_id = cpu_data[cpu].core; in loongson3_enable_clock()
/linux-4.4.14/arch/s390/include/asm/
Dsclp.h46 struct sclp_core_entry core[SCLP_MAX_CORES]; member
70 int sclp_core_configure(u8 core);
71 int sclp_core_deconfigure(u8 core);
/linux-4.4.14/drivers/crypto/qce/
Dcore.c196 qce->core = devm_clk_get(qce->dev, "core"); in qce_crypto_probe()
197 if (IS_ERR(qce->core)) in qce_crypto_probe()
198 return PTR_ERR(qce->core); in qce_crypto_probe()
208 ret = clk_prepare_enable(qce->core); in qce_crypto_probe()
249 clk_disable_unprepare(qce->core); in qce_crypto_probe()
262 clk_disable_unprepare(qce->core); in qce_crypto_remove()
/linux-4.4.14/Documentation/devicetree/bindings/metag/
Dmeta.txt21 - "core": The Meta core clock from which the Meta timers are derived.
29 clock-names = "core";
/linux-4.4.14/drivers/base/regmap/
Dregmap-spi.c20 struct regmap_async core; member
29 regmap_async_complete_cb(&async->core, async->m.status); in regmap_spi_complete()
64 core); in regmap_spi_async_write()
92 return &async_spi->core; in regmap_spi_async_alloc()
/linux-4.4.14/arch/cris/
DMakefile44 core-$(CONFIG_OF) += arch/cris/boot/dts/
64 core-y += arch/cris/kernel/ arch/cris/mm/
65 core-y += arch/cris/$(SARCH)/kernel/ arch/cris/$(SARCH)/mm/
67 core-y += arch/cris/$(SARCH)/$(MACH)/
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dzte,zx-spdif.txt5 - reg : Must contain SPDIF core's registers location and length
9 the core. The core expects one dma channel for transmit.
Ddesignware-i2s.txt5 - reg : Must contain the I2S core's registers location and length
11 the core. The core expects one or two dma channels: one for transmit and
/linux-4.4.14/Documentation/devicetree/bindings/dma/
Dqcom_adm.txt9 - clocks: Should contain the core clock and interface clock.
10 - clock-names: Must contain "core" for the core clock and "iface" for the
28 clock-names = "core", "iface";
/linux-4.4.14/arch/arm/boot/dts/
Dqcom-ipq8064.dtsi168 clock-names = "core", "iface";
178 clock-names = "core", "iface";
206 clock-names = "core", "iface";
216 clock-names = "core", "iface";
243 clock-names = "core", "iface";
253 clock-names = "core", "iface";
266 clock-names = "core", "iface";
296 clock-names = "slave_face", "iface", "core",
Dintegrator.dtsi2 * SoC core Device Tree for the ARM Integrator platforms
8 core-module@10000000 {
9 compatible = "arm,core-module-integrator", "syscon", "simple-mfd";
12 /* Use core module LED to indicate CPU load */
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
Dmcp77.c207 const int core = cstate->domain[nv_clk_src_core]; in mcp77_clk_calc() local
215 if (core < nvkm_clk_read(&clk->base, nv_clk_src_hclkm4)) in mcp77_clk_calc()
216 out = calc_P(nvkm_clk_read(&clk->base, nv_clk_src_hclkm4), core, &divs); in mcp77_clk_calc()
219 clock = calc_pll(clk, 0x4028, (core << 1), &N, &M, &P1); in mcp77_clk_calc()
221 if (abs(core - out) <= abs(core - (clock >> 1))) { in mcp77_clk_calc()
247 out = calc_P((core << 1), shader, &divs); in mcp77_clk_calc()
262 out = calc_P(core, vdec, &divs); in mcp77_clk_calc()
/linux-4.4.14/sound/hda/ext/
DMakefile1 snd-hda-ext-core-objs := hdac_ext_bus.o hdac_ext_controller.o hdac_ext_stream.o
3 obj-$(CONFIG_SND_HDA_EXT_CORE) += snd-hda-ext-core.o
/linux-4.4.14/arch/arm64/kernel/
Dtopology.c48 static int __init parse_core(struct device_node *core, int cluster_id, in parse_core() argument
59 t = of_get_child_by_name(core, name); in parse_core()
78 cpu = get_cpu_for_node(core); in parse_core()
82 core->full_name); in parse_core()
89 pr_err("%s: Can't get CPU for leaf core\n", core->full_name); in parse_core()
/linux-4.4.14/drivers/media/platform/marvell-ccic/
DMakefile2 cafe_ccic-y := cafe-driver.o mcam-core.o
5 mmp_camera-y := mmp-driver.o mcam-core.o
/linux-4.4.14/drivers/media/pci/ddbridge/
DMakefile5 ddbridge-objs := ddbridge-core.o
9 ccflags-y += -Idrivers/media/dvb-core/
/linux-4.4.14/net/core/
Dsysctl_net_core.c411 .data = &init_net.core.sysctl_somaxconn,
424 net->core.sysctl_somaxconn = SOMAXCONN; in sysctl_core_net_init()
432 tbl[0].data = &net->core.sysctl_somaxconn; in sysctl_core_net_init()
440 net->core.sysctl_hdr = register_net_sysctl(net, "net/core", tbl); in sysctl_core_net_init()
441 if (net->core.sysctl_hdr == NULL) in sysctl_core_net_init()
457 tbl = net->core.sysctl_hdr->ctl_table_arg; in sysctl_core_net_exit()
458 unregister_net_sysctl_table(net->core.sysctl_hdr); in sysctl_core_net_exit()
/linux-4.4.14/Documentation/devicetree/bindings/i2c/
Dqcom,i2c-qup.txt14 * "core" for the core clock
34 clock-names = "core", "iface";
/linux-4.4.14/arch/metag/
DMakefile45 core-y += arch/metag/boot/dts/
46 core-y += arch/metag/kernel/
47 core-y += arch/metag/mm/
/linux-4.4.14/arch/mips/cavium-octeon/executive/
Dcvmx-l2c.c49 int cvmx_l2c_get_core_way_partition(uint32_t core) in cvmx_l2c_get_core_way_partition() argument
54 if (core >= cvmx_octeon_num_cores()) in cvmx_l2c_get_core_way_partition()
58 return cvmx_read_csr(CVMX_L2C_WPAR_PPX(core)) & 0xffff; in cvmx_l2c_get_core_way_partition()
64 field = (core & 0x3) * 8; in cvmx_l2c_get_core_way_partition()
71 switch (core & 0xC) { in cvmx_l2c_get_core_way_partition()
84 int cvmx_l2c_set_core_way_partition(uint32_t core, uint32_t mask) in cvmx_l2c_set_core_way_partition() argument
98 if (core >= cvmx_octeon_num_cores()) in cvmx_l2c_set_core_way_partition()
102 cvmx_write_csr(CVMX_L2C_WPAR_PPX(core), mask); in cvmx_l2c_set_core_way_partition()
110 field = (core & 0x3) * 8; in cvmx_l2c_set_core_way_partition()
117 switch (core & 0xC) { in cvmx_l2c_set_core_way_partition()
[all …]
/linux-4.4.14/drivers/media/dvb-core/
DMakefile7 dvb-core-objs := dvbdev.o dmxdev.o dvb_demux.o dvb_filter.o \
11 obj-$(CONFIG_DVB_CORE) += dvb-core.o
/linux-4.4.14/arch/blackfin/
DMakefile111 core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ arch/$(ARCH)/mach-common/
115 core-y += arch/$(ARCH)/mach-$(MACHINE)/
116 core-y += arch/$(ARCH)/mach-$(MACHINE)/boards/
120 core-y += arch/$(ARCH)/kernel/cplb-mpu/
122 core-y += arch/$(ARCH)/kernel/cplb-nompu/
/linux-4.4.14/Documentation/scsi/
Dscsi.txt16 The scsi-core (also known as the "mid level") contains the core of scsi
18 The scsi core support can be a module (scsi_mod.o), or it can be built into
19 the kernel. If the core is a module, it must be the first scsi module
26 once the scsi core is present in the kernel (either compiled in or loaded
/linux-4.4.14/Documentation/arm/Samsung/
DGPIO.txt8 specific calls provided alongside the drivers/gpio core.
16 with the core samsung implementation described in this document.
33 registering the necessary information for the core gpio configuration

12345678