Home
last modified time | relevance | path

Searched refs:picvue (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/arch/mips/lasat/
Dpicvue.c22 struct pvc_defs *picvue; variable
26 *picvue->reg = val; in pvc_reg_write()
31 u32 tmp = *picvue->reg; in pvc_reg_read()
37 data |= picvue->e; in pvc_write_byte()
39 data &= ~picvue->data_mask; in pvc_write_byte()
40 data |= byte << picvue->data_shift; in pvc_write_byte()
43 pvc_reg_write(data & ~picvue->e); in pvc_write_byte()
51 data |= picvue->e; in pvc_read_byte()
54 byte = (pvc_reg_read() & picvue->data_mask) >> picvue->data_shift; in pvc_read_byte()
55 data &= ~picvue->e; in pvc_read_byte()
[all …]
DMakefile10 obj-$(CONFIG_PICVUE) += picvue.o
Dpicvue.h16 extern struct pvc_defs *picvue;
Dsetup.c134 picvue = &pvc_defs[lasat_type]; in plat_mem_setup()