Home
last modified time | relevance | path

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

/arch/mips/lasat/
Dpicvue.c23 struct pvc_defs *picvue; variable
27 *picvue->reg = val; in pvc_reg_write()
32 u32 tmp = *picvue->reg; in pvc_reg_read()
38 data |= picvue->e; in pvc_write_byte()
40 data &= ~picvue->data_mask; in pvc_write_byte()
41 data |= byte << picvue->data_shift; in pvc_write_byte()
44 pvc_reg_write(data & ~picvue->e); in pvc_write_byte()
52 data |= picvue->e; in pvc_read_byte()
55 byte = (pvc_reg_read() & picvue->data_mask) >> picvue->data_shift; in pvc_read_byte()
56 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()