aboutsummaryrefslogtreecommitdiff
path: root/pc-bios/optionrom/optrom_fw_cfg.h
blob: a3660a52006f39327ef212e1e40e952e221cb85c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * Common Option ROM Functions for fw_cfg
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 *
 * Copyright (c) 2015-2019 Red Hat Inc.
 *   Authors:
 *     Marc MarĂ­ <marc.mari.barcelo@gmail.com>
 *     Richard W.M. Jones <rjones@redhat.com>
 *     Stefano Garzarella <sgarzare@redhat.com>
 */

#ifndef OPTROM_FW_CFG_H
#define OPTROM_FW_CFG_H

#include "../../include/standard-headers/linux/qemu_fw_cfg.h"

#define BIOS_CFG_IOPORT_CFG     0x510
#define BIOS_CFG_IOPORT_DATA    0x511
#define BIOS_CFG_DMA_ADDR_HIGH  0x514
#define BIOS_CFG_DMA_ADDR_LOW   0x518

static __attribute__((unused))
void bios_cfg_select(uint16_t key)
{
    outw(key, BIOS_CFG_IOPORT_CFG);
}

static __attribute__((unused))
void bios_cfg_read_entry_io(void *buf, uint16_t entry, uint32_t len)
{
    bios_cfg_select(entry);
    insb(BIOS_CFG_IOPORT_DATA, buf, len);
}

/*
 * clang is happy to inline this function, and bloats the
 * ROM.
 */
static __attribute__((__noinline__)) __attribute__((unused))
void bios_cfg_read_entry_dma(void *buf, uint16_t entry, uint32_t len)
{
    struct fw_cfg_dma_access access;
    uint32_t control = (entry << 16) | FW_CFG_DMA_CTL_SELECT
                        | FW_CFG_DMA_CTL_READ;

    access.address = cpu_to_be64((uint64_t)(uint32_t)buf);
    access.length = cpu_to_be32(len);
    access.control = cpu_to_be32(control);

    barrier();

    outl(cpu_to_be32((uint32_t)&access), BIOS_CFG_DMA_ADDR_LOW);

    while (be32_to_cpu(access.control) & ~FW_CFG_DMA_CTL_ERROR) {
        barrier();
    }
}

static __attribute__((unused))
void bios_cfg_read_entry(void *buf, uint16_t entry, uint32_t len,
                         uint32_t version)
{
    if (version & FW_CFG_VERSION_DMA) {
        bios_cfg_read_entry_dma(buf, entry, len);
    } else {
        bios_cfg_read_entry_io(buf, entry, len);
    }
}

static __attribute__((unused))
uint32_t bios_cfg_version(void)
{
    uint32_t version;

    bios_cfg_read_entry_io(&version, FW_CFG_ID, sizeof(version));

    return version;
}

#endif /* OPTROM_FW_CFG_H */