Home | History | Annotate | Download | only in cris

Lines Matching defs:me

32 cris_io_write_buffer (struct hw *me, const void *source,
37 SIM_CPU *cpu = hw_system_cpu (me);
57 attach_regs (struct hw *me, struct cris_900000xx_hw *hw)
64 if (hw_find_property (me, "reg") == NULL)
65 hw_abort (me, "Missing \"reg\" property");
67 if (!hw_find_reg_array_property (me, "reg", 0, &reg))
68 hw_abort (me, "\"reg\" property must contain three addr/size entries");
70 hw_unit_address_to_attach_address (hw_parent (me),
72 &attach_space, &attach_address, me);
73 hw_unit_size_to_attach_size (hw_parent (me), &reg.size, &attach_size, me);
75 hw_attach_address (hw_parent (me),
76 0, attach_space, attach_address, attach_size, me);
80 cris_900000xx_finish (struct hw *me)
84 hw = HW_ZALLOC (me, struct cris_900000xx_hw);
85 set_hw_data (me, hw);
86 set_hw_io_write_buffer (me, cris_io_write_buffer);
88 attach_regs (me, hw);