qemu/hw/misc/xlnx-cfi-if.c
<<
>>
Prefs
   1/*
   2 * Xilinx CFI interface
   3 *
   4 * Copyright (c) 2022 Xilinx Inc.
   5 *
   6 * Written by Francisco Iglesias <francisco.iglesias@xilinx.com>
   7 *
   8 * Permission is hereby granted, free of charge, to any person obtaining a copy
   9 * of this software and associated documentation files (the "Software"), to deal
  10 * in the Software without restriction, including without limitation the rights
  11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12 * copies of the Software, and to permit persons to whom the Software is
  13 * furnished to do so, subject to the following conditions:
  14 *
  15 * The above copyright notice and this permission notice shall be included in
  16 * all copies or substantial portions of the Software.
  17 *
  18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24 * THE SOFTWARE.
  25 */
  26#include "qemu/osdep.h"
  27#include "hw/misc/xlnx-cfi-if.h"
  28
  29void xlnx_cfi_transfer_packet(XlnxCfiIf *cfi_if, XlnxCfiPacket *pkt)
  30{
  31    XlnxCfiIfClass *xcic = XLNX_CFI_IF_GET_CLASS(cfi_if);
  32
  33    if (xcic->cfi_transfer_packet) {
  34        xcic->cfi_transfer_packet(cfi_if, pkt);
  35    }
  36}
  37
  38static const TypeInfo xlnx_cfi_if_info = {
  39    .name          = TYPE_XLNX_CFI_IF,
  40    .parent        = TYPE_INTERFACE,
  41    .class_size = sizeof(XlnxCfiIfClass),
  42};
  43
  44static void xlnx_cfi_if_register_types(void)
  45{
  46    type_register_static(&xlnx_cfi_if_info);
  47}
  48
  49type_init(xlnx_cfi_if_register_types)
  50
  51