Home
last modified time | relevance | path

Searched refs:mpu (Results 1 – 25 of 53) sorted by relevance

123

/linux/sound/drivers/mpu401/
H A Dmpu401_uart.c31 static void snd_mpu401_uart_input_read(struct snd_mpu401 * mpu);
32 static void snd_mpu401_uart_output_write(struct snd_mpu401 * mpu);
38 #define snd_mpu401_input_avail(mpu) \ argument
39 (!(mpu->read(mpu, MPU401C(mpu)) & MPU401_RX_EMPTY))
40 #define snd_mpu401_output_ready(mpu) \ argument
41 (!(mpu->read(mpu, MPU401C(mpu)) & MPU401_TX_FULL))
44 static void mpu401_write_port(struct snd_mpu401 *mpu, unsigned char data, in mpu401_write_port() argument
50 static unsigned char mpu401_read_port(struct snd_mpu401 *mpu, in mpu401_read_port() argument
56 static void mpu401_write_mmio(struct snd_mpu401 *mpu, unsigned char data, in mpu401_write_mmio() argument
62 static unsigned char mpu401_read_mmio(struct snd_mpu401 *mpu, in mpu401_read_mmio() argument
[all …]
/linux/Documentation/devicetree/bindings/arm/omap/
H A Dmpu.txt8 - compatible : Should be "ti,omap3-mpu" for OMAP3
9 Should be "ti,omap4-mpu" for OMAP4
10 Should be "ti,omap5-mpu" for OMAP5
11 - ti,hwmods: "mpu"
27 mpu {
28 compatible = "ti,omap5-mpu";
29 ti,hwmods = "mpu"
34 mpu {
35 compatible = "ti,omap4-mpu";
36 ti,hwmods = "mpu";
[all …]
/linux/include/sound/
H A Dmpu401.h69 int (*open_input) (struct snd_mpu401 * mpu);
70 void (*close_input) (struct snd_mpu401 * mpu);
71 int (*open_output) (struct snd_mpu401 * mpu);
72 void (*close_output) (struct snd_mpu401 * mpu);
84 void (*write) (struct snd_mpu401 * mpu, unsigned char data, unsigned long addr);
85 unsigned char (*read) (struct snd_mpu401 *mpu, unsigned long addr);
90 #define MPU401C(mpu) (mpu)->cport argument
91 #define MPU401D(mpu) (mpu)->port argument
H A Dsnd_wavefront.h107 struct pnp_dev *mpu; member
/linux/drivers/macintosh/
H A Dwindfarm_ad7417_sensor.c31 const struct mpu_data *mpu; member
84 *value = (raw * (s32)pv->mpu->mdiode + in wf_ad7417_adc_convert()
85 ((s32)pv->mpu->bdiode << 12)) >> 2; in wf_ad7417_adc_convert()
235 const struct mpu_data *mpu; in wf_ad7417_probe() local
257 mpu = wf_get_mpu(cpu_nr); in wf_ad7417_probe()
258 if (!mpu) { in wf_ad7417_probe()
271 pv->mpu = mpu; in wf_ad7417_probe()
H A Dwindfarm_rm31.c296 const struct mpu_data *mpu = cpu_mpu_data[cpu]; in cpu_setup_pid() local
301 tmax = mpu->tmax << 16; in cpu_setup_pid()
302 ttarget = mpu->ttarget << 16; in cpu_setup_pid()
303 ptarget = ((s32)(mpu->pmaxh - mpu->padjmax)) << 16; in cpu_setup_pid()
318 hsize = min_t(int, mpu->tguardband, WF_PID_MAX_HISTORY); in cpu_setup_pid()
324 pid.gd = mpu->pid_gd; in cpu_setup_pid()
325 pid.gp = mpu->pid_gp; in cpu_setup_pid()
326 pid.gr = mpu->pid_gr; in cpu_setup_pid()
H A Dwindfarm_pm72.c395 const struct mpu_data *mpu = cpu_mpu_data[cpu]; in cpu_setup_pid() local
400 tmax = mpu->tmax << 16; in cpu_setup_pid()
401 ttarget = mpu->ttarget << 16; in cpu_setup_pid()
402 ptarget = ((s32)(mpu->pmaxh - mpu->padjmax)) << 16; in cpu_setup_pid()
417 hsize = min_t(int, mpu->tguardband, WF_PID_MAX_HISTORY); in cpu_setup_pid()
423 pid.gd = mpu->pid_gd; in cpu_setup_pid()
424 pid.gp = mpu->pid_gp; in cpu_setup_pid()
425 pid.gr = mpu->pid_gr; in cpu_setup_pid()
H A Dwindfarm_fcu_controls.c286 const struct mpu_data *mpu = wf_get_mpu(0); in wf_fcu_get_pump_minmax() local
291 if (mpu) { in wf_fcu_get_pump_minmax()
292 memcpy(&tmp, mpu->processor_part_num, 8); in wf_fcu_get_pump_minmax()
/linux/sound/pci/emu10k1/
H A Demu10k1x.c1140 static inline unsigned char mpu401_read(struct emu10k1x *emu, struct emu10k1x_midi *mpu, int idx) in mpu401_read() argument
1142 return (unsigned char)snd_emu10k1x_ptr_read(emu, mpu->port + idx, 0); in mpu401_read()
1145 static inline void mpu401_write(struct emu10k1x *emu, struct emu10k1x_midi *mpu, int data, int idx) in mpu401_write() argument
1147 snd_emu10k1x_ptr_write(emu, mpu->port + idx, 0, data); in mpu401_write()
1150 #define mpu401_write_data(emu, mpu, data) mpu401_write(emu, mpu, data, 0) argument
1151 #define mpu401_write_cmd(emu, mpu, data) mpu401_write(emu, mpu, data, 1) argument
1152 #define mpu401_read_data(emu, mpu) mpu401_read(emu, mpu, 0) argument
1153 #define mpu401_read_stat(emu, mpu) mpu401_read(emu, mpu, 1) argument
1155 #define mpu401_input_avail(emu,mpu) (!(mpu401_read_stat(emu,mpu) & 0x80)) argument
1156 #define mpu401_output_ready(emu,mpu) (!(mpu401_read_stat(emu,mpu) & 0x40)) argument
[all …]
/linux/Documentation/devicetree/bindings/power/
H A Dti-smartreflex.txt10 "ti,omap3-smartreflex-mpu-iva"
12 "ti,omap4-smartreflex-mpu"
43 compatible = "ti,omap4-smartreflex-mpu";
/linux/sound/pci/au88x0/
H A Dau88x0_mpu401.c34 struct snd_mpu401 *mpu; in snd_vortex_midi() local
90 mpu = rmidi->private_data; in snd_vortex_midi()
91 mpu->cport = (unsigned long)(vortex->mmio + VORTEX_MIDI_CMD); in snd_vortex_midi()
/linux/arch/arm64/boot/dts/ti/
H A Dk3-j7200-thermal.dtsi23 mpu_thermal: mpu-thermal {
29 mpu_crit: mpu-crit {
H A Dk3-j721e-thermal.dtsi23 mpu_thermal: mpu-thermal {
29 mpu_crit: mpu-crit {
/linux/Documentation/devicetree/bindings/
H A Dresource-names.txt33 reg-names = "mpu", "dat",
42 reg-names = "mpu", "dma";
/linux/sound/isa/wavefront/
H A Dwavefront.c114 acard->mpu = pnp_request_card_device(card, id->devs[2].id, NULL); in snd_wavefront_pnp()
115 if (acard->mpu == NULL) in snd_wavefront_pnp()
173 pdev = acard->mpu; in snd_wavefront_pnp()
276 snd_wavefront_mpu_id mpu) in snd_wavefront_new_midi() argument
294 if (mpu == internal_mpu) { in snd_wavefront_new_midi()
/linux/sound/isa/cs423x/
H A Dcs4236.c82 struct pnp_dev *mpu; member
284 acard->mpu = pnp_request_card_device(card, id->devs[2].id, NULL); in snd_card_cs423x_pnpc()
285 if (acard->mpu == NULL) in snd_card_cs423x_pnpc()
299 if (acard->mpu && mpu_port[dev] > 0) { in snd_card_cs423x_pnpc()
300 if (snd_cs423x_pnp_init_mpu(dev, acard->mpu) < 0) in snd_card_cs423x_pnpc()
/linux/arch/arm/mach-omap2/
H A Dcm2xxx.c270 void omap2xxx_cm_set_mod_dividers(u32 mpu, u32 dsp, u32 gfx, u32 core, u32 mdm) in omap2xxx_cm_set_mod_dividers() argument
274 omap2_cm_write_mod_reg(mpu, MPU_MOD, CM_CLKSEL); in omap2xxx_cm_set_mod_dividers()
H A Dcm2xxx.h53 extern void omap2xxx_cm_set_mod_dividers(u32 mpu, u32 dsp, u32 gfx, u32 core,
/linux/arch/arm/boot/dts/ti/omap/
H A Domap2.dtsi45 mpu {
46 compatible = "ti,omap2-mpu";
47 ti,hwmods = "mpu";
H A Domap5-l4-abe.dtsi111 reg-names = "mpu", "dma";
146 reg-names = "mpu", "dma";
181 reg-names = "mpu", "dma";
235 reg-names = "mpu", "dma";
278 reg-names = "mpu", "dma";
H A Domap2420.dtsi154 reg-names = "mpu";
168 reg-names = "mpu";
H A Domap443x.dtsi45 abb_mpu: regulator-abb-mpu {
H A Domap5.dtsi130 compatible = "ti,omap5-wugen-mpu", "ti,omap4-wugen-mpu";
182 mpu {
183 compatible = "ti,omap4-mpu";
654 abb_mpu: regulator-abb-mpu {
/linux/Documentation/devicetree/bindings/sound/
H A Domap-mcbsp.txt27 reg-names = "mpu", "sidetone";
/linux/sound/pci/
H A Dals300.c206 u8 general, mpu, dram; in snd_als300plus_interrupt() local
211 mpu = inb(chip->port+MPU_IRQ_STATUS); in snd_als300plus_interrupt()
215 if ((general == 0) && ((mpu & 0x80) == 0) && ((dram & 0x01) == 0)) in snd_als300plus_interrupt()

123