Brijesh Singh | 2a6170d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 1 | /* |
| 2 | * AMD Platform Security Processor (PSP) interface |
| 3 | * |
| 4 | * Copyright (C) 2016-2017 Advanced Micro Devices, Inc. |
| 5 | * |
| 6 | * Author: Brijesh Singh <brijesh.singh@amd.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/kthread.h> |
| 16 | #include <linux/sched.h> |
| 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/spinlock.h> |
| 19 | #include <linux/spinlock_types.h> |
| 20 | #include <linux/types.h> |
| 21 | #include <linux/mutex.h> |
| 22 | #include <linux/delay.h> |
| 23 | #include <linux/hw_random.h> |
| 24 | #include <linux/ccp.h> |
| 25 | |
| 26 | #include "sp-dev.h" |
| 27 | #include "psp-dev.h" |
| 28 | |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 29 | #define DEVICE_NAME "sev" |
| 30 | |
| 31 | static DEFINE_MUTEX(sev_cmd_mutex); |
| 32 | static struct sev_misc_dev *misc_dev; |
| 33 | static struct psp_device *psp_master; |
| 34 | |
Brijesh Singh | 2a6170d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 35 | static struct psp_device *psp_alloc_struct(struct sp_device *sp) |
| 36 | { |
| 37 | struct device *dev = sp->dev; |
| 38 | struct psp_device *psp; |
| 39 | |
| 40 | psp = devm_kzalloc(dev, sizeof(*psp), GFP_KERNEL); |
| 41 | if (!psp) |
| 42 | return NULL; |
| 43 | |
| 44 | psp->dev = dev; |
| 45 | psp->sp = sp; |
| 46 | |
| 47 | snprintf(psp->name, sizeof(psp->name), "psp-%u", sp->ord); |
| 48 | |
| 49 | return psp; |
| 50 | } |
| 51 | |
| 52 | static irqreturn_t psp_irq_handler(int irq, void *data) |
| 53 | { |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 54 | struct psp_device *psp = data; |
| 55 | unsigned int status; |
| 56 | int reg; |
| 57 | |
| 58 | /* Read the interrupt status: */ |
| 59 | status = ioread32(psp->io_regs + PSP_P2CMSG_INTSTS); |
| 60 | |
| 61 | /* Check if it is command completion: */ |
| 62 | if (!(status & BIT(PSP_CMD_COMPLETE_REG))) |
| 63 | goto done; |
| 64 | |
| 65 | /* Check if it is SEV command completion: */ |
| 66 | reg = ioread32(psp->io_regs + PSP_CMDRESP); |
| 67 | if (reg & PSP_CMDRESP_RESP) { |
| 68 | psp->sev_int_rcvd = 1; |
| 69 | wake_up(&psp->sev_int_queue); |
| 70 | } |
| 71 | |
| 72 | done: |
| 73 | /* Clear the interrupt status by writing the same value we read. */ |
| 74 | iowrite32(status, psp->io_regs + PSP_P2CMSG_INTSTS); |
| 75 | |
Brijesh Singh | 2a6170d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 76 | return IRQ_HANDLED; |
| 77 | } |
| 78 | |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 79 | static void sev_wait_cmd_ioc(struct psp_device *psp, unsigned int *reg) |
| 80 | { |
| 81 | psp->sev_int_rcvd = 0; |
| 82 | |
| 83 | wait_event(psp->sev_int_queue, psp->sev_int_rcvd); |
| 84 | *reg = ioread32(psp->io_regs + PSP_CMDRESP); |
| 85 | } |
| 86 | |
| 87 | static int sev_cmd_buffer_len(int cmd) |
| 88 | { |
| 89 | switch (cmd) { |
| 90 | case SEV_CMD_INIT: return sizeof(struct sev_data_init); |
| 91 | case SEV_CMD_PLATFORM_STATUS: return sizeof(struct sev_user_data_status); |
| 92 | case SEV_CMD_PEK_CSR: return sizeof(struct sev_data_pek_csr); |
| 93 | case SEV_CMD_PEK_CERT_IMPORT: return sizeof(struct sev_data_pek_cert_import); |
| 94 | case SEV_CMD_PDH_CERT_EXPORT: return sizeof(struct sev_data_pdh_cert_export); |
| 95 | case SEV_CMD_LAUNCH_START: return sizeof(struct sev_data_launch_start); |
| 96 | case SEV_CMD_LAUNCH_UPDATE_DATA: return sizeof(struct sev_data_launch_update_data); |
| 97 | case SEV_CMD_LAUNCH_UPDATE_VMSA: return sizeof(struct sev_data_launch_update_vmsa); |
| 98 | case SEV_CMD_LAUNCH_FINISH: return sizeof(struct sev_data_launch_finish); |
| 99 | case SEV_CMD_LAUNCH_MEASURE: return sizeof(struct sev_data_launch_measure); |
| 100 | case SEV_CMD_ACTIVATE: return sizeof(struct sev_data_activate); |
| 101 | case SEV_CMD_DEACTIVATE: return sizeof(struct sev_data_deactivate); |
| 102 | case SEV_CMD_DECOMMISSION: return sizeof(struct sev_data_decommission); |
| 103 | case SEV_CMD_GUEST_STATUS: return sizeof(struct sev_data_guest_status); |
| 104 | case SEV_CMD_DBG_DECRYPT: return sizeof(struct sev_data_dbg); |
| 105 | case SEV_CMD_DBG_ENCRYPT: return sizeof(struct sev_data_dbg); |
| 106 | case SEV_CMD_SEND_START: return sizeof(struct sev_data_send_start); |
| 107 | case SEV_CMD_SEND_UPDATE_DATA: return sizeof(struct sev_data_send_update_data); |
| 108 | case SEV_CMD_SEND_UPDATE_VMSA: return sizeof(struct sev_data_send_update_vmsa); |
| 109 | case SEV_CMD_SEND_FINISH: return sizeof(struct sev_data_send_finish); |
| 110 | case SEV_CMD_RECEIVE_START: return sizeof(struct sev_data_receive_start); |
| 111 | case SEV_CMD_RECEIVE_FINISH: return sizeof(struct sev_data_receive_finish); |
| 112 | case SEV_CMD_RECEIVE_UPDATE_DATA: return sizeof(struct sev_data_receive_update_data); |
| 113 | case SEV_CMD_RECEIVE_UPDATE_VMSA: return sizeof(struct sev_data_receive_update_vmsa); |
| 114 | case SEV_CMD_LAUNCH_UPDATE_SECRET: return sizeof(struct sev_data_launch_secret); |
| 115 | default: return 0; |
| 116 | } |
| 117 | |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | static int __sev_do_cmd_locked(int cmd, void *data, int *psp_ret) |
| 122 | { |
| 123 | struct psp_device *psp = psp_master; |
| 124 | unsigned int phys_lsb, phys_msb; |
| 125 | unsigned int reg, ret = 0; |
| 126 | |
| 127 | if (!psp) |
| 128 | return -ENODEV; |
| 129 | |
| 130 | /* Get the physical address of the command buffer */ |
| 131 | phys_lsb = data ? lower_32_bits(__psp_pa(data)) : 0; |
| 132 | phys_msb = data ? upper_32_bits(__psp_pa(data)) : 0; |
| 133 | |
| 134 | dev_dbg(psp->dev, "sev command id %#x buffer 0x%08x%08x\n", |
| 135 | cmd, phys_msb, phys_lsb); |
| 136 | |
| 137 | print_hex_dump_debug("(in): ", DUMP_PREFIX_OFFSET, 16, 2, data, |
| 138 | sev_cmd_buffer_len(cmd), false); |
| 139 | |
| 140 | iowrite32(phys_lsb, psp->io_regs + PSP_CMDBUFF_ADDR_LO); |
| 141 | iowrite32(phys_msb, psp->io_regs + PSP_CMDBUFF_ADDR_HI); |
| 142 | |
| 143 | reg = cmd; |
| 144 | reg <<= PSP_CMDRESP_CMD_SHIFT; |
| 145 | reg |= PSP_CMDRESP_IOC; |
| 146 | iowrite32(reg, psp->io_regs + PSP_CMDRESP); |
| 147 | |
| 148 | /* wait for command completion */ |
| 149 | sev_wait_cmd_ioc(psp, ®); |
| 150 | |
| 151 | if (psp_ret) |
| 152 | *psp_ret = reg & PSP_CMDRESP_ERR_MASK; |
| 153 | |
| 154 | if (reg & PSP_CMDRESP_ERR_MASK) { |
| 155 | dev_dbg(psp->dev, "sev command %#x failed (%#010x)\n", |
| 156 | cmd, reg & PSP_CMDRESP_ERR_MASK); |
| 157 | ret = -EIO; |
| 158 | } |
| 159 | |
| 160 | print_hex_dump_debug("(out): ", DUMP_PREFIX_OFFSET, 16, 2, data, |
| 161 | sev_cmd_buffer_len(cmd), false); |
| 162 | |
| 163 | return ret; |
| 164 | } |
| 165 | |
| 166 | static int sev_do_cmd(int cmd, void *data, int *psp_ret) |
| 167 | { |
| 168 | int rc; |
| 169 | |
| 170 | mutex_lock(&sev_cmd_mutex); |
| 171 | rc = __sev_do_cmd_locked(cmd, data, psp_ret); |
| 172 | mutex_unlock(&sev_cmd_mutex); |
| 173 | |
| 174 | return rc; |
| 175 | } |
| 176 | |
| 177 | static int __sev_platform_init_locked(int *error) |
| 178 | { |
| 179 | struct psp_device *psp = psp_master; |
| 180 | int rc = 0; |
| 181 | |
| 182 | if (!psp) |
| 183 | return -ENODEV; |
| 184 | |
| 185 | if (psp->sev_state == SEV_STATE_INIT) |
| 186 | return 0; |
| 187 | |
| 188 | rc = __sev_do_cmd_locked(SEV_CMD_INIT, &psp->init_cmd_buf, error); |
| 189 | if (rc) |
| 190 | return rc; |
| 191 | |
| 192 | psp->sev_state = SEV_STATE_INIT; |
| 193 | dev_dbg(psp->dev, "SEV firmware initialized\n"); |
| 194 | |
| 195 | return rc; |
| 196 | } |
| 197 | |
| 198 | int sev_platform_init(int *error) |
| 199 | { |
| 200 | int rc; |
| 201 | |
| 202 | mutex_lock(&sev_cmd_mutex); |
| 203 | rc = __sev_platform_init_locked(error); |
| 204 | mutex_unlock(&sev_cmd_mutex); |
| 205 | |
| 206 | return rc; |
| 207 | } |
| 208 | EXPORT_SYMBOL_GPL(sev_platform_init); |
| 209 | |
| 210 | static int __sev_platform_shutdown_locked(int *error) |
| 211 | { |
| 212 | int ret; |
| 213 | |
| 214 | ret = __sev_do_cmd_locked(SEV_CMD_SHUTDOWN, 0, error); |
| 215 | if (ret) |
| 216 | return ret; |
| 217 | |
| 218 | psp_master->sev_state = SEV_STATE_UNINIT; |
| 219 | dev_dbg(psp_master->dev, "SEV firmware shutdown\n"); |
| 220 | |
| 221 | return ret; |
| 222 | } |
| 223 | |
| 224 | static int sev_platform_shutdown(int *error) |
| 225 | { |
| 226 | int rc; |
| 227 | |
| 228 | mutex_lock(&sev_cmd_mutex); |
| 229 | rc = __sev_platform_shutdown_locked(NULL); |
| 230 | mutex_unlock(&sev_cmd_mutex); |
| 231 | |
| 232 | return rc; |
| 233 | } |
| 234 | |
Brijesh Singh | 2960f9a | 2017-12-04 10:57:29 -0600 | [diff] [blame] | 235 | static int sev_get_platform_state(int *state, int *error) |
| 236 | { |
| 237 | int rc; |
| 238 | |
| 239 | rc = __sev_do_cmd_locked(SEV_CMD_PLATFORM_STATUS, |
| 240 | &psp_master->status_cmd_buf, error); |
| 241 | if (rc) |
| 242 | return rc; |
| 243 | |
| 244 | *state = psp_master->status_cmd_buf.state; |
| 245 | return rc; |
| 246 | } |
| 247 | |
| 248 | static int sev_ioctl_do_reset(struct sev_issue_cmd *argp) |
| 249 | { |
| 250 | int state, rc; |
| 251 | |
| 252 | /* |
| 253 | * The SEV spec requires that FACTORY_RESET must be issued in |
| 254 | * UNINIT state. Before we go further lets check if any guest is |
| 255 | * active. |
| 256 | * |
| 257 | * If FW is in WORKING state then deny the request otherwise issue |
| 258 | * SHUTDOWN command do INIT -> UNINIT before issuing the FACTORY_RESET. |
| 259 | * |
| 260 | */ |
| 261 | rc = sev_get_platform_state(&state, &argp->error); |
| 262 | if (rc) |
| 263 | return rc; |
| 264 | |
| 265 | if (state == SEV_STATE_WORKING) |
| 266 | return -EBUSY; |
| 267 | |
| 268 | if (state == SEV_STATE_INIT) { |
| 269 | rc = __sev_platform_shutdown_locked(&argp->error); |
| 270 | if (rc) |
| 271 | return rc; |
| 272 | } |
| 273 | |
| 274 | return __sev_do_cmd_locked(SEV_CMD_FACTORY_RESET, 0, &argp->error); |
| 275 | } |
| 276 | |
Brijesh Singh | efe1829 | 2017-12-04 10:57:29 -0600 | [diff] [blame] | 277 | static int sev_ioctl_do_platform_status(struct sev_issue_cmd *argp) |
| 278 | { |
| 279 | struct sev_user_data_status *data = &psp_master->status_cmd_buf; |
| 280 | int ret; |
| 281 | |
| 282 | ret = __sev_do_cmd_locked(SEV_CMD_PLATFORM_STATUS, data, &argp->error); |
| 283 | if (ret) |
| 284 | return ret; |
| 285 | |
| 286 | if (copy_to_user((void __user *)argp->data, data, sizeof(*data))) |
| 287 | ret = -EFAULT; |
| 288 | |
| 289 | return ret; |
| 290 | } |
| 291 | |
Brijesh Singh | 4d84b72 | 2017-12-04 10:57:30 -0600 | [diff] [blame] | 292 | static int sev_ioctl_do_pek_pdh_gen(int cmd, struct sev_issue_cmd *argp) |
| 293 | { |
| 294 | int rc; |
| 295 | |
| 296 | if (psp_master->sev_state == SEV_STATE_UNINIT) { |
| 297 | rc = __sev_platform_init_locked(&argp->error); |
| 298 | if (rc) |
| 299 | return rc; |
| 300 | } |
| 301 | |
| 302 | return __sev_do_cmd_locked(cmd, 0, &argp->error); |
| 303 | } |
| 304 | |
Brijesh Singh | e799035 | 2017-12-04 10:57:31 -0600 | [diff] [blame^] | 305 | static int sev_ioctl_do_pek_csr(struct sev_issue_cmd *argp) |
| 306 | { |
| 307 | struct sev_user_data_pek_csr input; |
| 308 | struct sev_data_pek_csr *data; |
| 309 | void *blob = NULL; |
| 310 | int ret; |
| 311 | |
| 312 | if (copy_from_user(&input, (void __user *)argp->data, sizeof(input))) |
| 313 | return -EFAULT; |
| 314 | |
| 315 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 316 | if (!data) |
| 317 | return -ENOMEM; |
| 318 | |
| 319 | /* userspace wants to query CSR length */ |
| 320 | if (!input.address || !input.length) |
| 321 | goto cmd; |
| 322 | |
| 323 | /* allocate a physically contiguous buffer to store the CSR blob */ |
| 324 | if (!access_ok(VERIFY_WRITE, input.address, input.length) || |
| 325 | input.length > SEV_FW_BLOB_MAX_SIZE) { |
| 326 | ret = -EFAULT; |
| 327 | goto e_free; |
| 328 | } |
| 329 | |
| 330 | blob = kmalloc(input.length, GFP_KERNEL); |
| 331 | if (!blob) { |
| 332 | ret = -ENOMEM; |
| 333 | goto e_free; |
| 334 | } |
| 335 | |
| 336 | data->address = __psp_pa(blob); |
| 337 | data->len = input.length; |
| 338 | |
| 339 | cmd: |
| 340 | if (psp_master->sev_state == SEV_STATE_UNINIT) { |
| 341 | ret = __sev_platform_init_locked(&argp->error); |
| 342 | if (ret) |
| 343 | goto e_free_blob; |
| 344 | } |
| 345 | |
| 346 | ret = __sev_do_cmd_locked(SEV_CMD_PEK_CSR, data, &argp->error); |
| 347 | |
| 348 | /* If we query the CSR length, FW responded with expected data. */ |
| 349 | input.length = data->len; |
| 350 | |
| 351 | if (copy_to_user((void __user *)argp->data, &input, sizeof(input))) { |
| 352 | ret = -EFAULT; |
| 353 | goto e_free_blob; |
| 354 | } |
| 355 | |
| 356 | if (blob) { |
| 357 | if (copy_to_user((void __user *)input.address, blob, input.length)) |
| 358 | ret = -EFAULT; |
| 359 | } |
| 360 | |
| 361 | e_free_blob: |
| 362 | kfree(blob); |
| 363 | e_free: |
| 364 | kfree(data); |
| 365 | return ret; |
| 366 | } |
| 367 | |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 368 | static long sev_ioctl(struct file *file, unsigned int ioctl, unsigned long arg) |
| 369 | { |
Brijesh Singh | 2960f9a | 2017-12-04 10:57:29 -0600 | [diff] [blame] | 370 | void __user *argp = (void __user *)arg; |
| 371 | struct sev_issue_cmd input; |
| 372 | int ret = -EFAULT; |
| 373 | |
| 374 | if (!psp_master) |
| 375 | return -ENODEV; |
| 376 | |
| 377 | if (ioctl != SEV_ISSUE_CMD) |
| 378 | return -EINVAL; |
| 379 | |
| 380 | if (copy_from_user(&input, argp, sizeof(struct sev_issue_cmd))) |
| 381 | return -EFAULT; |
| 382 | |
| 383 | if (input.cmd > SEV_MAX) |
| 384 | return -EINVAL; |
| 385 | |
| 386 | mutex_lock(&sev_cmd_mutex); |
| 387 | |
| 388 | switch (input.cmd) { |
| 389 | |
| 390 | case SEV_FACTORY_RESET: |
| 391 | ret = sev_ioctl_do_reset(&input); |
| 392 | break; |
Brijesh Singh | efe1829 | 2017-12-04 10:57:29 -0600 | [diff] [blame] | 393 | case SEV_PLATFORM_STATUS: |
| 394 | ret = sev_ioctl_do_platform_status(&input); |
| 395 | break; |
Brijesh Singh | 4d84b72 | 2017-12-04 10:57:30 -0600 | [diff] [blame] | 396 | case SEV_PEK_GEN: |
| 397 | ret = sev_ioctl_do_pek_pdh_gen(SEV_CMD_PEK_GEN, &input); |
| 398 | break; |
Brijesh Singh | 77f6532 | 2017-12-04 10:57:30 -0600 | [diff] [blame] | 399 | case SEV_PDH_GEN: |
| 400 | ret = sev_ioctl_do_pek_pdh_gen(SEV_CMD_PDH_GEN, &input); |
| 401 | break; |
Brijesh Singh | e799035 | 2017-12-04 10:57:31 -0600 | [diff] [blame^] | 402 | case SEV_PEK_CSR: |
| 403 | ret = sev_ioctl_do_pek_csr(&input); |
| 404 | break; |
Brijesh Singh | 2960f9a | 2017-12-04 10:57:29 -0600 | [diff] [blame] | 405 | default: |
| 406 | ret = -EINVAL; |
| 407 | goto out; |
| 408 | } |
| 409 | |
| 410 | if (copy_to_user(argp, &input, sizeof(struct sev_issue_cmd))) |
| 411 | ret = -EFAULT; |
| 412 | out: |
| 413 | mutex_unlock(&sev_cmd_mutex); |
| 414 | |
| 415 | return ret; |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | static const struct file_operations sev_fops = { |
| 419 | .owner = THIS_MODULE, |
| 420 | .unlocked_ioctl = sev_ioctl, |
| 421 | }; |
| 422 | |
| 423 | int sev_platform_status(struct sev_user_data_status *data, int *error) |
| 424 | { |
| 425 | return sev_do_cmd(SEV_CMD_PLATFORM_STATUS, data, error); |
| 426 | } |
| 427 | EXPORT_SYMBOL_GPL(sev_platform_status); |
| 428 | |
| 429 | int sev_guest_deactivate(struct sev_data_deactivate *data, int *error) |
| 430 | { |
| 431 | return sev_do_cmd(SEV_CMD_DEACTIVATE, data, error); |
| 432 | } |
| 433 | EXPORT_SYMBOL_GPL(sev_guest_deactivate); |
| 434 | |
| 435 | int sev_guest_activate(struct sev_data_activate *data, int *error) |
| 436 | { |
| 437 | return sev_do_cmd(SEV_CMD_ACTIVATE, data, error); |
| 438 | } |
| 439 | EXPORT_SYMBOL_GPL(sev_guest_activate); |
| 440 | |
| 441 | int sev_guest_decommission(struct sev_data_decommission *data, int *error) |
| 442 | { |
| 443 | return sev_do_cmd(SEV_CMD_DECOMMISSION, data, error); |
| 444 | } |
| 445 | EXPORT_SYMBOL_GPL(sev_guest_decommission); |
| 446 | |
| 447 | int sev_guest_df_flush(int *error) |
| 448 | { |
| 449 | return sev_do_cmd(SEV_CMD_DF_FLUSH, 0, error); |
| 450 | } |
| 451 | EXPORT_SYMBOL_GPL(sev_guest_df_flush); |
| 452 | |
| 453 | static void sev_exit(struct kref *ref) |
| 454 | { |
| 455 | struct sev_misc_dev *misc_dev = container_of(ref, struct sev_misc_dev, refcount); |
| 456 | |
| 457 | misc_deregister(&misc_dev->misc); |
| 458 | } |
| 459 | |
| 460 | static int sev_misc_init(struct psp_device *psp) |
| 461 | { |
| 462 | struct device *dev = psp->dev; |
| 463 | int ret; |
| 464 | |
| 465 | /* |
| 466 | * SEV feature support can be detected on multiple devices but the SEV |
| 467 | * FW commands must be issued on the master. During probe, we do not |
| 468 | * know the master hence we create /dev/sev on the first device probe. |
| 469 | * sev_do_cmd() finds the right master device to which to issue the |
| 470 | * command to the firmware. |
| 471 | */ |
| 472 | if (!misc_dev) { |
| 473 | struct miscdevice *misc; |
| 474 | |
| 475 | misc_dev = devm_kzalloc(dev, sizeof(*misc_dev), GFP_KERNEL); |
| 476 | if (!misc_dev) |
| 477 | return -ENOMEM; |
| 478 | |
| 479 | misc = &misc_dev->misc; |
| 480 | misc->minor = MISC_DYNAMIC_MINOR; |
| 481 | misc->name = DEVICE_NAME; |
| 482 | misc->fops = &sev_fops; |
| 483 | |
| 484 | ret = misc_register(misc); |
| 485 | if (ret) |
| 486 | return ret; |
| 487 | |
| 488 | kref_init(&misc_dev->refcount); |
| 489 | } else { |
| 490 | kref_get(&misc_dev->refcount); |
| 491 | } |
| 492 | |
| 493 | init_waitqueue_head(&psp->sev_int_queue); |
| 494 | psp->sev_misc = misc_dev; |
| 495 | dev_dbg(dev, "registered SEV device\n"); |
| 496 | |
| 497 | return 0; |
| 498 | } |
| 499 | |
| 500 | static int sev_init(struct psp_device *psp) |
| 501 | { |
| 502 | /* Check if device supports SEV feature */ |
| 503 | if (!(ioread32(psp->io_regs + PSP_FEATURE_REG) & 1)) { |
| 504 | dev_dbg(psp->dev, "device does not support SEV\n"); |
| 505 | return 1; |
| 506 | } |
| 507 | |
| 508 | return sev_misc_init(psp); |
| 509 | } |
| 510 | |
Brijesh Singh | 2a6170d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 511 | int psp_dev_init(struct sp_device *sp) |
| 512 | { |
| 513 | struct device *dev = sp->dev; |
| 514 | struct psp_device *psp; |
| 515 | int ret; |
| 516 | |
| 517 | ret = -ENOMEM; |
| 518 | psp = psp_alloc_struct(sp); |
| 519 | if (!psp) |
| 520 | goto e_err; |
| 521 | |
| 522 | sp->psp_data = psp; |
| 523 | |
| 524 | psp->vdata = (struct psp_vdata *)sp->dev_vdata->psp_vdata; |
| 525 | if (!psp->vdata) { |
| 526 | ret = -ENODEV; |
| 527 | dev_err(dev, "missing driver data\n"); |
| 528 | goto e_err; |
| 529 | } |
| 530 | |
| 531 | psp->io_regs = sp->io_map + psp->vdata->offset; |
| 532 | |
| 533 | /* Disable and clear interrupts until ready */ |
| 534 | iowrite32(0, psp->io_regs + PSP_P2CMSG_INTEN); |
| 535 | iowrite32(-1, psp->io_regs + PSP_P2CMSG_INTSTS); |
| 536 | |
| 537 | /* Request an irq */ |
| 538 | ret = sp_request_psp_irq(psp->sp, psp_irq_handler, psp->name, psp); |
| 539 | if (ret) { |
| 540 | dev_err(dev, "psp: unable to allocate an IRQ\n"); |
| 541 | goto e_err; |
| 542 | } |
| 543 | |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 544 | ret = sev_init(psp); |
| 545 | if (ret) |
| 546 | goto e_irq; |
| 547 | |
Brijesh Singh | 2a6170d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 548 | if (sp->set_psp_master_device) |
| 549 | sp->set_psp_master_device(sp); |
| 550 | |
| 551 | /* Enable interrupt */ |
| 552 | iowrite32(-1, psp->io_regs + PSP_P2CMSG_INTEN); |
| 553 | |
| 554 | return 0; |
| 555 | |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 556 | e_irq: |
| 557 | sp_free_psp_irq(psp->sp, psp); |
Brijesh Singh | 2a6170d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 558 | e_err: |
| 559 | sp->psp_data = NULL; |
| 560 | |
| 561 | dev_notice(dev, "psp initialization failed\n"); |
| 562 | |
| 563 | return ret; |
| 564 | } |
| 565 | |
| 566 | void psp_dev_destroy(struct sp_device *sp) |
| 567 | { |
| 568 | struct psp_device *psp = sp->psp_data; |
| 569 | |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 570 | if (psp->sev_misc) |
| 571 | kref_put(&misc_dev->refcount, sev_exit); |
| 572 | |
Brijesh Singh | 2a6170d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 573 | sp_free_psp_irq(sp, psp); |
| 574 | } |
Brijesh Singh | 200664d | 2017-12-04 10:57:28 -0600 | [diff] [blame] | 575 | |
| 576 | int sev_issue_cmd_external_user(struct file *filep, unsigned int cmd, |
| 577 | void *data, int *error) |
| 578 | { |
| 579 | if (!filep || filep->f_op != &sev_fops) |
| 580 | return -EBADF; |
| 581 | |
| 582 | return sev_do_cmd(cmd, data, error); |
| 583 | } |
| 584 | EXPORT_SYMBOL_GPL(sev_issue_cmd_external_user); |
| 585 | |
| 586 | void psp_pci_init(void) |
| 587 | { |
| 588 | struct sev_user_data_status *status; |
| 589 | struct sp_device *sp; |
| 590 | int error, rc; |
| 591 | |
| 592 | sp = sp_get_psp_master_device(); |
| 593 | if (!sp) |
| 594 | return; |
| 595 | |
| 596 | psp_master = sp->psp_data; |
| 597 | |
| 598 | /* Initialize the platform */ |
| 599 | rc = sev_platform_init(&error); |
| 600 | if (rc) { |
| 601 | dev_err(sp->dev, "SEV: failed to INIT error %#x\n", error); |
| 602 | goto err; |
| 603 | } |
| 604 | |
| 605 | /* Display SEV firmware version */ |
| 606 | status = &psp_master->status_cmd_buf; |
| 607 | rc = sev_platform_status(status, &error); |
| 608 | if (rc) { |
| 609 | dev_err(sp->dev, "SEV: failed to get status error %#x\n", error); |
| 610 | goto err; |
| 611 | } |
| 612 | |
| 613 | dev_info(sp->dev, "SEV API:%d.%d build:%d\n", status->api_major, |
| 614 | status->api_minor, status->build); |
| 615 | return; |
| 616 | |
| 617 | err: |
| 618 | psp_master = NULL; |
| 619 | } |
| 620 | |
| 621 | void psp_pci_exit(void) |
| 622 | { |
| 623 | if (!psp_master) |
| 624 | return; |
| 625 | |
| 626 | sev_platform_shutdown(NULL); |
| 627 | } |