Received: by 2002:a25:f815:0:0:0:0:0 with SMTP id u21csp3574143ybd; Tue, 25 Jun 2019 05:05:28 -0700 (PDT) X-Google-Smtp-Source: APXvYqwSu+OxybeJF3vcHfvlBIp6xp0w34zqBgN0bJywsQaeQxdtM1CBMUlGeIKFuiadzpOn/fUv X-Received: by 2002:a63:3c14:: with SMTP id j20mr26455136pga.169.1561464328619; Tue, 25 Jun 2019 05:05:28 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1561464328; cv=none; d=google.com; s=arc-20160816; b=IH4uD6miVl7FHckQefGkNtVX1abjiHCVlFcszc7C9qQIyhFHWUQzzLC4S+9qpQu/lU aZIEZHxvO6Uz9X5nijPD3YImQ6KSIUrPD3RtW01KMh8mHuI+l/d+7zo/Jm1kdPownU9x S/B8pk0H6A1S63eQ816ghuH9AorUk9LeI9NV1zLBLbY1JWRYoi/QldqIo1CxwE558rYZ 9N552Rh8JTq2k9chgaMBzjU+fOQrlwbq27e+jJm4vfpMiSP/Yx4rm1GCjD8Sou+R1YkT CJSht2PBzBymMm0v9sJdou5GNdR6a/sj+YyXxP/50VeWXvgUWY1NOyfqGW0FcaGeA1sY 7jOw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:to :from:date; bh=QvMdtvzA4CoktRloSSLw80W1huuLvSH+BtZ30GWN6hk=; b=fw56nWqjtn6EKkU/CqMl0aeKestf2VWbilDaYv6FFsWGUNKs918rmARivs8g0YZocS cStdWEIYWaZRvk+dI50iluFfzQS4i6ZLBvqV7OWQSbTTCGEm435kaUgoWkEdSEtiIERe SzJC28osjCZ6v0MW40t0/qZi3ctVSWWtPVYMMJwJ267gQEvZMRgRolCwepK75Z/pSmMC w0hTEXMjUxXrJXzYehz55JVrBB4gea3X45BIGhuG2DkEqsHREuueK1+fj5QpMx43npvX bbTx3RkzXVUpTXrfhkRtpIIDMd2Sw1Tfp8n24TdhkmZzpDHh8RIWiWfZWZEpCephE8+i jlPQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id m10si993496pjl.77.2019.06.25.05.05.02; Tue, 25 Jun 2019 05:05:28 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729529AbfFYJt0 (ORCPT + 99 others); Tue, 25 Jun 2019 05:49:26 -0400 Received: from elvis.franken.de ([193.175.24.41]:43924 "EHLO elvis.franken.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726441AbfFYJtX (ORCPT ); Tue, 25 Jun 2019 05:49:23 -0400 Received: from uucp (helo=alpha) by elvis.franken.de with local-bsmtp (Exim 3.36 #1) id 1hfhQI-00035W-00; Tue, 25 Jun 2019 11:07:30 +0200 Received: by alpha.franken.de (Postfix, from userid 1000) id 01082C0E40; Tue, 25 Jun 2019 11:04:51 +0200 (CEST) Date: Tue, 25 Jun 2019 11:04:51 +0200 From: Thomas Bogendoerfer To: Lee Jones , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 5/7] mfd: ioc3: Add driver for SGI IOC3 chip Message-ID: <20190625090451.GA9794@alpha.franken.de> References: <20190613170636.6647-1-tbogendoerfer@suse.de> <20190613170636.6647-6-tbogendoerfer@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190613170636.6647-6-tbogendoerfer@suse.de> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jun 13, 2019 at 07:06:31PM +0200, Thomas Bogendoerfer wrote: > SGI IOC3 chip has integrated ethernet, keyboard and mouse interface. > It also supports connecting a SuperIO chip for serial and parallel > interfaces. IOC3 is used inside various SGI systemboards and add-on > cards with different equipped external interfaces. > > Support for ethernet and serial interfaces were implemented inside > the network driver. This patchset moves out the not network related > parts to a new MFD driver, which takes care of card detection, > setup of platform devices and interrupt distribution for the subdevices. > > Serial portion: Acked-by: Greg Kroah-Hartman > > Signed-off-by: Thomas Bogendoerfer > --- > arch/mips/include/asm/sn/ioc3.h | 345 +++---- > arch/mips/sgi-ip27/ip27-timer.c | 20 - > drivers/mfd/Kconfig | 13 + > drivers/mfd/Makefile | 1 + > drivers/mfd/ioc3.c | 683 +++++++++++++ Lee, can you give me an indication, if the MFD changes are ok now or if I need to improve it further. Thanks, Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]