[PATCH] staging: Add Mediatek High Frequency Manager Framework

hongxu.zhao hongxu.zhao at mediatek.com
Fri Aug 7 02:30:29 EDT 2020


On Thu, 2020-08-06 at 12:53 +0200, Greg Kroah-Hartman wrote:
> On Thu, Aug 06, 2020 at 04:32:28PM +0800, hongxu.zhao wrote:
> > On Tue, 2020-08-04 at 10:11 +0200, Greg Kroah-Hartman wrote:
> > > On Tue, Aug 04, 2020 at 03:52:49PM +0800, hongxu.zhao wrote:
> > > > Add a new sensor framework into linux kernel which can support multi client request sensor data.
> > > > There are the following features:
> > > >     1.Ringbuffer between manager and client;
> > > >     2.Kernel space user interface;
> > > >     3.User space user interface with syscall;
> > > >     4.Each client hang detect mechanism;
> > > >     5.Polling timer management in framework no need driver concern;
> > > >     6.Polling kthread work intergrated into a single kthread
> > > >       worker to save system resources in framework no need driver concern;
> > > >     7.Proc file system to show manager device and client details;
> > > >     8.Compitable with android and widely used in many mediatek platform products;
> > > > 
> > > > Change-Id: I6361cdc2d51de50f66eede7df099c4575e7ec473
> > > 
> > > Did you not run checkpatch.pl on this?  :)
> > > 
> > > No need for change-id here.
> > > 
> > > But, most importantly, why is this in drivers/staging?  What keeps it
> > > from being in the "real" part of the kernel?  I need a TODO file in the
> > > directory of the driver listing what remains to be done and who is
> > > responsible for doing this work and reviewing patches.
> > > 
> > > Can you resend this with that file added and the Change-id removed?
> > > 
> > > Also, why not just use the IIO interface, why are you creating
> > > yet-another api for sensors?  We already have 2, making a third seems
> > > like something that guarantees this will never be mergable to the
> > > correct part of the kernel.
> > > 
> > > And finally, /proc/ is not for devices, that is what sysfs is for,
> > > please use that.
> > 
> > I have modified checkpatch issue, but blocked by ARCH=alpha build error
> > and I can't reproduce this build error in mediatek environment. I need
> > spend some time setting up an environment to solve this problem and will
> > send you the latest patch together after solving the problem of alpha
> > build error.
> 
> If you can't easily fix the alpha issue, you can just mark the driver as
> not able to be built there for now.
> 
> > Firstly I want keep it in the real part of kernel and I send mail to
> > community to find the right maintainer, unfortunately, several emails
> > were not answered.
> 
> Pointers to those emails on lore.kernel.org?

I sended mail to linux-kernel at vger.kernel.org

> > Secondly I found iio upstream history it also started from staging at
> > the beginning, maybe staging is the best start until it become mature we
> > can move it to the real part of kernel.
> 
> iio started in staging, but now that the infrastructure is out of it,
> there should not be any reason that new drivers be forced to go into
> staging too.  You only want to do it this way if for some reason you can
> not get the work done on your own.

Yes, I want started in staging and want more sensor driver(vendor
driver) added to high frequency manager framework.

> > Actually, we have already assessed IIO subsystem, but the conclusion is
> > that it doesn't meet our requirement:
> > 1. iio doesn't have sensor manager in kernel space.
> 
> What exactly do you mean by this?  Who needs to be a "manager" here?

From our experience, mediatek have many platforms and different
customers have different requirement.

Firstly customer requirement:
   Kernel space         |           user space
----------------------------------------------------------------
driver -- framework -- syscall -- client get data in process

Face this demand, first architecture have no manager service.

Secondly customer requirement:
    Kernel space         |         user space
---------------------------------------------------------------------
driver -- framework -- syscall -- framework service --IPC -- client A

|--IPC --client B 

Face this demand, second architecture we add a sensor manager framework
as service in user space, receive client's enable disable command and
dispatch data to those clients.
Then second architecture have a sensor manager in user space and through
ipc communicate;

Thirdly customer requirement:
    Kernel space                 |                 user space
--------------------------------------------------------------------------
driver -- framework service -- syscall -- client A get data in process A
                |                      |--client B get data in process B
                |--client C get data in kernel space

Face this demand, sensor manager framework service in user space can't
meet this requirement, so third architecture we put sensor manager
framework service to kernel space; Client A and client B through syscall
communicate with framework service, client c through function call
communicate with framework service. This is our finally architecture, we
called high frequency sensor manager framework, high frequency means
reduce one IPC transfer between framework service and client in user
space, this architecture will have better performance, and no need
manager service in user space through ipc communicate between service
and client.

> > 2. each driver under the iio subsystem needs to create workqueue or
> > kthread by itself, waste system resources.
> 
> workqueues are very light, how many sensors and what type of resources
> are you referring to here?  And adding a whole new user api is not
> exactly "tiny" either :)

Yes, workqueue are very light, but high frequency sensor (gyro accel and
so on care latency) can't use system workqueue, must use high prority
kthread or single thread workqueue. In android system, there are almost
20 - 30 sensor types, one sensor driver user one kthread or single
thread workqueue maybe not good.:)

> > 3. iio doesn't have hang detect mechanism to detect polling thread hang.
> 
> That's userspace's issue, right?

No, in finally architecture, polling thread is not only user space
issue, kernel space also have polling thread to poll sensor data. When
sensor generate an event and through manager framework dispatch to
client A B C, hang detect mechanism will detect which client don't
response to service then service don't dispatch data to this client.:)

> > We need a sensor manager architecture in kernel space to select the best
> > delay and latency that multi-client(user space or kernel space user)
> > requested at the same time, and finally dispatch data to each client.
> 
> Why does that have to be in the kernel?

The reason answered before.

> > We need lower resource comsumption, each driver can poll data by kthread
> > work which intergrated into a single kthread worker to save system
> > resources in framework.
> 
> Again, how many resources are you really saving here with a whole new
> framework?

Assume high frequency manager framework and iio framework the same code
size, but for drivers, each driver use one  kthread or single thread
workqueue compare to N drivers use a kthread worker, which is better?:)

> > We need detect polling thread hang to decide whether to send data to
> > him.
> 
> Data to where?

Data don't send to polling thread who hanged.

> > About proc, proc is only for High Frequency Manager Framework to show
> > manager details and client details, is not for device drivers.
> 
> Then it is not needed :)
> 
> > we recommend device driver(like test/test_app.c) use sysfs which under
> > High Frequency Manager Framework.
> 
> Then you need to document it really well as to what you are doing here.
> 
> But again, please try working with the IIO framework as that is what we
> have today.  Any improvements you make to it will help everyone out.
> 
> Adding a third way to handle sensor data to the kernel is probably not
> going to work well for anyone...

Yes, I approve your ideas, but iio framework is too much more
complicated and widely used, if I improve iio framework maybe not
compatible with old interface. Then I decide add a new framework to
staging. :)

thanks

hognxu zhao



More information about the linux-arm-kernel mailing list