/* $OpenBSD: maci2c.c,v 1.9 2006/02/14 20:54:45 kettenis Exp $ */ /* * Copyright (c) 2005 Mark Kettenis * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #define _I2C_PRIVATE #include #include #include void maciic_scan(struct device *self, struct i2cbus_attach_args *iba, void *aux) { int iba_node = *(int *)aux; struct i2c_attach_args ia; char name[32]; u_int32_t reg; int node; for (node = OF_child(iba_node); node; node = OF_peer(node)) { if (OF_getprop(node, "reg", ®, sizeof reg) != sizeof reg && OF_getprop(node, "i2c-address", ®, sizeof reg) != sizeof reg) continue; memset(&ia, 0, sizeof ia); ia.ia_tag = iba->iba_tag; ia.ia_addr = (reg >> 1); memset(name, 0, sizeof name); if (OF_getprop(node, "compatible", &name, sizeof name) && name[0]) ia.ia_name = name; if (ia.ia_name == NULL && OF_getprop(node, "name", &name, sizeof name) && name[0]) { if (strcmp(name, "cereal") == 0) continue; ia.ia_name = name; } /* XXX We should write a real driver for these instead of reaching over from the sound driver that sits on the i2s port. For now hide them. */ if (strcmp(name, "deq") == 0 || strcmp(name, "tas3004") == 0) continue; if (ia.ia_name) config_found(self, &ia, iic_print); } }