Andrew Jeffery | 4fe996c | 2018-02-27 12:16:48 +1030 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 |
| 2 | // Copyright (C) 2018 IBM Corp. |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 3 | |
| 4 | #define _GNU_SOURCE |
| 5 | #include <assert.h> |
| 6 | #include <errno.h> |
| 7 | #include <fcntl.h> |
| 8 | #include <getopt.h> |
| 9 | #include <limits.h> |
| 10 | #include <poll.h> |
| 11 | #include <stdbool.h> |
| 12 | #include <stdint.h> |
| 13 | #include <stdio.h> |
| 14 | #include <stdlib.h> |
| 15 | #include <string.h> |
| 16 | #include <syslog.h> |
| 17 | #include <signal.h> |
| 18 | #include <sys/ioctl.h> |
| 19 | #include <sys/mman.h> |
| 20 | #include <sys/stat.h> |
| 21 | #include <sys/timerfd.h> |
| 22 | #include <sys/types.h> |
| 23 | #include <time.h> |
| 24 | #include <unistd.h> |
| 25 | #include <inttypes.h> |
| 26 | |
Andrew Jeffery | 26558db | 2018-08-10 00:22:38 +0930 | [diff] [blame] | 27 | #include "mboxd.h" |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 28 | #include "common.h" |
Andrew Jeffery | 457a6e5 | 2018-08-08 11:21:08 +0930 | [diff] [blame] | 29 | #include "transport_mbox.h" |
Andrew Jeffery | f593b1b | 2018-08-08 11:01:04 +0930 | [diff] [blame] | 30 | #include "windows.h" |
Andrew Jeffery | cd18611 | 2018-08-08 10:47:55 +0930 | [diff] [blame] | 31 | #include "lpc.h" |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 32 | |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 33 | struct errno_map { |
| 34 | int rc; |
| 35 | int mbox_errno; |
| 36 | }; |
| 37 | |
| 38 | static const struct errno_map errno_map_v1[] = { |
| 39 | { 0, MBOX_R_SUCCESS }, |
| 40 | { EACCES, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 41 | { EBADMSG, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 42 | { EBUSY, MBOX_R_SYSTEM_ERROR }, |
| 43 | { EINVAL, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 44 | { ENOTSUP, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 45 | { EPERM, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 46 | { EPROTO, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 47 | { ETIMEDOUT, MBOX_R_TIMEOUT }, |
| 48 | { -1, MBOX_R_SYSTEM_ERROR }, |
| 49 | }; |
| 50 | |
| 51 | static const struct errno_map errno_map_v2[] = { |
| 52 | { 0, MBOX_R_SUCCESS }, |
Andrew Jeffery | c7d1947 | 2018-08-08 11:43:08 +0930 | [diff] [blame] | 53 | { EACCES, MBOX_R_WINDOW_ERROR }, |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 54 | { EBADMSG, MBOX_R_SEQ_ERROR }, |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 55 | { EBUSY, MBOX_R_BUSY }, |
| 56 | { EINVAL, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 57 | { ENOTSUP, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 58 | { EPERM, MBOX_R_WINDOW_ERROR }, |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 59 | { EPROTO, MBOX_R_PARAM_ERROR }, |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 60 | { ETIMEDOUT, MBOX_R_TIMEOUT }, |
| 61 | { -1, MBOX_R_SYSTEM_ERROR }, |
| 62 | }; |
| 63 | |
| 64 | static const struct errno_map *errno_maps[] = { |
| 65 | [0] = NULL, |
| 66 | [1] = errno_map_v1, |
| 67 | [2] = errno_map_v2, |
| 68 | }; |
| 69 | |
| 70 | static inline int mbox_xlate_errno(struct mbox_context *context, |
| 71 | int rc) |
| 72 | { |
| 73 | const struct errno_map *entry; |
| 74 | |
| 75 | rc = -rc; |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 76 | MSG_DBG("Translating errno %d: %s\n", rc, strerror(rc)); |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 77 | for(entry = errno_maps[context->version]; entry->rc != -1; entry++) { |
| 78 | if (rc == entry->rc) { |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 79 | return entry->mbox_errno; |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 80 | } |
| 81 | } |
| 82 | |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 83 | return entry->mbox_errno; |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 84 | } |
| 85 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 86 | /* |
Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 87 | * transport_mbox_flush_events() - Write to the BMC controlled status register |
| 88 | * (reg 15) |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 89 | * @context: The mbox context pointer |
| 90 | * |
| 91 | * Return: 0 on success otherwise negative error code |
| 92 | */ |
Andrew Jeffery | f62601b | 2018-11-01 13:44:25 +1030 | [diff] [blame] | 93 | static int transport_mbox_flush_events(struct mbox_context *context, uint8_t events) |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 94 | { |
| 95 | int rc; |
| 96 | |
| 97 | /* Seek mbox registers */ |
| 98 | rc = lseek(context->fds[MBOX_FD].fd, MBOX_BMC_EVENT, SEEK_SET); |
| 99 | if (rc != MBOX_BMC_EVENT) { |
| 100 | MSG_ERR("Couldn't lseek mbox to byte %d: %s\n", MBOX_BMC_EVENT, |
| 101 | strerror(errno)); |
Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 102 | return -errno; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | /* Write to mbox status register */ |
Andrew Jeffery | f62601b | 2018-11-01 13:44:25 +1030 | [diff] [blame] | 106 | rc = write(context->fds[MBOX_FD].fd, &events, 1); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 107 | if (rc != 1) { |
| 108 | MSG_ERR("Couldn't write to BMC status reg: %s\n", |
| 109 | strerror(errno)); |
Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 110 | return -errno; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | /* Reset to start */ |
| 114 | rc = lseek(context->fds[MBOX_FD].fd, 0, SEEK_SET); |
| 115 | if (rc) { |
| 116 | MSG_ERR("Couldn't reset MBOX offset to zero: %s\n", |
| 117 | strerror(errno)); |
Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 118 | return -errno; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | return 0; |
| 122 | } |
| 123 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 124 | static int transport_mbox_put_events(struct mbox_context *context, |
| 125 | uint8_t mask) |
Andrew Jeffery | 4414fb8 | 2018-08-20 12:13:09 +0930 | [diff] [blame] | 126 | { |
Andrew Jeffery | f62601b | 2018-11-01 13:44:25 +1030 | [diff] [blame] | 127 | return transport_mbox_flush_events(context, context->bmc_events & mask); |
Andrew Jeffery | 4414fb8 | 2018-08-20 12:13:09 +0930 | [diff] [blame] | 128 | } |
| 129 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 130 | static int transport_mbox_update_events(struct mbox_context *context, |
| 131 | uint8_t events, uint8_t mask) |
Andrew Jeffery | 4414fb8 | 2018-08-20 12:13:09 +0930 | [diff] [blame] | 132 | { |
Andrew Jeffery | f62601b | 2018-11-01 13:44:25 +1030 | [diff] [blame] | 133 | return transport_mbox_flush_events(context, context->bmc_events & mask); |
Andrew Jeffery | 4414fb8 | 2018-08-20 12:13:09 +0930 | [diff] [blame] | 134 | } |
| 135 | |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 136 | static const struct transport_ops transport_mbox_ops = { |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 137 | .put_events = transport_mbox_put_events, |
| 138 | .set_events = transport_mbox_update_events, |
| 139 | .clear_events = transport_mbox_update_events, |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 140 | }; |
| 141 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 142 | /* Command Handlers */ |
| 143 | |
| 144 | /* |
| 145 | * Command: RESET_STATE |
Deepak Kodihalli | 017e45c | 2017-07-12 01:06:30 -0500 | [diff] [blame] | 146 | * Reset the LPC mapping to point back at the flash, or memory in case we're |
| 147 | * using a virtual pnor. |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 148 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 149 | static int mbox_handle_reset(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 150 | union mbox_regs *req, struct mbox_msg *resp) |
| 151 | { |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 152 | return context->protocol->reset(context); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | /* |
| 156 | * Command: GET_MBOX_INFO |
| 157 | * Get the API version, default window size and block size |
| 158 | * We also set the LPC mapping to point to the reserved memory region here so |
| 159 | * this command must be called before any window manipulation |
| 160 | * |
| 161 | * V1: |
| 162 | * ARGS[0]: API Version |
| 163 | * |
| 164 | * RESP[0]: API Version |
| 165 | * RESP[1:2]: Default read window size (number of blocks) |
| 166 | * RESP[3:4]: Default write window size (number of blocks) |
| 167 | * RESP[5]: Block size (as shift) |
| 168 | * |
| 169 | * V2: |
| 170 | * ARGS[0]: API Version |
| 171 | * |
| 172 | * RESP[0]: API Version |
| 173 | * RESP[1:2]: Default read window size (number of blocks) |
| 174 | * RESP[3:4]: Default write window size (number of blocks) |
| 175 | * RESP[5]: Block size (as shift) |
| 176 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 177 | static int mbox_handle_mbox_info(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 178 | union mbox_regs *req, struct mbox_msg *resp) |
| 179 | { |
| 180 | uint8_t mbox_api_version = req->msg.args[0]; |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 181 | struct protocol_get_info io = { |
| 182 | .req = { .api_version = mbox_api_version } |
| 183 | }; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 184 | int rc; |
| 185 | |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 186 | rc = context->protocol->get_info(context, &io); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 187 | if (rc < 0) { |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 188 | return rc; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 189 | } |
| 190 | |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 191 | /* |
| 192 | * Switch transport to mbox, however we need to delay flushing the |
| 193 | * event state until after the command is processed. |
| 194 | */ |
| 195 | context->transport = &transport_mbox_ops; |
| 196 | |
Andrew Jeffery | 1e531af | 2018-08-07 13:32:57 +0930 | [diff] [blame] | 197 | resp->args[0] = io.resp.api_version; |
| 198 | if (io.resp.api_version == API_VERSION_1) { |
| 199 | put_u16(&resp->args[1], io.resp.v1.read_window_size); |
| 200 | put_u16(&resp->args[3], io.resp.v1.write_window_size); |
| 201 | } else if (io.resp.api_version >= API_VERSION_2) { |
| 202 | resp->args[5] = io.resp.v2.block_size_shift; |
| 203 | put_u16(&resp->args[6], io.resp.v2.timeout); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | /* |
| 210 | * Command: GET_FLASH_INFO |
| 211 | * Get the flash size and erase granularity |
| 212 | * |
| 213 | * V1: |
| 214 | * RESP[0:3]: Flash Size (bytes) |
| 215 | * RESP[4:7]: Erase Size (bytes) |
| 216 | * V2: |
| 217 | * RESP[0:1]: Flash Size (number of blocks) |
| 218 | * RESP[2:3]: Erase Size (number of blocks) |
| 219 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 220 | static int mbox_handle_flash_info(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 221 | union mbox_regs *req, struct mbox_msg *resp) |
| 222 | { |
Andrew Jeffery | 91a8745 | 2018-08-07 14:54:14 +0930 | [diff] [blame] | 223 | struct protocol_get_flash_info io; |
| 224 | int rc; |
| 225 | |
| 226 | rc = context->protocol->get_flash_info(context, &io); |
| 227 | if (rc < 0) { |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 228 | return rc; |
Andrew Jeffery | 91a8745 | 2018-08-07 14:54:14 +0930 | [diff] [blame] | 229 | } |
| 230 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 231 | switch (context->version) { |
| 232 | case API_VERSION_1: |
| 233 | /* Both Sizes in Bytes */ |
Andrew Jeffery | 91a8745 | 2018-08-07 14:54:14 +0930 | [diff] [blame] | 234 | put_u32(&resp->args[0], io.resp.v1.flash_size); |
| 235 | put_u32(&resp->args[4], io.resp.v1.erase_size); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 236 | break; |
| 237 | case API_VERSION_2: |
| 238 | /* Both Sizes in Block Size */ |
Andrew Jeffery | 91a8745 | 2018-08-07 14:54:14 +0930 | [diff] [blame] | 239 | put_u16(&resp->args[0], io.resp.v2.flash_size); |
| 240 | put_u16(&resp->args[2], io.resp.v2.erase_size); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 241 | break; |
| 242 | default: |
| 243 | MSG_ERR("API Version Not Valid - Invalid System State\n"); |
| 244 | return -MBOX_R_SYSTEM_ERROR; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | /* |
| 251 | * get_lpc_addr_shifted() - Get lpc address of the current window |
| 252 | * @context: The mbox context pointer |
| 253 | * |
| 254 | * Return: The lpc address to access that offset shifted by block size |
| 255 | */ |
| 256 | static inline uint16_t get_lpc_addr_shifted(struct mbox_context *context) |
| 257 | { |
| 258 | uint32_t lpc_addr, mem_offset; |
| 259 | |
| 260 | /* Offset of the current window in the reserved memory region */ |
| 261 | mem_offset = context->current->mem - context->mem; |
| 262 | /* Total LPC Address */ |
| 263 | lpc_addr = context->lpc_base + mem_offset; |
| 264 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 265 | MSG_DBG("LPC address of current window: 0x%.8x\n", lpc_addr); |
| 266 | |
Evan Lojewski | f1e547c | 2019-03-14 14:34:33 +1030 | [diff] [blame] | 267 | return lpc_addr >> context->backend.block_size_shift; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 268 | } |
| 269 | |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 270 | static int mbox_handle_create_window(struct mbox_context *context, bool ro, |
Andrew Jeffery | 4bcec8e | 2018-08-07 15:33:41 +0930 | [diff] [blame] | 271 | union mbox_regs *req, struct mbox_msg *resp) |
| 272 | { |
| 273 | struct protocol_create_window io; |
| 274 | int rc; |
| 275 | |
| 276 | io.req.offset = get_u16(&req->msg.args[0]); |
| 277 | io.req.ro = ro; |
| 278 | |
| 279 | rc = context->protocol->create_window(context, &io); |
| 280 | if (rc < 0) { |
| 281 | return rc; |
| 282 | } |
| 283 | |
| 284 | put_u16(&resp->args[0], io.resp.lpc_address); |
| 285 | if (context->version >= API_VERSION_2) { |
| 286 | put_u16(&resp->args[2], io.resp.size); |
| 287 | put_u16(&resp->args[4], io.resp.offset); |
| 288 | } |
| 289 | |
| 290 | return 0; |
| 291 | } |
| 292 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 293 | /* |
| 294 | * Command: CREATE_READ_WINDOW |
| 295 | * Opens a read window |
| 296 | * First checks if any current window with the requested data, if so we just |
| 297 | * point the host to that. Otherwise we read the request data in from flash and |
| 298 | * point the host there. |
| 299 | * |
| 300 | * V1: |
| 301 | * ARGS[0:1]: Window Location as Offset into Flash (number of blocks) |
| 302 | * |
| 303 | * RESP[0:1]: LPC bus address for host to access this window (number of blocks) |
| 304 | * |
| 305 | * V2: |
| 306 | * ARGS[0:1]: Window Location as Offset into Flash (number of blocks) |
| 307 | * ARGS[2:3]: Requested window size (number of blocks) |
| 308 | * |
| 309 | * RESP[0:1]: LPC bus address for host to access this window (number of blocks) |
| 310 | * RESP[2:3]: Actual window size that the host can access (number of blocks) |
| 311 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 312 | static int mbox_handle_read_window(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 313 | union mbox_regs *req, struct mbox_msg *resp) |
| 314 | { |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 315 | return mbox_handle_create_window(context, true, req, resp); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | /* |
| 319 | * Command: CREATE_WRITE_WINDOW |
| 320 | * Opens a write window |
| 321 | * First checks if any current window with the requested data, if so we just |
| 322 | * point the host to that. Otherwise we read the request data in from flash and |
| 323 | * point the host there. |
| 324 | * |
| 325 | * V1: |
| 326 | * ARGS[0:1]: Window Location as Offset into Flash (number of blocks) |
| 327 | * |
| 328 | * RESP[0:1]: LPC bus address for host to access this window (number of blocks) |
| 329 | * |
| 330 | * V2: |
| 331 | * ARGS[0:1]: Window Location as Offset into Flash (number of blocks) |
| 332 | * ARGS[2:3]: Requested window size (number of blocks) |
| 333 | * |
| 334 | * RESP[0:1]: LPC bus address for host to access this window (number of blocks) |
| 335 | * RESP[2:3]: Actual window size that was mapped/host can access (n.o. blocks) |
| 336 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 337 | static int mbox_handle_write_window(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 338 | union mbox_regs *req, struct mbox_msg *resp) |
| 339 | { |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 340 | return mbox_handle_create_window(context, false, req, resp); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /* |
| 344 | * Commands: MARK_WRITE_DIRTY |
| 345 | * Marks a portion of the current (write) window dirty, informing the daemon |
| 346 | * that is has been written to and thus must be at some point written to the |
| 347 | * backing store |
| 348 | * These changes aren't written back to the backing store unless flush is then |
| 349 | * called or the window closed |
| 350 | * |
| 351 | * V1: |
| 352 | * ARGS[0:1]: Where within flash to start (number of blocks) |
| 353 | * ARGS[2:5]: Number to mark dirty (number of bytes) |
| 354 | * |
| 355 | * V2: |
| 356 | * ARGS[0:1]: Where within window to start (number of blocks) |
| 357 | * ARGS[2:3]: Number to mark dirty (number of blocks) |
| 358 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 359 | static int mbox_handle_dirty_window(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 360 | union mbox_regs *req, struct mbox_msg *resp) |
| 361 | { |
Andrew Jeffery | a336e43 | 2018-08-07 16:00:40 +0930 | [diff] [blame] | 362 | struct protocol_mark_dirty io; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 363 | |
Andrew Jeffery | a336e43 | 2018-08-07 16:00:40 +0930 | [diff] [blame] | 364 | if (context->version == API_VERSION_1) { |
| 365 | io.req.v1.offset = get_u16(&req->msg.args[0]); |
| 366 | io.req.v1.size = get_u32(&req->msg.args[2]); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 367 | } else { |
Andrew Jeffery | a336e43 | 2018-08-07 16:00:40 +0930 | [diff] [blame] | 368 | io.req.v2.offset = get_u16(&req->msg.args[0]); |
| 369 | io.req.v2.size = get_u16(&req->msg.args[2]); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 370 | } |
| 371 | |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 372 | return context->protocol->mark_dirty(context, &io); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | /* |
| 376 | * Commands: MARK_WRITE_ERASE |
| 377 | * Erases a portion of the current window |
| 378 | * These changes aren't written back to the backing store unless flush is then |
| 379 | * called or the window closed |
| 380 | * |
| 381 | * V1: |
| 382 | * Unimplemented |
| 383 | * |
| 384 | * V2: |
| 385 | * ARGS[0:1]: Where within window to start (number of blocks) |
| 386 | * ARGS[2:3]: Number to erase (number of blocks) |
| 387 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 388 | static int mbox_handle_erase_window(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 389 | union mbox_regs *req, struct mbox_msg *resp) |
| 390 | { |
Andrew Jeffery | 62a3daa | 2018-08-07 22:30:32 +0930 | [diff] [blame] | 391 | struct protocol_erase io; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 392 | |
Andrew Jeffery | 62a3daa | 2018-08-07 22:30:32 +0930 | [diff] [blame] | 393 | io.req.offset = get_u16(&req->msg.args[0]); |
| 394 | io.req.size = get_u16(&req->msg.args[2]); |
| 395 | |
| 396 | if (!context->protocol->erase) { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 397 | MSG_ERR("Protocol Version invalid for Erase Command\n"); |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 398 | return -ENOTSUP; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 399 | } |
| 400 | |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 401 | return context->protocol->erase(context, &io); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | /* |
| 405 | * Command: WRITE_FLUSH |
| 406 | * Flushes any dirty or erased blocks in the current window back to the backing |
| 407 | * store |
| 408 | * NOTE: For V1 this behaves much the same as the dirty command in that it |
| 409 | * takes an offset and number of blocks to dirty, then also performs a flush as |
| 410 | * part of the same command. For V2 this will only flush blocks already marked |
| 411 | * dirty/erased with the appropriate commands and doesn't take any arguments |
| 412 | * directly. |
| 413 | * |
| 414 | * V1: |
| 415 | * ARGS[0:1]: Where within window to start (number of blocks) |
| 416 | * ARGS[2:5]: Number to mark dirty (number of bytes) |
| 417 | * |
| 418 | * V2: |
| 419 | * NONE |
| 420 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 421 | static int mbox_handle_flush_window(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 422 | union mbox_regs *req, struct mbox_msg *resp) |
| 423 | { |
Andrew Jeffery | 9b920cf | 2018-08-07 22:49:19 +0930 | [diff] [blame] | 424 | struct protocol_flush io = { 0 }; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 425 | |
Andrew Jeffery | 9b920cf | 2018-08-07 22:49:19 +0930 | [diff] [blame] | 426 | if (context->version == API_VERSION_1) { |
| 427 | io.req.offset = get_u16(&req->msg.args[0]); |
| 428 | io.req.size = get_u32(&req->msg.args[2]); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 429 | } |
| 430 | |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 431 | return context->protocol->flush(context, &io); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /* |
| 435 | * Command: CLOSE_WINDOW |
| 436 | * Close the current window |
| 437 | * NOTE: There is an implicit flush |
| 438 | * |
| 439 | * V1: |
| 440 | * NONE |
| 441 | * |
| 442 | * V2: |
| 443 | * ARGS[0]: FLAGS |
| 444 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 445 | static int mbox_handle_close_window(struct mbox_context *context, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 446 | union mbox_regs *req, struct mbox_msg *resp) |
| 447 | { |
Andrew Jeffery | 093eda5 | 2018-08-07 23:10:43 +0930 | [diff] [blame] | 448 | struct protocol_close io = { 0 }; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 449 | |
Andrew Jeffery | 093eda5 | 2018-08-07 23:10:43 +0930 | [diff] [blame] | 450 | if (context->version >= API_VERSION_2) { |
| 451 | io.req.flags = req->msg.args[0]; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 452 | } |
| 453 | |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 454 | return context->protocol->close(context, &io); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | /* |
| 458 | * Command: BMC_EVENT_ACK |
| 459 | * Sent by the host to acknowledge BMC events supplied in mailbox register 15 |
| 460 | * |
| 461 | * ARGS[0]: Bitmap of bits to ack (by clearing) |
| 462 | */ |
Andrew Jeffery | f21c81c | 2018-08-09 13:57:46 +0930 | [diff] [blame] | 463 | static int mbox_handle_ack(struct mbox_context *context, union mbox_regs *req, |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 464 | struct mbox_msg *resp) |
| 465 | { |
Andrew Jeffery | c5c8304 | 2018-08-07 23:22:05 +0930 | [diff] [blame] | 466 | struct protocol_ack io; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 467 | |
Andrew Jeffery | c5c8304 | 2018-08-07 23:22:05 +0930 | [diff] [blame] | 468 | io.req.flags = req->msg.args[0]; |
| 469 | |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 470 | return context->protocol->ack(context, &io); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | /* |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 474 | * check_req_valid() - Check if the given request is a valid mbox request |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 475 | * @context: The mbox context pointer |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 476 | * @cmd: The request registers |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 477 | * |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 478 | * Return: 0 if request is valid otherwise negative error code |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 479 | */ |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 480 | static int check_req_valid(struct mbox_context *context, union mbox_regs *req) |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 481 | { |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 482 | uint8_t cmd = req->msg.command; |
| 483 | uint8_t seq = req->msg.seq; |
| 484 | |
| 485 | if (cmd > NUM_MBOX_CMDS) { |
Andrew Jeffery | 121dc0d | 2017-04-24 16:15:06 +0930 | [diff] [blame] | 486 | MSG_ERR("Unknown mbox command: %d\n", cmd); |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 487 | return -ENOTSUP; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 488 | } |
Andrew Jeffery | 121dc0d | 2017-04-24 16:15:06 +0930 | [diff] [blame] | 489 | |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 490 | if (seq == context->prev_seq && cmd != MBOX_C_GET_MBOX_INFO) { |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 491 | MSG_ERR("Invalid sequence number: %d, previous: %d\n", seq, |
| 492 | context->prev_seq); |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 493 | return -EBADMSG; |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 494 | } |
| 495 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 496 | if (context->state & STATE_SUSPENDED) { |
| 497 | if (cmd != MBOX_C_GET_MBOX_INFO && cmd != MBOX_C_ACK) { |
| 498 | MSG_ERR("Cannot use that cmd while suspended: %d\n", |
| 499 | cmd); |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 500 | return -EBUSY; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 501 | } |
| 502 | } |
Andrew Jeffery | 121dc0d | 2017-04-24 16:15:06 +0930 | [diff] [blame] | 503 | |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 504 | if (context->transport != &transport_mbox_ops) { |
| 505 | if (cmd != MBOX_C_RESET_STATE && cmd != MBOX_C_GET_MBOX_INFO) { |
| 506 | MSG_ERR("Cannot switch transport with command %d\n", |
| 507 | cmd); |
| 508 | return -EPROTO; |
| 509 | } |
| 510 | } |
| 511 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 512 | if (!(context->state & MAPS_MEM)) { |
| 513 | if (cmd != MBOX_C_RESET_STATE && cmd != MBOX_C_GET_MBOX_INFO |
| 514 | && cmd != MBOX_C_ACK) { |
Andrew Jeffery | 121dc0d | 2017-04-24 16:15:06 +0930 | [diff] [blame] | 515 | MSG_ERR("Must call GET_MBOX_INFO before %d\n", cmd); |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 516 | return -EPROTO; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 523 | typedef int (*mboxd_mbox_handler)(struct mbox_context *, union mbox_regs *, |
| 524 | struct mbox_msg *); |
| 525 | |
| 526 | static const mboxd_mbox_handler transport_mbox_handlers[] = { |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 527 | mbox_handle_reset, |
| 528 | mbox_handle_mbox_info, |
| 529 | mbox_handle_flash_info, |
| 530 | mbox_handle_read_window, |
| 531 | mbox_handle_close_window, |
| 532 | mbox_handle_write_window, |
| 533 | mbox_handle_dirty_window, |
| 534 | mbox_handle_flush_window, |
| 535 | mbox_handle_ack, |
| 536 | mbox_handle_erase_window |
| 537 | }; |
| 538 | |
| 539 | /* |
| 540 | * handle_mbox_req() - Handle an incoming mbox command request |
| 541 | * @context: The mbox context pointer |
| 542 | * @req: The mbox request message |
| 543 | * |
| 544 | * Return: 0 if handled successfully otherwise negative error code |
| 545 | */ |
| 546 | static int handle_mbox_req(struct mbox_context *context, union mbox_regs *req) |
| 547 | { |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 548 | const struct transport_ops *old_transport = context->transport; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 549 | struct mbox_msg resp = { |
| 550 | .command = req->msg.command, |
| 551 | .seq = req->msg.seq, |
| 552 | .args = { 0 }, |
| 553 | .response = MBOX_R_SUCCESS |
| 554 | }; |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 555 | int rc = 0, len, i; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 556 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 557 | MSG_INFO("Received MBOX command: %u\n", req->msg.command); |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 558 | |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 559 | rc = check_req_valid(context, req); |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 560 | if (!rc) { |
Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 561 | mboxd_mbox_handler handler; |
| 562 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 563 | /* Commands start at 1 so we have to subtract 1 from the cmd */ |
Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 564 | handler = transport_mbox_handlers[req->msg.command - 1]; |
| 565 | rc = handler(context, req, &resp); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 566 | if (rc < 0) { |
| 567 | MSG_ERR("Error handling mbox cmd: %d\n", |
| 568 | req->msg.command); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 569 | } |
| 570 | } |
| 571 | |
Andrew Jeffery | 2f1477c | 2018-08-09 23:24:38 +0930 | [diff] [blame] | 572 | rc = mbox_xlate_errno(context, rc); |
| 573 | resp.response = rc; |
Andrew Jeffery | 55dede6 | 2017-04-24 16:13:06 +0930 | [diff] [blame] | 574 | context->prev_seq = req->msg.seq; |
| 575 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 576 | MSG_DBG("Writing MBOX response:\n"); |
| 577 | MSG_DBG("MBOX cmd: %u\n", resp.command); |
| 578 | MSG_DBG("MBOX seq: %u\n", resp.seq); |
| 579 | for (i = 0; i < MBOX_ARGS_BYTES; i++) { |
| 580 | MSG_DBG("MBOX arg[%d]: 0x%.2x\n", i, resp.args[i]); |
| 581 | } |
| 582 | MSG_INFO("Writing MBOX response: %u\n", resp.response); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 583 | len = write(context->fds[MBOX_FD].fd, &resp, sizeof(resp)); |
| 584 | if (len < sizeof(resp)) { |
| 585 | MSG_ERR("Didn't write the full response\n"); |
| 586 | rc = -errno; |
| 587 | } |
| 588 | |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 589 | if (context->transport != old_transport && |
| 590 | context->transport == &transport_mbox_ops) { |
Andrew Jeffery | 0453aa4 | 2018-08-21 08:25:46 +0930 | [diff] [blame] | 591 | /* A bit messy, but we need the correct event mask */ |
| 592 | protocol_events_set(context, context->bmc_events); |
Andrew Jeffery | 23a4821 | 2018-08-10 14:41:48 +0930 | [diff] [blame] | 593 | } |
| 594 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 595 | return rc; |
| 596 | } |
| 597 | |
| 598 | /* |
| 599 | * get_message() - Read an mbox request message from the mbox registers |
| 600 | * @context: The mbox context pointer |
| 601 | * @msg: Where to put the received message |
| 602 | * |
| 603 | * Return: 0 if read successfully otherwise negative error code |
| 604 | */ |
| 605 | static int get_message(struct mbox_context *context, union mbox_regs *msg) |
| 606 | { |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 607 | int rc, i; |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 608 | |
| 609 | rc = read(context->fds[MBOX_FD].fd, msg, sizeof(msg->raw)); |
| 610 | if (rc < 0) { |
| 611 | MSG_ERR("Couldn't read: %s\n", strerror(errno)); |
| 612 | return -errno; |
| 613 | } else if (rc < sizeof(msg->raw)) { |
| 614 | MSG_ERR("Short read: %d expecting %zu\n", rc, sizeof(msg->raw)); |
| 615 | return -1; |
| 616 | } |
| 617 | |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 618 | MSG_DBG("Received MBOX request:\n"); |
| 619 | MSG_DBG("MBOX cmd: %u\n", msg->msg.command); |
| 620 | MSG_DBG("MBOX seq: %u\n", msg->msg.seq); |
| 621 | for (i = 0; i < MBOX_ARGS_BYTES; i++) { |
| 622 | MSG_DBG("MBOX arg[%d]: 0x%.2x\n", i, msg->msg.args[i]); |
| 623 | } |
| 624 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 625 | return 0; |
| 626 | } |
| 627 | |
| 628 | /* |
Andrew Jeffery | d86141b | 2018-08-09 14:58:53 +0930 | [diff] [blame] | 629 | * transport_mbox_dispatch() - handle an mbox interrupt |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 630 | * @context: The mbox context pointer |
| 631 | * |
| 632 | * Return: 0 if handled successfully otherwise negative error code |
| 633 | */ |
Andrew Jeffery | d86141b | 2018-08-09 14:58:53 +0930 | [diff] [blame] | 634 | int transport_mbox_dispatch(struct mbox_context *context) |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 635 | { |
| 636 | int rc = 0; |
| 637 | union mbox_regs req = { 0 }; |
| 638 | |
| 639 | assert(context); |
| 640 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 641 | rc = get_message(context, &req); |
| 642 | if (rc) { |
| 643 | return rc; |
| 644 | } |
| 645 | |
| 646 | return handle_mbox_req(context, &req); |
| 647 | } |
| 648 | |
Andrew Jeffery | 4b8203d | 2019-05-06 14:36:16 +0930 | [diff] [blame] | 649 | int __transport_mbox_init(struct mbox_context *context, const char *path, |
| 650 | const struct transport_ops **ops) |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 651 | { |
| 652 | int fd; |
| 653 | |
| 654 | /* Open MBOX Device */ |
Andrew Jeffery | 913740f | 2017-04-10 23:51:07 +0930 | [diff] [blame] | 655 | fd = open(path, O_RDWR | O_NONBLOCK); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 656 | if (fd < 0) { |
Andrew Jeffery | 4b8203d | 2019-05-06 14:36:16 +0930 | [diff] [blame] | 657 | MSG_INFO("Couldn't open %s with flags O_RDWR: %s\n", |
Andrew Jeffery | 913740f | 2017-04-10 23:51:07 +0930 | [diff] [blame] | 658 | path, strerror(errno)); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 659 | return -errno; |
| 660 | } |
Suraj Jitindar Singh | 2851959 | 2017-04-27 14:48:58 +1000 | [diff] [blame] | 661 | MSG_DBG("Opened mbox dev: %s\n", path); |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 662 | |
| 663 | context->fds[MBOX_FD].fd = fd; |
| 664 | |
Andrew Jeffery | 4b8203d | 2019-05-06 14:36:16 +0930 | [diff] [blame] | 665 | if (ops) { |
| 666 | *ops = &transport_mbox_ops; |
| 667 | } |
| 668 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 669 | return 0; |
| 670 | } |
| 671 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 672 | int transport_mbox_init(struct mbox_context *context, |
| 673 | const struct transport_ops **ops) |
Andrew Jeffery | 913740f | 2017-04-10 23:51:07 +0930 | [diff] [blame] | 674 | { |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 675 | int rc; |
| 676 | |
Andrew Jeffery | 4b8203d | 2019-05-06 14:36:16 +0930 | [diff] [blame] | 677 | rc = __transport_mbox_init(context, MBOX_HOST_PATH, ops); |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 678 | if (rc) |
| 679 | return rc; |
| 680 | |
Andrew Jeffery | fe0c9e8 | 2018-11-01 14:02:17 +1030 | [diff] [blame] | 681 | return 0; |
Andrew Jeffery | 913740f | 2017-04-10 23:51:07 +0930 | [diff] [blame] | 682 | } |
| 683 | |
Andrew Jeffery | 55260ce | 2018-08-09 15:05:59 +0930 | [diff] [blame] | 684 | void transport_mbox_free(struct mbox_context *context) |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 685 | { |
| 686 | close(context->fds[MBOX_FD].fd); |
| 687 | } |