From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756873AbcJaABS (ORCPT ); Sun, 30 Oct 2016 20:01:18 -0400 Received: from mx2.suse.de ([195.135.220.15]:56999 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752127AbcJaABQ (ORCPT ); Sun, 30 Oct 2016 20:01:16 -0400 From: NeilBrown To: Baolin Wang Date: Mon, 31 Oct 2016 11:00:48 +1100 Cc: Felipe Balbi , Greg KH , Sebastian Reichel , Dmitry Eremin-Solenikov , David Woodhouse , robh@kernel.org, Jun Li , Marek Szyprowski , Ruslan Bilovol , Peter Chen , Alan Stern , grygorii.strashko@ti.com, Yoshihiro Shimoda , Lee Jones , Mark Brown , John Stultz , Charles Keepax , patches@opensource.wolfsonmicro.com, Linux PM list , USB , device-mainlining@lists.linuxfoundation.org, LKML Subject: Re: [PATCH v18 0/4] Introduce usb charger framework to deal with the usb gadget power negotation In-Reply-To: References: <87k2cttptn.fsf@notabene.neil.brown.name> User-Agent: Notmuch/0.22.1 (http://notmuchmail.org) Emacs/24.5.1 (x86_64-suse-linux-gnu) Message-ID: <87a8dls7yn.fsf@notabene.neil.brown.name> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, Oct 28 2016, Baolin Wang wrote: >> >> 3/ usb_charger_notify_state() does nothing if the state doesn't change. >> When the extcon detects an SDP, it will be called to set the state >> to USB_CHARGER_PRESENT. The value of cur.sdp_max will be whatever >> it happened to be before, which is probably wrong. > > Sorry, I did not get your points here, could you please explain it explic= itly? usb_charger_get_current() is used to get the min/max current that is supported. In the case that an SDP (non-super-speed) has been detected it will report the values sdp_min and sdp_max. Ignoring usb_charger_set_current(), sdp_max is set - to DEFAULT_SDP_CUR_MAX (500) at initializaion - to cur_limit when usb_charger_set_cur_limit_by_gadget() is called which happens after USB negotiation, once an allowed vbus_draw is negotiated. This means that the first time you plug in an SDP cable, the reported max will be 500, even though nothing has been negotiated. The maximum before negotiation is much less than that - I don't remember exactly how much. If negotiation completes, the sdp_max will be set to whatever was negotiated. Maybe 200mA. If you unplug, and then plug another SDP cable in, the sdp_max will still be 200mA - different from the first time, but still not correct. It will remain incorrect until (and unless) USB negotiation completes. > >> When after USB negotiation completes, >> usb_charger_set_cur_limit_by_gadget() >> will call into usb_charger_notify_state() to set USB_CHARGER_PRESENT >> again, but with a new current. This will be ignored, as the state is >> already USB_CHARGER_PRESENT. > > No, we will notify the user the current has been changed by one work. I can see no evidence in the code to justify this assertion, and you didn't even try to provide any. > >> >> 4/ I still strongly object to the ->get_charger_type() interface. >> You previously said: >> >> No. User can implement the get_charger_type() method to access the >> PMIC registers to get the charger type, which is one very common me= thod. >> >> I suggest that if the PMIC registers report the charger type, then the >> PMIC driver should register an EXTCON and report the charger type >> through that. Then the information would be directly available to >> user-space, and the usb-charger framework would have a single uniform >> mechanism for being told the cable type. > > We just access only one PMIC register to get the charger type, which > is no need add one driver for that and there are no any events for > extcon. Some sample code in power driver can be like below: If there are no events, then how do you know when a charger has been plugged in? Do you poll? In any case, one of the major values provided by using an OS like Linux is uniform interfaces. If a device can detect what sort of cable is inserted, then that information should be presented as an EXTCON. >> >> Related: I don't like charger_type_show(). I don't think >> the usb-charger should export that information to user-space because >> extcon already does that, and duplication is confusing and pointless. > > I think we should combine all charger related information into one > place for user. Moreover if we don't get charger type from extcon, we > should also need one place to export the charger type. Yes and no. Certainly a uniform consistent interface should be presented. "a usb charger" is not the right abstraction. It is not a thing that should have independent existence. To everybody else in the world, a "usb charger" in a box that you plug into the wall, and which has a cable to plug into your device. It is not part of the device itself. In general, you cannot point to any component in a device that is the "usb charger" so it isn't clear that Linux should even know about a "usb charger". There is a battery-charger which can take whatever current is available and feed it to the battery. It may well be appropriate for user-space to have fine control of the current that this uses quite independently of whatever is plugged in (I have a board which can get the current via USB or via a more direct connection). There is also a USB PHY which can detect when a cable is plugged in (possibly just because 5V appears on VBUS) and can usually detect some details of the cable. It should report, via the EXTCON interface, the presence and type of the cable. Maybe these are all in the one integrated circuit, maybe not. On the board I have, the one IC includes the USB phy, the battery charger, the audio codec, some regulators, some GPIOs and other stuff. We have separate drivers for each logical component, unified by an "mfd" driver. From=20the interface design perspective, the number of ICs doesn't matter at all. The interface presented, both within the kernel and out to user-space, should be consistent. Every USB port should present with an EXTCON, and if it can detect types of cables, those cable types should be visible in the extcon. > >> >> And I just noticed you have a ->charger_detect() too, which seems >> identical to ->get_charger_type(). There is no documentation >> explaining the difference. > > I think the kernel doc have explained that, but I like to explain it > again. Since we can detect the charger by software or hardware (like > PMIC), if you need to detect your charger type by software, then you > can implement this callback, you can refer to Jun's patch: > http://www.spinics.net/lists/linux-usb/msg139808.html The kernel-doc says: + * @get_charger_type: User can get charger type by implementing this call= back. + * @charger_detect: Charger detection method can be implemented if you ne= ed to + * manually detect the charger type. To me, that doesn't say anything useful. What is the difference between "get charger type" and "manually detect the charger type" ?? I don't want to have to refer to some extra set of patches to guess how something is supposed to work. It needs to be clearly and unambiguously documented. However, I'm very quickly losing interest in this whole debate, partly because it misses a key point. As I have said, I strongly feel that resolving the current inconsistencies in the use of usb_register_notifier() is an important preliminary to resolve this issue, as that is *already* sometimes used to communication available current. So I won't be responding on this topic any further until I see a genuine attempt to understand and resolve the inconsistencies with usb_register_notifier(). NeilBrown --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIcBAEBCAAGBQJYFomxAAoJEDnsnt1WYoG5MtQQAIYkKuOMBhx6mzk/CdJTaasJ rI3KNKPlwYuNHFyG2353j5Pd9+jcE9mmZigB9OKC2dDVgMIMoFqWzcMEpCecvXc9 50FLNfNM8UgCQrFHiNNimQ7MtId//5ppAv1gzvjuLftsuumXWAtjNSP8LguHKJoa 7k7V8rsynXE5VFc1ePA8pcwA4OmXP5aKEqYtq1xt8vMc7COnV6aTETcKE3vLvnSq 3zspKr1+YT6g2GCCE6Uzip2u4QHOfW5AXVclGvbZ9TWB7C2vp6oxUuOGaa+MEwuY UPUykufWBiuegOuDZ58cp4AGw1C0yfeZD3IVAnlc2tttUgYeV8eRsC7KKIFHwpA6 KKH6/LA+YiV0oTW1cUsFDkE+9+hd+JJARJSlperqodVMylANlxNFx6akcqn4dlzk TFoLZzmzOsiEyeqzoyDi6tb8qvEXb1rLKy2627gl4lSFxT9icb21UnFGgy83ypay hC2KOzpb4kWiE1mbsNKDaluw/3TcCRwYaIRGBpIPVWxY6gNm+2+X2tqTQtci5ANj Fvj7d+AhkFyyCyIPkHThCZCHMRsDeoMWG4QWxcmaYXxq4MAGQrUZW85yy3Ga/ehV r3zjdxrf7P7HP4wlg/uXtK18OGtsQ8qYS0Rr+TIkP0Ck2ZG8AysnooVacVgtsOYO allwEWo0f6IVVz+MEWji =D24p -----END PGP SIGNATURE----- --=-=-=--