1/* $NetBSD: cpuio.h,v 1.5 2015/09/06 06:00:59 dholland Exp $ */
2
3#include <sys/ioccom.h>
4
5struct compat6_cpu_ucode {
6 uint64_t version;
7 char fwname[PATH_MAX];
8};
9
10#define OIOC_CPU_UCODE_GET_VERSION _IOR('c', 4, struct compat6_cpu_ucode)
11#define OIOC_CPU_UCODE_APPLY _IOW('c', 5, struct compat6_cpu_ucode)
12