Lines Matching defs:atopcase_softc
62 struct atopcase_softc { struct
63 device_t sc_dev;
65 ACPI_HANDLE sc_handle;
66 int sc_gpe_bit;
68 int sc_irq_rid;
69 struct resource *sc_irq_res;
70 void *sc_irq_ih;
71 volatile unsigned int sc_intr_cnt;
73 struct timeout_task sc_task;
74 struct taskqueue *sc_tq;
76 bool sc_booted;
77 bool sc_wait_for_status;
79 uint8_t sc_hid[HID_PNP_ID_SIZE];
80 uint8_t sc_vendor[80];
81 uint8_t sc_product[80];
82 uint8_t sc_serial[80];
83 uint16_t sc_vid;
84 uint16_t sc_pid;
85 uint16_t sc_ver;
92 struct sx sc_write_sx;
100 struct sx sc_sx;
101 struct mtx sc_mtx;
125 int atopcase_receive_packet(struct atopcase_softc *); argument