summaryrefslogtreecommitdiff
path: root/drivers/misc/qfw_pio.c
blob: e2f628d33830660d709d4568056455a61603274b (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
// SPDX-License-Identifier: GPL-2.0+
/*
 * PIO interface for QFW
 *
 * (C) Copyright 2015 Miao Yan <yanmiaobest@gmail.com>
 * (C) Copyright 2021 Asherah Connor <ashe@kivikakk.ee>
 */

#define LOG_CATEGORY UCLASS_QFW

#include <asm/io.h>
#include <dm/device.h>
#include <qfw.h>

/*
 * PIO ports are correct for x86, which appears to be the only arch that uses
 * PIO.
 */
#define FW_CONTROL_PORT      0x510
#define FW_DATA_PORT         0x511
#define FW_DMA_PORT_LOW      0x514
#define FW_DMA_PORT_HIGH     0x518

static void qfw_pio_read_entry_io(struct udevice *dev, u16 entry, u32 size,
				  void *address)
{
	/*
	 * writing FW_CFG_INVALID will cause read operation to resume at last
	 * offset, otherwise read will start at offset 0
	 *
	 * Note: on platform where the control register is IO port, the
	 * endianness is little endian.
	 */
	if (entry != FW_CFG_INVALID)
		outw(cpu_to_le16(entry), FW_CONTROL_PORT);

	/* the endianness of data register is string-preserving */
	u32 i = 0;
	u8 *data = address;

	while (size--)
		data[i++] = inb(FW_DATA_PORT);
}

/* Read configuration item using fw_cfg DMA interface */
static void qfw_pio_read_entry_dma(struct udevice *dev, struct qfw_dma *dma)
{
	/* the DMA address register is big-endian */
	outl(cpu_to_be32((uintptr_t)dma), FW_DMA_PORT_HIGH);

	while (be32_to_cpu(dma->control) & ~FW_CFG_DMA_ERROR);
}

static int qfw_pio_probe(struct udevice *dev)
{
	return qfw_register(dev);
}

static struct dm_qfw_ops qfw_pio_ops = {
	.read_entry_io = qfw_pio_read_entry_io,
	.read_entry_dma = qfw_pio_read_entry_dma,
};

U_BOOT_DRIVER(qfw_pio) = {
	.name	= "qfw_pio",
	.id	= UCLASS_QFW,
	.probe	= qfw_pio_probe,
	.ops	= &qfw_pio_ops,
};