From owner-freebsd-arm@freebsd.org Thu Sep 14 15:01:32 2017 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D7AE1E1DCB8 for ; Thu, 14 Sep 2017 15:01:32 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from outbound1b.ore.mailhop.org (outbound1b.ore.mailhop.org [54.200.247.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA6F577A46 for ; Thu, 14 Sep 2017 15:01:32 +0000 (UTC) (envelope-from ian@freebsd.org) X-MHO-User: 9de6cd2d-995d-11e7-950d-03a3531dacf2 X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information X-Originating-IP: 73.78.92.27 X-Mail-Handler: DuoCircle Outbound SMTP Received: from ilsoft.org (unknown [73.78.92.27]) by outbound1.ore.mailhop.org (Halon) with ESMTPSA id 9de6cd2d-995d-11e7-950d-03a3531dacf2; Thu, 14 Sep 2017 15:01:42 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.15.2/8.15.2) with ESMTP id v8EF1OYL019967; Thu, 14 Sep 2017 09:01:24 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1505401284.32063.145.camel@freebsd.org> Subject: Re: HDMI not working on Imx6 Hummingboard From: Ian Lepore To: Russell Haley , freebsd-arm Date: Thu, 14 Sep 2017 09:01:24 -0600 In-Reply-To: References: Content-Type: multipart/mixed; boundary="=-Y7pkKQqo9gnshUliju2L" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Sep 2017 15:01:33 -0000 --=-Y7pkKQqo9gnshUliju2L Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit On Wed, 2017-09-13 at 23:54 -0700, Russell Haley wrote: > Hi, > > The HDMI on my hummingboard/Imx6 (dula pro) doesn't work.  I'm not > sure when it broke or if I did it. > > usbus1: 480Mbps High Speed USB v2.0 > hdmi0: i2c transfer failed: 2 > fb0: failed to get EDID info from HDMI framer > fbd0 on fb0 > VT: initialize with new VT driver "fb". > ugen1.1: at usbus1 > > > Complete verbose kernel output here: http://termbin.com/i3rp > > Any help would be great. Does anyone use HDMI on imx6? Does anyone > know where I should start poking? > > Russ Let me know if hitting it with this hammer helps... -- Ian --=-Y7pkKQqo9gnshUliju2L Content-Disposition: inline; filename="temp.diff" Content-Type: text/x-patch; name="temp.diff"; charset="us-ascii" Content-Transfer-Encoding: 7bit Index: sys/dev/iicbus/iiconf.c =================================================================== --- sys/dev/iicbus/iiconf.c (revision 323390) +++ sys/dev/iicbus/iiconf.c (working copy) @@ -423,7 +423,7 @@ iicbus_transfer_gen(device_t dev, struct iic_msg * bus = children[0]; rpstart = 0; free(children, M_TEMP); - nostop = iicbus_get_nostop(dev); + //nostop = iicbus_get_nostop(dev); started = false; for (i = 0, error = 0; i < nmsgs && error == 0; i++) { addr = msgs[i].slave; --=-Y7pkKQqo9gnshUliju2L--