[9a1b20c] | 1 | /*
|
---|
| 2 | * Copyright (c) 2008 Jiri Svoboda
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libc
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[64d2b10] | 33 | */
|
---|
[9a1b20c] | 34 |
|
---|
| 35 | #include <udebug.h>
|
---|
[8d2dd7f2] | 36 | #include <stddef.h>
|
---|
| 37 | #include <stdint.h>
|
---|
[c0699467] | 38 | #include <abi/ipc/methods.h>
|
---|
[9a1b20c] | 39 | #include <async.h>
|
---|
| 40 |
|
---|
[b7fd2a0] | 41 | errno_t udebug_begin(async_sess_t *sess)
|
---|
[9a1b20c] | 42 | {
|
---|
[79ae36dd] | 43 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[0800b26] | 44 | errno_t rc = async_req_1_0(exch, IPC_M_DEBUG, UDEBUG_M_BEGIN);
|
---|
| 45 | async_exchange_end(exch);
|
---|
| 46 |
|
---|
| 47 | return rc;
|
---|
[9a1b20c] | 48 | }
|
---|
| 49 |
|
---|
[b7fd2a0] | 50 | errno_t udebug_end(async_sess_t *sess)
|
---|
[9a1b20c] | 51 | {
|
---|
[79ae36dd] | 52 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[0800b26] | 53 | errno_t rc = async_req_1_0(exch, IPC_M_DEBUG, UDEBUG_M_END);
|
---|
| 54 | async_exchange_end(exch);
|
---|
| 55 |
|
---|
| 56 | return rc;
|
---|
[9a1b20c] | 57 | }
|
---|
| 58 |
|
---|
[b7fd2a0] | 59 | errno_t udebug_set_evmask(async_sess_t *sess, udebug_evmask_t mask)
|
---|
[9a1b20c] | 60 | {
|
---|
[79ae36dd] | 61 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[0800b26] | 62 | errno_t rc = async_req_2_0(exch, IPC_M_DEBUG, UDEBUG_M_SET_EVMASK, mask);
|
---|
| 63 | async_exchange_end(exch);
|
---|
| 64 |
|
---|
| 65 | return rc;
|
---|
[9a1b20c] | 66 | }
|
---|
| 67 |
|
---|
[b7fd2a0] | 68 | errno_t udebug_thread_read(async_sess_t *sess, void *buffer, size_t n,
|
---|
[79ae36dd] | 69 | size_t *copied, size_t *needed)
|
---|
[9a1b20c] | 70 | {
|
---|
[96b02eb9] | 71 | sysarg_t a_copied, a_needed;
|
---|
[a35b458] | 72 |
|
---|
[79ae36dd] | 73 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[b7fd2a0] | 74 | errno_t rc = async_req_3_3(exch, IPC_M_DEBUG, UDEBUG_M_THREAD_READ,
|
---|
[79ae36dd] | 75 | (sysarg_t) buffer, n, NULL, &a_copied, &a_needed);
|
---|
[0800b26] | 76 | async_exchange_end(exch);
|
---|
[a35b458] | 77 |
|
---|
[79ae36dd] | 78 | *copied = (size_t) a_copied;
|
---|
| 79 | *needed = (size_t) a_needed;
|
---|
[a35b458] | 80 |
|
---|
[2e3355a] | 81 | return rc;
|
---|
[9a1b20c] | 82 | }
|
---|
| 83 |
|
---|
[b7fd2a0] | 84 | errno_t udebug_name_read(async_sess_t *sess, void *buffer, size_t n,
|
---|
[79ae36dd] | 85 | size_t *copied, size_t *needed)
|
---|
[3698e44] | 86 | {
|
---|
[96b02eb9] | 87 | sysarg_t a_copied, a_needed;
|
---|
[a35b458] | 88 |
|
---|
[79ae36dd] | 89 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[b7fd2a0] | 90 | errno_t rc = async_req_3_3(exch, IPC_M_DEBUG, UDEBUG_M_NAME_READ,
|
---|
[79ae36dd] | 91 | (sysarg_t) buffer, n, NULL, &a_copied, &a_needed);
|
---|
[0800b26] | 92 | async_exchange_end(exch);
|
---|
[a35b458] | 93 |
|
---|
[79ae36dd] | 94 | *copied = (size_t) a_copied;
|
---|
| 95 | *needed = (size_t) a_needed;
|
---|
[a35b458] | 96 |
|
---|
[3698e44] | 97 | return rc;
|
---|
| 98 | }
|
---|
| 99 |
|
---|
[b7fd2a0] | 100 | errno_t udebug_areas_read(async_sess_t *sess, void *buffer, size_t n,
|
---|
[79ae36dd] | 101 | size_t *copied, size_t *needed)
|
---|
[336db295] | 102 | {
|
---|
[96b02eb9] | 103 | sysarg_t a_copied, a_needed;
|
---|
[a35b458] | 104 |
|
---|
[79ae36dd] | 105 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[b7fd2a0] | 106 | errno_t rc = async_req_3_3(exch, IPC_M_DEBUG, UDEBUG_M_AREAS_READ,
|
---|
[79ae36dd] | 107 | (sysarg_t) buffer, n, NULL, &a_copied, &a_needed);
|
---|
[0800b26] | 108 | async_exchange_end(exch);
|
---|
[a35b458] | 109 |
|
---|
[79ae36dd] | 110 | *copied = (size_t) a_copied;
|
---|
| 111 | *needed = (size_t) a_needed;
|
---|
[a35b458] | 112 |
|
---|
[336db295] | 113 | return rc;
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[b7fd2a0] | 116 | errno_t udebug_mem_read(async_sess_t *sess, void *buffer, uintptr_t addr, size_t n)
|
---|
[9a1b20c] | 117 | {
|
---|
[79ae36dd] | 118 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[0800b26] | 119 | errno_t rc = async_req_4_0(exch, IPC_M_DEBUG, UDEBUG_M_MEM_READ,
|
---|
[79ae36dd] | 120 | (sysarg_t) buffer, addr, n);
|
---|
[0800b26] | 121 | async_exchange_end(exch);
|
---|
| 122 |
|
---|
| 123 | return rc;
|
---|
[9a1b20c] | 124 | }
|
---|
| 125 |
|
---|
[b7fd2a0] | 126 | errno_t udebug_args_read(async_sess_t *sess, thash_t tid, sysarg_t *buffer)
|
---|
[9a1b20c] | 127 | {
|
---|
[79ae36dd] | 128 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[0800b26] | 129 | errno_t rc = async_req_3_0(exch, IPC_M_DEBUG, UDEBUG_M_ARGS_READ,
|
---|
[79ae36dd] | 130 | tid, (sysarg_t) buffer);
|
---|
[0800b26] | 131 | async_exchange_end(exch);
|
---|
| 132 |
|
---|
| 133 | return rc;
|
---|
[9a1b20c] | 134 | }
|
---|
| 135 |
|
---|
[b7fd2a0] | 136 | errno_t udebug_regs_read(async_sess_t *sess, thash_t tid, void *buffer)
|
---|
[80487bc5] | 137 | {
|
---|
[79ae36dd] | 138 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[0800b26] | 139 | errno_t rc = async_req_3_0(exch, IPC_M_DEBUG, UDEBUG_M_REGS_READ,
|
---|
[79ae36dd] | 140 | tid, (sysarg_t) buffer);
|
---|
[0800b26] | 141 | async_exchange_end(exch);
|
---|
| 142 |
|
---|
| 143 | return rc;
|
---|
[80487bc5] | 144 | }
|
---|
| 145 |
|
---|
[b7fd2a0] | 146 | errno_t udebug_go(async_sess_t *sess, thash_t tid, udebug_event_t *ev_type,
|
---|
[9a1b20c] | 147 | sysarg_t *val0, sysarg_t *val1)
|
---|
| 148 | {
|
---|
[96b02eb9] | 149 | sysarg_t a_ev_type;
|
---|
[a35b458] | 150 |
|
---|
[79ae36dd] | 151 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[b7fd2a0] | 152 | errno_t rc = async_req_2_3(exch, IPC_M_DEBUG, UDEBUG_M_GO,
|
---|
[2e3355a] | 153 | tid, &a_ev_type, val0, val1);
|
---|
[0800b26] | 154 | async_exchange_end(exch);
|
---|
[a35b458] | 155 |
|
---|
[2e3355a] | 156 | *ev_type = a_ev_type;
|
---|
| 157 | return rc;
|
---|
[9a1b20c] | 158 | }
|
---|
| 159 |
|
---|
[b7fd2a0] | 160 | errno_t udebug_stop(async_sess_t *sess, thash_t tid)
|
---|
[9a1b20c] | 161 | {
|
---|
[79ae36dd] | 162 | async_exch_t *exch = async_exchange_begin(sess);
|
---|
[0800b26] | 163 | errno_t rc = async_req_2_0(exch, IPC_M_DEBUG, UDEBUG_M_STOP, tid);
|
---|
| 164 | async_exchange_end(exch);
|
---|
| 165 |
|
---|
| 166 | return rc;
|
---|
[9a1b20c] | 167 | }
|
---|
| 168 |
|
---|
| 169 | /** @}
|
---|
| 170 | */
|
---|