From owner-freebsd-ppc@FreeBSD.ORG Thu May 20 19:39:38 2010 Return-Path: Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AC2A1065670 for ; Thu, 20 May 2010 19:39:38 +0000 (UTC) (envelope-from andreast-list@fgznet.ch) Received: from smtp.fgznet.ch (mail.fgznet.ch [81.92.96.47]) by mx1.freebsd.org (Postfix) with ESMTP id 26D8A8FC0C for ; Thu, 20 May 2010 19:39:37 +0000 (UTC) Received: from deuterium.andreas.nets (dhclient-91-190-8-131.flashcable.ch [91.190.8.131]) by smtp.fgznet.ch (8.13.8/8.13.8/Submit_SMTPAUTH) with ESMTP id o4KJdYFV039523; Thu, 20 May 2010 21:39:35 +0200 (CEST) (envelope-from andreast-list@fgznet.ch) Message-ID: <4BF58FF6.4050202@fgznet.ch> Date: Thu, 20 May 2010 21:39:34 +0200 From: Andreas Tobler User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.9) Gecko/20100317 Lightning/1.0b1 Thunderbird/3.0.4 MIME-Version: 1.0 To: Rafal Jaworowski References: <4BF58342.7010707@fgznet.ch> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.64 on 81.92.96.47 Cc: FreeBSD PowerPC ML Subject: Re: iic/i2c debugging on PowerMac X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 May 2010 19:39:38 -0000 On 20.05.10 21:16, Rafal Jaworowski wrote: > > On 2010-05-20, at 20:45, Andreas Tobler wrote: > >> Hi, >> >> I'm trying to access (read/write) an i2c device on my G5. The >> problem is, I do not know the right i2c address although I have it >> from the device-tree, it's 0x15e. >> >> I read about the i2c utilitiy which requires the iic driver >> compiled into the kernel. Done that and it seems it is there: >> >> unin0 iichb0 pnpinfo name=i2c compat=keywest-i2c iicbus0 iic0 at >> addr=0 fcu0 pnpinfo name=fan compat=fcu at addr=0x15e >> >> But I do not have this device entry in /dev. Trying to create one >> does not work. mknod /dev/iic0 c 103 0 mknod: /dev/iic0: No such >> file or directory >> >> This is a netboot environment, might this be the cause of not being >> able to create the device? Or do I have another issue? > > This shouldn't be related to the boot method. > > Do you see any failure output during iic attach (there should be a > diag error)? If not try to intstrument the iic_probe() routine and > see what happens. unin0: on nexus0 unin0: Version 179 iichb0: mem 0xf8001000-0xf8001fff irq 42 on unin0 iichb0: [ITHREAD] iicbus0: on iichb0 iicbus0: iic identify iic0: iic probe failure iic0: addr: 0x8a iicbus0: at addr 0 iic1: iic probe failure iic1: addr: 0x8a The same on this one: iichb1: mem 0x18000-0x18fff irq 282 on macio0 iichb1: [ITHREAD] iicbus1: on iichb1 iicbus1: iic identify iic1: iic probe failure iic1: addr: 0x8a iicbus1: at addr 0 Hm, I suspect that either the kiic has an issue or the iicbus_get_addr function is not working properly. Thanks for the hint, Rafal! Andreas