1 /* $OpenBSD: cbusvar.h,v 1.5 2015/01/25 21:42:13 kettenis Exp $ */ 2 /* 3 * Copyright (c) 2008 Mark Kettenis 4 * 5 * Permission to use, copy, modify, and distribute this software for any 6 * purpose with or without fee is hereby granted, provided that the above 7 * copyright notice and this permission notice appear in all copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 */ 17 18 #ifndef _SPARC64_DEV_CBUSVAR_H_ 19 #define _SPARC64_DEV_CBUSVAR_H_ 20 21 struct cbus_attach_args { 22 const char *ca_name; 23 int ca_node; 24 int ca_idx; 25 26 bus_space_tag_t ca_bustag; 27 bus_dma_tag_t ca_dmatag; 28 29 u_int32_t *ca_reg; 30 int ca_nreg; 31 32 u_int64_t ca_id; 33 u_int64_t ca_tx_ino; 34 u_int64_t ca_rx_ino; 35 }; 36 37 int cbus_print(void *, const char *); 38 int cbus_intr_setstate(bus_space_tag_t, uint64_t, uint64_t); 39 int cbus_intr_setenabled(bus_space_tag_t, uint64_t, uint64_t); 40 41 #endif 42