| 
									
										
										
										
											2013-04-16 09:45:17 -05:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * libqos fw_cfg support | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright IBM, Corp. 2012-2013 | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  |  * Copyright (C) 2013 Red Hat Inc. | 
					
						
							| 
									
										
										
										
											2013-04-16 09:45:17 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Authors: | 
					
						
							|  |  |  |  *  Anthony Liguori   <aliguori@us.ibm.com> | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  |  *  Markus Armbruster <armbru@redhat.com> | 
					
						
							| 
									
										
										
										
											2013-04-16 09:45:17 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This work is licensed under the terms of the GNU GPL, version 2 or later. | 
					
						
							|  |  |  |  * See the COPYING file in the top-level directory. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-08 18:08:51 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2020-08-04 20:00:40 +02:00
										 |  |  | #include "fw_cfg.h"
 | 
					
						
							| 
									
										
										
										
											2022-03-30 13:39:05 +04:00
										 |  |  | #include "../libqtest.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-28 18:45:47 +02:00
										 |  |  | #include "qemu/bswap.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-24 07:06:40 -07:00
										 |  |  | #include "hw/nvram/fw_cfg.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-16 09:45:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | void qfw_cfg_select(QFWCFG *fw_cfg, uint16_t key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     fw_cfg->select(fw_cfg, key); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void qfw_cfg_read_data(QFWCFG *fw_cfg, void *data, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     fw_cfg->read(fw_cfg, data, len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void qfw_cfg_get(QFWCFG *fw_cfg, uint16_t key, void *data, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qfw_cfg_select(fw_cfg, key); | 
					
						
							|  |  |  |     qfw_cfg_read_data(fw_cfg, data, len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint16_t qfw_cfg_get_u16(QFWCFG *fw_cfg, uint16_t key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint16_t value; | 
					
						
							|  |  |  |     qfw_cfg_get(fw_cfg, key, &value, sizeof(value)); | 
					
						
							| 
									
										
										
										
											2013-04-28 18:45:47 +02:00
										 |  |  |     return le16_to_cpu(value); | 
					
						
							| 
									
										
										
										
											2013-04-16 09:45:17 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint32_t qfw_cfg_get_u32(QFWCFG *fw_cfg, uint16_t key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t value; | 
					
						
							|  |  |  |     qfw_cfg_get(fw_cfg, key, &value, sizeof(value)); | 
					
						
							| 
									
										
										
										
											2013-04-28 18:45:47 +02:00
										 |  |  |     return le32_to_cpu(value); | 
					
						
							| 
									
										
										
										
											2013-04-16 09:45:17 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint64_t qfw_cfg_get_u64(QFWCFG *fw_cfg, uint16_t key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t value; | 
					
						
							|  |  |  |     qfw_cfg_get(fw_cfg, key, &value, sizeof(value)); | 
					
						
							| 
									
										
										
										
											2013-04-28 18:45:47 +02:00
										 |  |  |     return le64_to_cpu(value); | 
					
						
							| 
									
										
										
										
											2013-04-16 09:45:17 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  | static void mm_fw_cfg_select(QFWCFG *fw_cfg, uint16_t key) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  |     qtest_writew(fw_cfg->qts, fw_cfg->base, key); | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-24 07:06:40 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * The caller need check the return value. When the return value is | 
					
						
							|  |  |  |  * nonzero, it means that some bytes have been transferred. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * If the fw_cfg file in question is smaller than the allocated & passed-in | 
					
						
							|  |  |  |  * buffer, then the buffer has been populated only in part. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * If the fw_cfg file in question is larger than the passed-in | 
					
						
							|  |  |  |  * buffer, then the return value explains how much room would have been | 
					
						
							|  |  |  |  * necessary in total. And, while the caller's buffer has been fully | 
					
						
							|  |  |  |  * populated, it has received only a starting slice of the fw_cfg file. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | size_t qfw_cfg_get_file(QFWCFG *fw_cfg, const char *filename, | 
					
						
							|  |  |  |                       void *data, size_t buflen) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t count; | 
					
						
							|  |  |  |     uint32_t i; | 
					
						
							|  |  |  |     unsigned char *filesbuf = NULL; | 
					
						
							|  |  |  |     size_t dsize; | 
					
						
							|  |  |  |     FWCfgFile *pdir_entry; | 
					
						
							|  |  |  |     size_t filesize = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qfw_cfg_get(fw_cfg, FW_CFG_FILE_DIR, &count, sizeof(count)); | 
					
						
							|  |  |  |     count = be32_to_cpu(count); | 
					
						
							|  |  |  |     dsize = sizeof(uint32_t) + count * sizeof(struct fw_cfg_file); | 
					
						
							|  |  |  |     filesbuf = g_malloc(dsize); | 
					
						
							|  |  |  |     qfw_cfg_get(fw_cfg, FW_CFG_FILE_DIR, filesbuf, dsize); | 
					
						
							|  |  |  |     pdir_entry = (FWCfgFile *)(filesbuf + sizeof(uint32_t)); | 
					
						
							|  |  |  |     for (i = 0; i < count; ++i, ++pdir_entry) { | 
					
						
							|  |  |  |         if (!strcmp(pdir_entry->name, filename)) { | 
					
						
							|  |  |  |             uint32_t len = be32_to_cpu(pdir_entry->size); | 
					
						
							|  |  |  |             uint16_t sel = be16_to_cpu(pdir_entry->select); | 
					
						
							|  |  |  |             filesize = len; | 
					
						
							|  |  |  |             if (len > buflen) { | 
					
						
							|  |  |  |                 len = buflen; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             qfw_cfg_get(fw_cfg, sel, data, len); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     g_free(filesbuf); | 
					
						
							|  |  |  |     return filesize; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  | static void mm_fw_cfg_read(QFWCFG *fw_cfg, void *data, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint8_t *ptr = data; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  |         ptr[i] = qtest_readb(fw_cfg->qts, fw_cfg->base + 2); | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  | QFWCFG *mm_fw_cfg_init(QTestState *qts, uint64_t base) | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QFWCFG *fw_cfg = g_malloc0(sizeof(*fw_cfg)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fw_cfg->base = base; | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  |     fw_cfg->qts = qts; | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:15 +02:00
										 |  |  |     fw_cfg->select = mm_fw_cfg_select; | 
					
						
							|  |  |  |     fw_cfg->read = mm_fw_cfg_read; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return fw_cfg; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-22 11:57:30 +02:00
										 |  |  | void mm_fw_cfg_uninit(QFWCFG *fw_cfg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     g_free(fw_cfg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:22 +02:00
										 |  |  | static void io_fw_cfg_select(QFWCFG *fw_cfg, uint16_t key) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  |     qtest_outw(fw_cfg->qts, fw_cfg->base, key); | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void io_fw_cfg_read(QFWCFG *fw_cfg, void *data, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint8_t *ptr = data; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  |         ptr[i] = qtest_inb(fw_cfg->qts, fw_cfg->base + 1); | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:22 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  | QFWCFG *io_fw_cfg_init(QTestState *qts, uint16_t base) | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:22 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QFWCFG *fw_cfg = g_malloc0(sizeof(*fw_cfg)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fw_cfg->base = base; | 
					
						
							| 
									
										
										
										
											2017-09-11 12:19:57 -05:00
										 |  |  |     fw_cfg->qts = qts; | 
					
						
							| 
									
										
										
										
											2013-06-26 15:52:22 +02:00
										 |  |  |     fw_cfg->select = io_fw_cfg_select; | 
					
						
							|  |  |  |     fw_cfg->read = io_fw_cfg_read; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return fw_cfg; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-22 11:57:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void io_fw_cfg_uninit(QFWCFG *fw_cfg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     g_free(fw_cfg); | 
					
						
							|  |  |  | } |