#ifndef _CFGA_USB_H
#define _CFGA_USB_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#include <strings.h>
#include <fcntl.h>
#include <ctype.h>
#include <unistd.h>
#include <libintl.h>
#include <libdevice.h>
#include <sys/varargs.h>
#include <sys/usb/usba.h>
#include <sys/usb/hubd/hub.h>
#include <sys/usb/hubd/hubd_impl.h>
#include <libdevinfo.h>
#include <libdevice.h>
#include <librcm.h>
#include <synch.h>
#include <thread.h>
#include <assert.h>
#define CFGA_PLUGIN_LIB
#include <config_admin.h>
#ifdef DEBUG
#define DPRINTF (void) printf
#else
#define DPRINTF 0 &&
#endif
typedef struct walk_link {
char *path;
char len;
char **linkpp;
} walk_link_t;
typedef enum {
UCFGA_TERMINATE = 0,
UCFGA_CONTINUE
} ucfga_recur_t;
typedef struct {
char *phys;
char *log;
int ret;
int match_minor;
int l_errno;
} pathm_t;
#define MATCH_MINOR_NAME 1
#define S_FREE(x) (((x) != NULL) ? (free(x), (x) = NULL) : (void *)0)
#define GET_DYN(a) (((a) != NULL) ? strstr((a), DYN_SEP) : (void *)0)
#define USBCONF_FILE "/etc/usb/config_map.conf"
#define OPT_DISABLE_RCM "disable_rcm"
#define FLAG_DISABLE_RCM 0x00000001
typedef enum {
UCFGA_ERR = -2,
UCFGA_LIB_ERR,
UCFGA_OK,
UCFGA_BUSY,
UCFGA_NO_REC
} ucfga_ret_t;
typedef struct {
int intl;
cfga_err_t cfga_err;
const char *msgstr;
} msgcvt_t;
#define NO_CVT 0
#define CVT 1
#define MSG_TBL_SZ(table) (sizeof ((table)) / sizeof (msgcvt_t))
typedef enum {
CFGA_USB_OK = 0,
CFGA_USB_UNKNOWN,
CFGA_USB_INTERNAL_ERROR,
CFGA_USB_OPTIONS,
CFGA_USB_DYNAMIC_AP,
CFGA_USB_AP,
CFGA_USB_PORT,
CFGA_USB_DEVCTL,
CFGA_USB_NOT_CONNECTED,
CFGA_USB_NOT_CONFIGURED,
CFGA_USB_ALREADY_CONNECTED,
CFGA_USB_ALREADY_CONFIGURED,
CFGA_USB_OPEN,
CFGA_USB_IOCTL,
CFGA_USB_BUSY,
CFGA_USB_ALLOC_FAIL,
CFGA_USB_OPNOTSUPP,
CFGA_USB_DEVLINK,
CFGA_USB_STATE,
CFGA_USB_CONFIG_INVAL,
CFGA_USB_PRIV,
CFGA_USB_NVLIST,
CFGA_USB_ZEROLEN,
CFGA_USB_CONFIG_FILE,
CFGA_USB_LOCK_FILE,
CFGA_USB_UNLOCK_FILE,
CFGA_USB_ONE_CONFIG,
CFGA_USB_RCM_HANDLE,
CFGA_USB_RCM_ONLINE,
CFGA_USB_RCM_OFFLINE,
CFGA_USB_RCM_INFO
} cfga_usb_ret_t;
#define ERR_STR(msg_idx) \
(get_msg((msg_idx), usb_error_msgs, MSG_TBL_SZ(usb_error_msgs)))
#define CFGA_DEV_DIR "/dev/cfg"
#define DYN_SEP "::"
#define MINOR_SEP ":"
#define PORT "port"
#define PORT_SEPERATOR "."
#define USB "usb"
#define USB_CFGADM_DEFAULT_AP_TYPE "unknown"
#define USB_UNDEF_STR "<undef>"
#define USB_NO_CFG_STR "<no cfg str descr>"
#define RESET_DEVICE "usb_reset"
#define USB_CONFIG "usb_config"
#define SET_CONFIG "config="
#define SET_DRIVER "drv="
#define USB_CONFIRM_0 "the device: "
#define USB_CONFIRM_1 \
"This operation will suspend activity on the USB device\nContinue"
extern int add_entry(char *, int, int, int, char *, char *, char *,
char **);
extern cfga_usb_ret_t do_control_ioctl(const char *, uint_t, uint_t,
void **, size_t *);
#ifdef __cplusplus
}
#endif
#endif