HILBASE
hil_dev.dev->name, kbid, HILBASE, HIL_IRQ);
if (!hwreg_present((void *)(HILBASE + HIL_DATA))) {
if (!request_region(HILBASE + HIL_DATA, 2, "hil")) {
release_region(HILBASE + HIL_DATA, 2);
release_region(HILBASE + HIL_DATA, 2);
#define hil_busy() (hil_readb(HILBASE + HIL_CMD) & HIL_BUSY)
#define hil_data_available() (hil_readb(HILBASE + HIL_CMD) & HIL_DATA_RDY)
#define hil_status() (hil_readb(HILBASE + HIL_CMD))
#define hil_command(x) do { hil_writeb((x), HILBASE + HIL_CMD); } while (0)
#define hil_read_data() (hil_readb(HILBASE + HIL_DATA))
#define hil_write_data(x) do { hil_writeb((x), HILBASE + HIL_DATA); } while (0)