Lines Matching refs:me
34 cris_io_write_buffer (struct hw *me, const void *source,
37 SIM_DESC sd = hw_system (me);
60 attach_regs (struct hw *me, struct m32r_cache_hw *hw)
67 if (hw_find_property (me, "reg") == NULL)
68 hw_abort (me, "Missing \"reg\" property");
70 if (!hw_find_reg_array_property (me, "reg", 0, ®))
71 hw_abort (me, "\"reg\" property must contain three addr/size entries");
73 hw_unit_address_to_attach_address (hw_parent (me),
75 &attach_space, &attach_address, me);
76 hw_unit_size_to_attach_size (hw_parent (me), ®.size, &attach_size, me);
78 hw_attach_address (hw_parent (me),
79 0, attach_space, attach_address, attach_size, me);
83 m32r_cache_finish (struct hw *me)
87 hw = HW_ZALLOC (me, struct m32r_cache_hw);
88 set_hw_data (me, hw);
89 set_hw_io_write_buffer (me, cris_io_write_buffer);
91 attach_regs (me, hw);