1 /* The common simulator framework for GDB, the GNU Debugger.
3 Copyright 2002 Free Software Foundation, Inc.
5 Contributed by Andrew Cagney and Red Hat.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
30 core - root of the device tree
34 The core device, positioned at the root of the device tree appears
35 to its child devices as a normal device just like every other
38 Internally it is implemented using a core object. Requests to
39 attach (or detach) address spaces are passed to that core object.
40 Requests to transfer (DMA) data are reflected back down the device
41 tree using the core_map data transfer methods.
51 dv_core_attach_address_callback (struct hw
*me
,
55 address_word nr_bytes
,
58 HW_TRACE ((me
, "attach - level=%d, space=%d, addr=0x%lx, nr_bytes=%ld, client=%s",
59 level
, space
, (unsigned long) addr
, (unsigned long) nr_bytes
, hw_path (client
)));
60 /* NOTE: At preset the space is assumed to be zero. Perhaphs the
61 space should be mapped onto something for instance: space0 -
62 unified memory; space1 - IO memory; ... */
63 sim_core_attach (hw_system (me
),
66 access_read_write_exec
,
76 dv_core_dma_read_buffer_callback (struct hw
*me
,
82 return sim_core_read_buffer (hw_system (me
),
92 dv_core_dma_write_buffer_callback (struct hw
*me
,
97 int violate_read_only_section
)
99 return sim_core_write_buffer (hw_system (me
),
109 dv_core_finish (struct hw
*me
)
111 set_hw_attach_address (me
, dv_core_attach_address_callback
);
112 set_hw_dma_write_buffer (me
, dv_core_dma_write_buffer_callback
);
113 set_hw_dma_read_buffer (me
, dv_core_dma_read_buffer_callback
);
116 const struct hw_descriptor dv_core_descriptor
[] = {
117 { "core", dv_core_finish
, },