Hi James,
On 2017/12/7 14:37, gengdongjiu wrote:
>> We need to tackle (1) and (3) separately. For (3) we need some API that lets
>> Qemu _trigger_ an SError in the guest, with a specified ESR. But, we don't
>> have
>> a way of migrating pending SError yet... which is where I got stuck last
>> ti
On Thu, Dec 14, 2017 at 3:30 PM, Daniel Vetter wrote:
> It thinks we want to document the __printf(2,0) annotion. Not sure we
> want to teach it about all possible gcc-only flags, hence why I opted
> for the cheap trick of just moving it ahead of the kerneldoc.
>
> This is only a problem for stati
I've written a couple of thousand words of documentation for the XArray.
I need to decide how to license it. There are no SPDX tags in Documentation/
to date, so I have no examples to crib from.
1. How does one add an SPDX tag to an rst file?
2. What license should I use? I'd like people to be
2017-12-10 1:02 GMT+09:00 Masahiro Yamada :
> In Linux build system convention, pre-generated files are version-
> controlled with a "_shipped" suffix. During the kernel building,
> they are simply shipped (copied) removing the suffix.
>
> From users' point of view, this approach can reduce extern
On 12/14/2017 12:44 PM, Boris Brezillon wrote:
> On Thu, 14 Dec 2017 12:25:14 -0800
> Randy Dunlap wrote:
>
>> On 12/14/2017 12:17 PM, Boris Brezillon wrote:
> + events.events = I3C_CCC_EVENT_HJ | I3C_CCC_EVENT_MR;
> + ret = i3c_master_enec_locked(m, I3C_BROADCAST_ADDR, &events);
> +
On 2017-12-14 16:16, Boris Brezillon wrote:
> +Optional properties
> +---
> +- reg: static address. Only valid is the device has a static address.
> +- i3c-dynamic-address: dynamic address to be assigned to this device. This
> +property depends on the reg propert
On Thu, 14 Dec 2017 12:25:14 -0800
Randy Dunlap wrote:
> On 12/14/2017 12:17 PM, Boris Brezillon wrote:
> >>> + events.events = I3C_CCC_EVENT_HJ | I3C_CCC_EVENT_MR;
> >>> + ret = i3c_master_enec_locked(m, I3C_BROADCAST_ADDR, &events);
> >>> + if (ret)
> >>> + pr_info("Failed to re-enable
It thinks we want to document the __printf(2,0) annotion. Not sure we
want to teach it about all possible gcc-only flags, hence why I opted
for the cheap trick of just moving it ahead of the kerneldoc.
This is only a problem for static inline functions, since for
non-inline function the kerneldoc
On 12/14/2017 12:17 PM, Boris Brezillon wrote:
>>> + events.events = I3C_CCC_EVENT_HJ | I3C_CCC_EVENT_MR;
>>> + ret = i3c_master_enec_locked(m, I3C_BROADCAST_ADDR, &events);
>>> + if (ret)
>>> + pr_info("Failed to re-enable H-J");
>> Not very good info...
> What do yo
Hi Randy,
On Thu, 14 Dec 2017 11:54:16 -0800
Randy Dunlap wrote:
> On 12/14/2017 07:16 AM, Boris Brezillon wrote:
> > Add a driver for Cadence I3C master IP.
> >
> > Signed-off-by: Boris Brezillon
> > ---
> > Changes in v2:
> > - Add basic IBI support. Note that the IP is not really reliable w
On 12/14/2017 07:16 AM, Boris Brezillon wrote:
> Add a driver for Cadence I3C master IP.
>
> Signed-off-by: Boris Brezillon
> ---
> Changes in v2:
> - Add basic IBI support. Note that the IP is not really reliable with
> regards to IBI because you can't extract IBI payloads as soon as you
> h
On Thu, Dec 14, 2017 at 10:09:44AM -0700, Jonathan Corbet wrote:
> On Thu, 14 Dec 2017 15:30:13 +0100 (CET)
> Julia Lawall wrote:
>
> [CC += Greg in case he disagrees]
>
> > My intern, Aishwarya Pant, is looking into how to improve the
> > documentation of device attributes. She collected a lis
On Wed, Dec 13, 2017 at 10:25:37AM +0100, Greg Kroah-Hartman wrote:
> Mark, can I get an Ack for this patch so I can take it through my tree
> with the other patches in this series?
I just gave a reviewed-by to the whole series. Might still make sense
for me to do this one patch, let me know if
On Mon, Dec 11, 2017 at 11:42:54PM +, srinivas.kandaga...@linaro.org wrote:
> From: Srinivas Kandagatla
>
> SLIMbus (Serial Low Power Interchip Media Bus) is a specification
> developed by MIPI (Mobile Industry Processor Interface) alliance.
> SLIMbus is a 2-wire implementation, which is used
On Thu, 14 Dec 2017, Jonathan Corbet wrote:
> On Thu, 14 Dec 2017 15:30:13 +0100 (CET)
> Julia Lawall wrote:
>
> [CC += Greg in case he disagrees]
>
> > My intern, Aishwarya Pant, is looking into how to improve the
> > documentation of device attributes. She collected a list of attirbutes
> >
On Thu, 14 Dec 2017 15:30:13 +0100 (CET)
Julia Lawall wrote:
[CC += Greg in case he disagrees]
> My intern, Aishwarya Pant, is looking into how to improve the
> documentation of device attributes. She collected a list of attirbutes
> that are not represented anywhere under Documentation/ABI, bu
Hi Boris,
On Thu, Dec 14, 2017 at 4:16 PM, Boris Brezillon
wrote:
> A new I3C subsystem has been added and a generic description has been
> created to represent the I3C bus and the devices connected on it.
>
> Document this generic representation.
>
> Signed-off-by: Boris Brezillon
Thanks for y
On Thu, Dec 14, 2017 at 08:08:08AM -0600, Timur Tabi wrote:
> On 12/14/17 4:30 AM, Lorenzo Pieralisi wrote:
> >>I didn't want to put any ACPI code in amba-pl011.c, so putting it in spcr.c
> >>made the most sense. I agree the global variable is ugly. If you have a
> >>better idea, I'm all ears.
>
Document sysfs files/directories/symlinks exposed by the I3C subsystem.
Signed-off-by: Boris Brezillon
---
Changes in v2:
- new patch
---
Documentation/ABI/testing/sysfs-bus-i3c | 95 +
1 file changed, 95 insertions(+)
create mode 100644 Documentation/ABI/testing
Add the I3C documentation describing the protocol, the master driver API
and the device driver API.
Signed-off-by: Boris Brezillon
---
Changes in v2:
- Moved out of patch "i3c: Add core I3C infrastructure"
- Add link to the I3C spec
- Move rst files in Documentation/driver-api/i3c/
---
Documenta
This patch series is a proposal for a new I3C [1] subsystem.
This infrastructure is not complete yet and will be extended over
time.
There are a few design choices that are worth mentioning because they
impact the way I3C device drivers can interact with their devices:
- all functions used to se
Document Cadence I3C master DT bindings.
Signed-off-by: Boris Brezillon
---
.../devicetree/bindings/i3c/cdns,i3c-master.txt| 45 ++
1 file changed, 45 insertions(+)
create mode 100644 Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
diff --git a/Documentation/d
I3C busses have to know about all I2C devices connected on the I3C bus
to properly initialize the I3C master, and I2C frames can't be sent on
the bus until this initialization is done.
We can't let the I2C core parse the DT and instantiate I2C devices as
part of its i2c_add_adapter() procedure bec
Hello,
there is cdrom autoclose feature that is supposed to close the tray, wait for
the disc to become ready, and then open the device.
This used to work in ancient times. Then in old times there was a hack in
util-linux which worked around the breakage which probably resulted from
switching to
A new I3C subsystem has been added and a generic description has been
created to represent the I3C bus and the devices connected on it.
Document this generic representation.
Signed-off-by: Boris Brezillon
---
Changes in v2:
- Define how to describe I3C devices in the DT and when it should be
u
Add a driver for Cadence I3C master IP.
Signed-off-by: Boris Brezillon
---
Changes in v2:
- Add basic IBI support. Note that the IP is not really reliable with
regards to IBI because you can't extract IBI payloads as soon as you
have more than one IBI waiting in the HW queue. This is somethin
Hello,
My intern, Aishwarya Pant, is looking into how to improve the
documentation of device attributes. She collected a list of attirbutes
that are not represented anywhere under Documentation/ABI, but soeof these
seem to be represented elsewhere, for examples:
Documentation/hwmon/sht3x:
sysfs
On 12/14/17 4:30 AM, Lorenzo Pieralisi wrote:
I didn't want to put any ACPI code in amba-pl011.c, so putting it in spcr.c
made the most sense. I agree the global variable is ugly. If you have a
better idea, I'm all ears.
I told you my idea. It could have been made easier by reusing the
ACPI_
On 13/12/17 09:25, Greg Kroah-Hartman wrote:
On Mon, Dec 11, 2017 at 11:42:54PM +, srinivas.kandaga...@linaro.org wrote:
From: Srinivas Kandagatla
SLIMbus (Serial Low Power Interchip Media Bus) is a specification
developed by MIPI (Mobile Industry Processor Interface) alliance.
SLIMbus i
On 14/12/17 08:19, Takashi Iwai wrote:
On Thu, 14 Dec 2017 06:17:39 +0100,
Vinod Koul wrote:
On Wed, Dec 13, 2017 at 04:06:11PM +, Mark Brown wrote:
On Mon, Dec 11, 2017 at 11:43:02PM +, srinivas.kandaga...@linaro.org wrote:
Mark, can I get an Ack for this patch so I can take it t
On Tue, Dec 12, 2017 at 03:07:50PM +0100, Pavel Machek wrote:
> On Sat 2017-11-25 21:29:17, Jarkko Sakkinen wrote:
> > Intel(R) SGX is a set of CPU instructions that can be used by applications
> > to
> > set aside private regions of code and data. The code outside the enclave is
> > disallowed to
On Wed, Dec 13, 2017 at 03:11:33PM -0600, Timur Tabi wrote:
> On 12/13/2017 06:45 AM, Lorenzo Pieralisi wrote:
> >>+/*
> >>+ * Erratum 44 for QDF2432v1 and QDF2400v1 SoCs describes the BUSY bit as
> >>+ * occasionally getting stuck as 1. To avoid the potential for a hang,
> >>check
> >>+ * TXFE ==
On Thu, 14 Dec 2017 06:17:39 +0100,
Vinod Koul wrote:
>
> On Wed, Dec 13, 2017 at 04:06:11PM +, Mark Brown wrote:
> > > On Mon, Dec 11, 2017 at 11:43:02PM +, srinivas.kandaga...@linaro.org
> > > wrote:
> >
> > > Mark, can I get an Ack for this patch so I can take it through my tree
> > >
33 matches
Mail list logo