From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhzU6-0003sx-MK for qemu-devel@nongnu.org; Thu, 30 May 2013 05:49:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UhzTz-0003Yr-JJ for qemu-devel@nongnu.org; Thu, 30 May 2013 05:49:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:11693) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhzTz-0003YW-98 for qemu-devel@nongnu.org; Thu, 30 May 2013 05:49:19 -0400 Date: Thu, 30 May 2013 12:30:25 +0300 From: "Michael S. Tsirkin" Message-ID: <1369906048-22212-3-git-send-email-mst@redhat.com> References: <1369906048-22212-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1369906048-22212-1-git-send-email-mst@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 2/2] firmware_abi: move to include/hw/nvram/ List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , =?us-ascii?B?PT9VVEYtOD9xP0FuZHJlYXM9MjBGPUMzPUE0cmJlcj89?= firmware_abi.h with structs for OpenBIOS landed in hw/sparc/ by mistake - move it to hw/nvram/ alongside fw_cfg.h. In addition to sparc it's included from ppc mac_nvram.c and will need to include it from prep.c in the future. Cc: Andreas F=E4rber Signed-off-by: Michael S. Tsirkin --- hw/sparc/sun4m.c | 2 +- hw/sparc64/sun4u.c | 2 +- include/hw/nvram/openbios_firmware_abi.h | 73 ++++++++++++++++++++++++++= ++++++ include/hw/sparc/firmware_abi.h | 73 --------------------------= ------ 4 files changed, 75 insertions(+), 75 deletions(-) create mode 100644 include/hw/nvram/openbios_firmware_abi.h delete mode 100644 include/hw/sparc/firmware_abi.h diff --git a/hw/sparc/sun4m.c b/hw/sparc/sun4m.c index 8840881..6e62d17 100644 --- a/hw/sparc/sun4m.c +++ b/hw/sparc/sun4m.c @@ -30,7 +30,7 @@ #include "sysemu/sysemu.h" #include "net/net.h" #include "hw/boards.h" -#include "hw/sparc/firmware_abi.h" +#include "hw/nvram/openbios_firmware_abi.h" #include "hw/scsi/esp.h" #include "hw/i386/pc.h" #include "hw/isa/isa.h" diff --git a/hw/sparc64/sun4u.c b/hw/sparc64/sun4u.c index 5c2bbd4..13672de 100644 --- a/hw/sparc64/sun4u.c +++ b/hw/sparc64/sun4u.c @@ -32,7 +32,7 @@ #include "qemu/timer.h" #include "sysemu/sysemu.h" #include "hw/boards.h" -#include "hw/sparc/firmware_abi.h" +#include "hw/nvram/openbios_firmware_abi.h" #include "hw/nvram/fw_cfg.h" #include "hw/sysbus.h" #include "hw/ide.h" diff --git a/include/hw/nvram/openbios_firmware_abi.h b/include/hw/nvram/= openbios_firmware_abi.h new file mode 100644 index 0000000..5e6e5d4 --- /dev/null +++ b/include/hw/nvram/openbios_firmware_abi.h @@ -0,0 +1,73 @@ +#ifndef FIRMWARE_ABI_H +#define FIRMWARE_ABI_H + +/* OpenBIOS NVRAM partition */ +struct OpenBIOS_nvpart_v1 { + uint8_t signature; + uint8_t checksum; + uint16_t len; // BE, length divided by 16 + char name[12]; +}; + +#define OPENBIOS_PART_SYSTEM 0x70 +#define OPENBIOS_PART_FREE 0x7f + +static inline void +OpenBIOS_finish_partition(struct OpenBIOS_nvpart_v1 *header, uint32_t si= ze) +{ + unsigned int i, sum; + uint8_t *tmpptr; + + // Length divided by 16 + header->len =3D cpu_to_be16(size >> 4); + + // Checksum + tmpptr =3D (uint8_t *)header; + sum =3D *tmpptr; + for (i =3D 0; i < 14; i++) { + sum +=3D tmpptr[2 + i]; + sum =3D (sum + ((sum & 0xff00) >> 8)) & 0xff; + } + header->checksum =3D sum & 0xff; +} + +static inline uint32_t +OpenBIOS_set_var(uint8_t *nvram, uint32_t addr, const char *str) +{ + uint32_t len; + + len =3D strlen(str) + 1; + memcpy(&nvram[addr], str, len); + + return addr + len; +} + +/* Sun IDPROM structure at the end of NVRAM */ +/* from http://www.squirrel.com/squirrel/sun-nvram-hostid.faq.html */ +struct Sun_nvram { + uint8_t type; /* always 01 */ + uint8_t machine_id; /* first byte of host id (machine type) */ + uint8_t macaddr[6]; /* 6 byte ethernet address (first 3 bytes 08, 00= , 20) */ + uint8_t date[4]; /* date of manufacture */ + uint8_t hostid[3]; /* remaining 3 bytes of host id (serial number) = */ + uint8_t checksum; /* bitwise xor of previous bytes */ +}; + +static inline void +Sun_init_header(struct Sun_nvram *header, const uint8_t *macaddr, int ma= chine_id) +{ + uint8_t tmp, *tmpptr; + unsigned int i; + + header->type =3D 1; + header->machine_id =3D machine_id & 0xff; + memcpy(&header->macaddr, macaddr, 6); + /* Calculate checksum */ + tmp =3D 0; + tmpptr =3D (uint8_t *)header; + for (i =3D 0; i < 15; i++) + tmp ^=3D tmpptr[i]; + + header->checksum =3D tmp; +} +#endif /* FIRMWARE_ABI_H */ diff --git a/include/hw/sparc/firmware_abi.h b/include/hw/sparc/firmware_= abi.h deleted file mode 100644 index 5e6e5d4..0000000 --- a/include/hw/sparc/firmware_abi.h +++ /dev/null @@ -1,73 +0,0 @@ -#ifndef FIRMWARE_ABI_H -#define FIRMWARE_ABI_H - -/* OpenBIOS NVRAM partition */ -struct OpenBIOS_nvpart_v1 { - uint8_t signature; - uint8_t checksum; - uint16_t len; // BE, length divided by 16 - char name[12]; -}; - -#define OPENBIOS_PART_SYSTEM 0x70 -#define OPENBIOS_PART_FREE 0x7f - -static inline void -OpenBIOS_finish_partition(struct OpenBIOS_nvpart_v1 *header, uint32_t si= ze) -{ - unsigned int i, sum; - uint8_t *tmpptr; - - // Length divided by 16 - header->len =3D cpu_to_be16(size >> 4); - - // Checksum - tmpptr =3D (uint8_t *)header; - sum =3D *tmpptr; - for (i =3D 0; i < 14; i++) { - sum +=3D tmpptr[2 + i]; - sum =3D (sum + ((sum & 0xff00) >> 8)) & 0xff; - } - header->checksum =3D sum & 0xff; -} - -static inline uint32_t -OpenBIOS_set_var(uint8_t *nvram, uint32_t addr, const char *str) -{ - uint32_t len; - - len =3D strlen(str) + 1; - memcpy(&nvram[addr], str, len); - - return addr + len; -} - -/* Sun IDPROM structure at the end of NVRAM */ -/* from http://www.squirrel.com/squirrel/sun-nvram-hostid.faq.html */ -struct Sun_nvram { - uint8_t type; /* always 01 */ - uint8_t machine_id; /* first byte of host id (machine type) */ - uint8_t macaddr[6]; /* 6 byte ethernet address (first 3 bytes 08, 00= , 20) */ - uint8_t date[4]; /* date of manufacture */ - uint8_t hostid[3]; /* remaining 3 bytes of host id (serial number) = */ - uint8_t checksum; /* bitwise xor of previous bytes */ -}; - -static inline void -Sun_init_header(struct Sun_nvram *header, const uint8_t *macaddr, int ma= chine_id) -{ - uint8_t tmp, *tmpptr; - unsigned int i; - - header->type =3D 1; - header->machine_id =3D machine_id & 0xff; - memcpy(&header->macaddr, macaddr, 6); - /* Calculate checksum */ - tmp =3D 0; - tmpptr =3D (uint8_t *)header; - for (i =3D 0; i < 15; i++) - tmp ^=3D tmpptr[i]; - - header->checksum =3D tmp; -} -#endif /* FIRMWARE_ABI_H */ --=20 MST