From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1034036AbdAFNUm convert rfc822-to-8bit (ORCPT ); Fri, 6 Jan 2017 08:20:42 -0500 Received: from mail.sigma-star.at ([95.130.255.111]:45996 "EHLO mail.sigma-star.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1033941AbdAFNUd (ORCPT ); Fri, 6 Jan 2017 08:20:33 -0500 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: Geode LX AES/RNG driver triggers warning From: David Gstir In-Reply-To: Date: Fri, 6 Jan 2017 14:19:47 +0100 Cc: One Thousand Gnomes , linux-geode@lists.infradead.org, linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, teheo@suse.de, Richard Weinberger Content-Transfer-Encoding: 8BIT Message-Id: <64A110A1-433C-4903-BDA0-E9E7F9B476CC@sigma-star.at> References: <20170103145203.780d3c58@lxorguk.ukuu.org.uk> To: PrasannaKumar Muralidharan X-Mailer: Apple Mail (2.3124) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org PrasannaKumar, > On 06.01.2017, at 10:40, PrasannaKumar Muralidharan wrote: > >>> I narrowed it down to commit 6e9b5e76882c ("hwrng: geode - Migrate to managed API") which seems to introduce this. It looks to me like some issue between devres, the Geode hwrng and AES drivers which both use the same PCI device. >> >> It does >> >>> I'm no expert here, but I curious if this will cause any issues when using the hardware crypto drivers and also what's the best way to get rid of this? >> >> Probably to create an mfd device that turns the PCI device into two MFD >> devices and bind AES and hwrng one to each MFD device. Take a look in >> drivers/mfd. That would also fix the uglies in mod_init for the rng >> driver. > > I am the author of that commit. Code before commit 6e9b5e76882c had > ioremap, wondering why there was no warning message before. Just want > to know if that commit uncovered existing issue or introduced a new > issue? As far as I understand the commit did not change the > functionality. Please feel free to correct if I have missed something. This warning is because commit 6e9b5e76882c introduces devres (devm_ioremap vs ioremap). As soon as I have some spare time, I'll look into resolving this via MFD like Alan suggested. Thanks, -David