* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters [not found] ` <20170726161949.GB15426@kroah.com> @ 2017-07-26 16:30 ` Borislav Petkov 2017-07-26 17:33 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: Borislav Petkov @ 2017-07-26 16:30 UTC (permalink / raw) To: Greg KH Cc: Jan Glauber, Suzuki K Poulose, Mark Rutland, Will Deacon, linux-arm-kernel, linux-kernel@vger.kernel.org, linux-pci On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: > On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: > > On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: > > > The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. > > > I'm not aware of other ways to access these devices. Please enlighten > > > me if I'm missing something. > > > > Me enlighten you on Cavium hardware?! You're funny. > > > > So I don't know whether the PCI hotplug code can run more than one > > function upon PCI ID detection. Probably Greg will say, write a > > multiplexer wrapper. :-) > > -ENOCONTEXT.... > > Anyway, pci questions are best asked on the linux-pci@vger list. And > yes, all PCI devices end up with a 'struct pci_dev *' automatically. Simple: so they have a PCI ID of a memory contoller and want to hotplug two drivers for it. And those two drivers should remain independent from each other. Thanks. -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-26 16:30 ` [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters Borislav Petkov @ 2017-07-26 17:33 ` Greg KH 2017-07-26 20:02 ` David Daney 0 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2017-07-26 17:33 UTC (permalink / raw) To: Borislav Petkov Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, linux-arm-kernel On Wed, Jul 26, 2017 at 06:30:49PM +0200, Borislav Petkov wrote: > On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: > > On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: > > > On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: > > > > The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. > > > > I'm not aware of other ways to access these devices. Please enlighten > > > > me if I'm missing something. > > > > > > Me enlighten you on Cavium hardware?! You're funny. > > > > > > So I don't know whether the PCI hotplug code can run more than one > > > function upon PCI ID detection. Probably Greg will say, write a > > > multiplexer wrapper. :-) > > > > -ENOCONTEXT.... > > > > Anyway, pci questions are best asked on the linux-pci@vger list. And > > yes, all PCI devices end up with a 'struct pci_dev *' automatically. > > Simple: so they have a PCI ID of a memory contoller and want to hotplug > two drivers for it. And those two drivers should remain independent from > each other. Hahahahaha, no. That's crazy, you were right in guessing what my answer was going to be :) greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-26 17:33 ` Greg KH @ 2017-07-26 20:02 ` David Daney 2017-07-26 20:08 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: David Daney @ 2017-07-26 20:02 UTC (permalink / raw) To: Greg KH, Borislav Petkov Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, linux-arm-kernel On 07/26/2017 10:33 AM, Greg KH wrote: > On Wed, Jul 26, 2017 at 06:30:49PM +0200, Borislav Petkov wrote: >> On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: >>> On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: >>>> On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: >>>>> The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. >>>>> I'm not aware of other ways to access these devices. Please enlighten >>>>> me if I'm missing something. >>>> >>>> Me enlighten you on Cavium hardware?! You're funny. >>>> >>>> So I don't know whether the PCI hotplug code can run more than one >>>> function upon PCI ID detection. Probably Greg will say, write a >>>> multiplexer wrapper. :-) >>> >>> -ENOCONTEXT.... >>> >>> Anyway, pci questions are best asked on the linux-pci@vger list. And >>> yes, all PCI devices end up with a 'struct pci_dev *' automatically. >> >> Simple: so they have a PCI ID of a memory contoller and want to hotplug >> two drivers for it. And those two drivers should remain independent from >> each other. > > Hahahahaha, no. That's crazy, you were right in guessing what my answer > was going to be :) > Just to be clear about the situation, the device is a memory controller. It has two main behaviors we are interested in: A) Error Detection And Correction (EDAC). This should be connected to the kernel's EDAC subsystem. An existing driver (drivers/edac/thunderx_edac.c) does exactly this. B) Performance Counters for actions taken in the corresponding memory. This should be connected to the kernel's perf framework as an uncore-PMU (the subject of this patch set). It is a single PCI device. What should the driver architecture look like to connect it to two different kernel subsystems? Thanks, David Daney _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-26 20:02 ` David Daney @ 2017-07-26 20:08 ` Greg KH 2017-07-26 21:02 ` David Daney 0 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2017-07-26 20:08 UTC (permalink / raw) To: David Daney Cc: Borislav Petkov, Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, linux-arm-kernel On Wed, Jul 26, 2017 at 01:02:38PM -0700, David Daney wrote: > On 07/26/2017 10:33 AM, Greg KH wrote: > > On Wed, Jul 26, 2017 at 06:30:49PM +0200, Borislav Petkov wrote: > > > On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: > > > > On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: > > > > > On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: > > > > > > The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. > > > > > > I'm not aware of other ways to access these devices. Please enlighten > > > > > > me if I'm missing something. > > > > > > > > > > Me enlighten you on Cavium hardware?! You're funny. > > > > > > > > > > So I don't know whether the PCI hotplug code can run more than one > > > > > function upon PCI ID detection. Probably Greg will say, write a > > > > > multiplexer wrapper. :-) > > > > > > > > -ENOCONTEXT.... > > > > > > > > Anyway, pci questions are best asked on the linux-pci@vger list. And > > > > yes, all PCI devices end up with a 'struct pci_dev *' automatically. > > > > > > Simple: so they have a PCI ID of a memory contoller and want to hotplug > > > two drivers for it. And those two drivers should remain independent from > > > each other. > > > > Hahahahaha, no. That's crazy, you were right in guessing what my answer > > was going to be :) > > > > > Just to be clear about the situation, the device is a memory controller. It > has two main behaviors we are interested in: > > A) Error Detection And Correction (EDAC). This should be connected to the > kernel's EDAC subsystem. An existing driver (drivers/edac/thunderx_edac.c) > does exactly this. > > B) Performance Counters for actions taken in the corresponding memory. This > should be connected to the kernel's perf framework as an uncore-PMU (the > subject of this patch set). > > It is a single PCI device. What should the driver architecture look like to > connect it to two different kernel subsystems? Modify the drivers/edac/thunderx_edac.c code to add support for performance counters. ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-26 20:08 ` Greg KH @ 2017-07-26 21:02 ` David Daney 2017-07-27 2:29 ` Greg KH 2017-07-27 5:11 ` Borislav Petkov 0 siblings, 2 replies; 16+ messages in thread From: David Daney @ 2017-07-26 21:02 UTC (permalink / raw) To: Greg KH Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, Borislav Petkov, linux-arm-kernel On 07/26/2017 01:08 PM, Greg KH wrote: > On Wed, Jul 26, 2017 at 01:02:38PM -0700, David Daney wrote: >> On 07/26/2017 10:33 AM, Greg KH wrote: >>> On Wed, Jul 26, 2017 at 06:30:49PM +0200, Borislav Petkov wrote: >>>> On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: >>>>> On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: >>>>>> On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: >>>>>>> The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. >>>>>>> I'm not aware of other ways to access these devices. Please enlighten >>>>>>> me if I'm missing something. >>>>>> >>>>>> Me enlighten you on Cavium hardware?! You're funny. >>>>>> >>>>>> So I don't know whether the PCI hotplug code can run more than one >>>>>> function upon PCI ID detection. Probably Greg will say, write a >>>>>> multiplexer wrapper. :-) >>>>> >>>>> -ENOCONTEXT.... >>>>> >>>>> Anyway, pci questions are best asked on the linux-pci@vger list. And >>>>> yes, all PCI devices end up with a 'struct pci_dev *' automatically. >>>> >>>> Simple: so they have a PCI ID of a memory contoller and want to hotplug >>>> two drivers for it. And those two drivers should remain independent from >>>> each other. >>> >>> Hahahahaha, no. That's crazy, you were right in guessing what my answer >>> was going to be :) >>> >> >> >> Just to be clear about the situation, the device is a memory controller. It >> has two main behaviors we are interested in: >> >> A) Error Detection And Correction (EDAC). This should be connected to the >> kernel's EDAC subsystem. An existing driver (drivers/edac/thunderx_edac.c) >> does exactly this. >> >> B) Performance Counters for actions taken in the corresponding memory. This >> should be connected to the kernel's perf framework as an uncore-PMU (the >> subject of this patch set). >> >> It is a single PCI device. What should the driver architecture look like to >> connect it to two different kernel subsystems? > > Modify the drivers/edac/thunderx_edac.c code to add support for > performance counters. > Thanks Greg. This adds some clarity to the situation. This technique does slightly complicate the mapping of files and directories in the kernel source tree to maintainers. Also, if a given configuration disables CONFIG_EDAC there is some hackery needed to get the perf portion of the driver included. David Daney _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-26 21:02 ` David Daney @ 2017-07-27 2:29 ` Greg KH 2017-07-27 17:29 ` David Daney 2017-07-27 5:11 ` Borislav Petkov 1 sibling, 1 reply; 16+ messages in thread From: Greg KH @ 2017-07-27 2:29 UTC (permalink / raw) To: David Daney Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, Borislav Petkov, linux-arm-kernel On Wed, Jul 26, 2017 at 02:02:42PM -0700, David Daney wrote: > On 07/26/2017 01:08 PM, Greg KH wrote: > > On Wed, Jul 26, 2017 at 01:02:38PM -0700, David Daney wrote: > > > On 07/26/2017 10:33 AM, Greg KH wrote: > > > > On Wed, Jul 26, 2017 at 06:30:49PM +0200, Borislav Petkov wrote: > > > > > On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: > > > > > > On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: > > > > > > > On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: > > > > > > > > The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. > > > > > > > > I'm not aware of other ways to access these devices. Please enlighten > > > > > > > > me if I'm missing something. > > > > > > > > > > > > > > Me enlighten you on Cavium hardware?! You're funny. > > > > > > > > > > > > > > So I don't know whether the PCI hotplug code can run more than one > > > > > > > function upon PCI ID detection. Probably Greg will say, write a > > > > > > > multiplexer wrapper. :-) > > > > > > > > > > > > -ENOCONTEXT.... > > > > > > > > > > > > Anyway, pci questions are best asked on the linux-pci@vger list. And > > > > > > yes, all PCI devices end up with a 'struct pci_dev *' automatically. > > > > > > > > > > Simple: so they have a PCI ID of a memory contoller and want to hotplug > > > > > two drivers for it. And those two drivers should remain independent from > > > > > each other. > > > > > > > > Hahahahaha, no. That's crazy, you were right in guessing what my answer > > > > was going to be :) > > > > > > > > > > > > > Just to be clear about the situation, the device is a memory controller. It > > > has two main behaviors we are interested in: > > > > > > A) Error Detection And Correction (EDAC). This should be connected to the > > > kernel's EDAC subsystem. An existing driver (drivers/edac/thunderx_edac.c) > > > does exactly this. > > > > > > B) Performance Counters for actions taken in the corresponding memory. This > > > should be connected to the kernel's perf framework as an uncore-PMU (the > > > subject of this patch set). > > > > > > It is a single PCI device. What should the driver architecture look like to > > > connect it to two different kernel subsystems? > > > > Modify the drivers/edac/thunderx_edac.c code to add support for > > performance counters. > > > > Thanks Greg. This adds some clarity to the situation. > > This technique does slightly complicate the mapping of files and directories > in the kernel source tree to maintainers. > > Also, if a given configuration disables CONFIG_EDAC there is some hackery > needed to get the perf portion of the driver included. Well, you all deserve it for trying to have a single PCI device do multiple things at the same time. There's no real good reason for creating hardware that way, PCI devices are "free", you should go throw a printed copy of the PCI spec at the firmware developers who did this to you. Then get them to fix the firmware so you have multiple PCI devices... good luck! greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-27 2:29 ` Greg KH @ 2017-07-27 17:29 ` David Daney 2017-07-28 1:11 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: David Daney @ 2017-07-27 17:29 UTC (permalink / raw) To: Greg KH Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, Borislav Petkov, linux-arm-kernel On 07/26/2017 07:29 PM, Greg KH wrote: > On Wed, Jul 26, 2017 at 02:02:42PM -0700, David Daney wrote: >> On 07/26/2017 01:08 PM, Greg KH wrote: >>> On Wed, Jul 26, 2017 at 01:02:38PM -0700, David Daney wrote: >>>> On 07/26/2017 10:33 AM, Greg KH wrote: >>>>> On Wed, Jul 26, 2017 at 06:30:49PM +0200, Borislav Petkov wrote: >>>>>> On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: >>>>>>> On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: >>>>>>>> On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: >>>>>>>>> The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. >>>>>>>>> I'm not aware of other ways to access these devices. Please enlighten >>>>>>>>> me if I'm missing something. >>>>>>>> >>>>>>>> Me enlighten you on Cavium hardware?! You're funny. >>>>>>>> >>>>>>>> So I don't know whether the PCI hotplug code can run more than one >>>>>>>> function upon PCI ID detection. Probably Greg will say, write a >>>>>>>> multiplexer wrapper. :-) >>>>>>> >>>>>>> -ENOCONTEXT.... >>>>>>> >>>>>>> Anyway, pci questions are best asked on the linux-pci@vger list. And >>>>>>> yes, all PCI devices end up with a 'struct pci_dev *' automatically. >>>>>> >>>>>> Simple: so they have a PCI ID of a memory contoller and want to hotplug >>>>>> two drivers for it. And those two drivers should remain independent from >>>>>> each other. >>>>> >>>>> Hahahahaha, no. That's crazy, you were right in guessing what my answer >>>>> was going to be :) >>>>> >>>> >>>> >>>> Just to be clear about the situation, the device is a memory controller. It >>>> has two main behaviors we are interested in: >>>> >>>> A) Error Detection And Correction (EDAC). This should be connected to the >>>> kernel's EDAC subsystem. An existing driver (drivers/edac/thunderx_edac.c) >>>> does exactly this. >>>> >>>> B) Performance Counters for actions taken in the corresponding memory. This >>>> should be connected to the kernel's perf framework as an uncore-PMU (the >>>> subject of this patch set). >>>> >>>> It is a single PCI device. What should the driver architecture look like to >>>> connect it to two different kernel subsystems? >>> >>> Modify the drivers/edac/thunderx_edac.c code to add support for >>> performance counters. >>> >> >> Thanks Greg. This adds some clarity to the situation. >> >> This technique does slightly complicate the mapping of files and directories >> in the kernel source tree to maintainers. >> >> Also, if a given configuration disables CONFIG_EDAC there is some hackery >> needed to get the perf portion of the driver included. > > Well, you all deserve it for trying to have a single PCI device do > multiple things at the same time. There's no real good reason for > creating hardware that way, PCI devices are "free", you should go throw > a printed copy of the PCI spec at the firmware developers who did this > to you. The problem lies in something even more congealed than the "firmware". The PCI topology is etched in to the very fabric of the silicon of the SoC. > > Then get them to fix the firmware so you have multiple PCI devices... > > good luck! We'll use all of that we can get! Thanks. > > greg k-h > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-27 17:29 ` David Daney @ 2017-07-28 1:11 ` Greg KH 2017-07-28 7:23 ` Borislav Petkov 0 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2017-07-28 1:11 UTC (permalink / raw) To: David Daney Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, Borislav Petkov, linux-arm-kernel On Thu, Jul 27, 2017 at 10:29:53AM -0700, David Daney wrote: > On 07/26/2017 07:29 PM, Greg KH wrote: > > On Wed, Jul 26, 2017 at 02:02:42PM -0700, David Daney wrote: > > > On 07/26/2017 01:08 PM, Greg KH wrote: > > > > On Wed, Jul 26, 2017 at 01:02:38PM -0700, David Daney wrote: > > > > > On 07/26/2017 10:33 AM, Greg KH wrote: > > > > > > On Wed, Jul 26, 2017 at 06:30:49PM +0200, Borislav Petkov wrote: > > > > > > > On Wed, Jul 26, 2017 at 09:19:49AM -0700, Greg KH wrote: > > > > > > > > On Wed, Jul 26, 2017 at 05:55:48PM +0200, Borislav Petkov wrote: > > > > > > > > > On Wed, Jul 26, 2017 at 05:45:15PM +0200, Jan Glauber wrote: > > > > > > > > > > The PMU/EDAC devices are all PCI devices do I need the 'struct pci_dev *'. > > > > > > > > > > I'm not aware of other ways to access these devices. Please enlighten > > > > > > > > > > me if I'm missing something. > > > > > > > > > > > > > > > > > > Me enlighten you on Cavium hardware?! You're funny. > > > > > > > > > > > > > > > > > > So I don't know whether the PCI hotplug code can run more than one > > > > > > > > > function upon PCI ID detection. Probably Greg will say, write a > > > > > > > > > multiplexer wrapper. :-) > > > > > > > > > > > > > > > > -ENOCONTEXT.... > > > > > > > > > > > > > > > > Anyway, pci questions are best asked on the linux-pci@vger list. And > > > > > > > > yes, all PCI devices end up with a 'struct pci_dev *' automatically. > > > > > > > > > > > > > > Simple: so they have a PCI ID of a memory contoller and want to hotplug > > > > > > > two drivers for it. And those two drivers should remain independent from > > > > > > > each other. > > > > > > > > > > > > Hahahahaha, no. That's crazy, you were right in guessing what my answer > > > > > > was going to be :) > > > > > > > > > > > > > > > > > > > > > Just to be clear about the situation, the device is a memory controller. It > > > > > has two main behaviors we are interested in: > > > > > > > > > > A) Error Detection And Correction (EDAC). This should be connected to the > > > > > kernel's EDAC subsystem. An existing driver (drivers/edac/thunderx_edac.c) > > > > > does exactly this. > > > > > > > > > > B) Performance Counters for actions taken in the corresponding memory. This > > > > > should be connected to the kernel's perf framework as an uncore-PMU (the > > > > > subject of this patch set). > > > > > > > > > > It is a single PCI device. What should the driver architecture look like to > > > > > connect it to two different kernel subsystems? > > > > > > > > Modify the drivers/edac/thunderx_edac.c code to add support for > > > > performance counters. > > > > > > > > > > Thanks Greg. This adds some clarity to the situation. > > > > > > This technique does slightly complicate the mapping of files and directories > > > in the kernel source tree to maintainers. > > > > > > Also, if a given configuration disables CONFIG_EDAC there is some hackery > > > needed to get the perf portion of the driver included. > > > > Well, you all deserve it for trying to have a single PCI device do > > multiple things at the same time. There's no real good reason for > > creating hardware that way, PCI devices are "free", you should go throw > > a printed copy of the PCI spec at the firmware developers who did this > > to you. > > The problem lies in something even more congealed than the "firmware". The > PCI topology is etched in to the very fabric of the silicon of the SoC. That's not very wise, as you can see here, most "modern" chips allow stuff like this to be changeable at the firmware level. I strongly suggest telling the hardware developers to fix this for your next revision. Oh well, fix it in the kernel, that's what it's there for :) greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-28 1:11 ` Greg KH @ 2017-07-28 7:23 ` Borislav Petkov 0 siblings, 0 replies; 16+ messages in thread From: Borislav Petkov @ 2017-07-28 7:23 UTC (permalink / raw) To: Greg KH Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, David Daney, linux-arm-kernel On Thu, Jul 27, 2017 at 06:11:30PM -0700, Greg KH wrote: > Oh well, fix it in the kernel, that's what it's there for :) Duude, don't put crazy ideas in people's heads! :-))) -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-26 21:02 ` David Daney 2017-07-27 2:29 ` Greg KH @ 2017-07-27 5:11 ` Borislav Petkov 2017-07-27 9:08 ` Jan Glauber 1 sibling, 1 reply; 16+ messages in thread From: Borislav Petkov @ 2017-07-27 5:11 UTC (permalink / raw) To: David Daney Cc: Mark Rutland, Suzuki K Poulose, Greg KH, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, linux-pci, linux-arm-kernel On Wed, Jul 26, 2017 at 02:02:42PM -0700, David Daney wrote: > Also, if a given configuration disables CONFIG_EDAC there is some hackery > needed to get the perf portion of the driver included. Yes, and we don't do performance counters in EDAC. So you could add a small memory controller driver which does the arbitration or fix the firmware. -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-27 5:11 ` Borislav Petkov @ 2017-07-27 9:08 ` Jan Glauber 2017-07-27 13:15 ` Borislav Petkov 2017-08-07 9:37 ` Suzuki K Poulose 0 siblings, 2 replies; 16+ messages in thread From: Jan Glauber @ 2017-07-27 9:08 UTC (permalink / raw) To: Borislav Petkov Cc: Mark Rutland, Suzuki K Poulose, Greg KH, Will Deacon, linux-kernel@vger.kernel.org, David Daney, linux-pci, linux-arm-kernel On Thu, Jul 27, 2017 at 07:11:57AM +0200, Borislav Petkov wrote: > On Wed, Jul 26, 2017 at 02:02:42PM -0700, David Daney wrote: > > Also, if a given configuration disables CONFIG_EDAC there is some hackery > > needed to get the perf portion of the driver included. > > Yes, and we don't do performance counters in EDAC. > > So you could add a small memory controller driver which does the > arbitration or fix the firmware. OK. As fixing the firmware will take quite some time I'll go for the memory controller driver that starts EDAC / PMU depending on their CONFIG_. What would be the proper location for the multiplexer? drivers/soc/cavium or drivers/misc? --Jan _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-27 9:08 ` Jan Glauber @ 2017-07-27 13:15 ` Borislav Petkov 2017-07-28 23:12 ` Greg KH 2017-08-07 9:37 ` Suzuki K Poulose 1 sibling, 1 reply; 16+ messages in thread From: Borislav Petkov @ 2017-07-27 13:15 UTC (permalink / raw) To: Jan Glauber, Greg KH Cc: David Daney, Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, linux-arm-kernel On Thu, Jul 27, 2017 at 11:08:56AM +0200, Jan Glauber wrote: > OK. As fixing the firmware will take quite some time I'll go for the memory > controller driver that starts EDAC / PMU depending on their CONFIG_. > > What would be the proper location for the multiplexer? > drivers/soc/cavium or drivers/misc? Uff, no idea. Greg? You're the special drivers guy. :-) -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-27 13:15 ` Borislav Petkov @ 2017-07-28 23:12 ` Greg KH 2017-08-08 13:25 ` Will Deacon 0 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2017-07-28 23:12 UTC (permalink / raw) To: Borislav Petkov Cc: Mark Rutland, Suzuki K Poulose, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, Jan Glauber, David Daney, linux-arm-kernel On Thu, Jul 27, 2017 at 03:15:15PM +0200, Borislav Petkov wrote: > On Thu, Jul 27, 2017 at 11:08:56AM +0200, Jan Glauber wrote: > > OK. As fixing the firmware will take quite some time I'll go for the memory > > controller driver that starts EDAC / PMU depending on their CONFIG_. > > > > What would be the proper location for the multiplexer? > > drivers/soc/cavium or drivers/misc? > > Uff, no idea. Greg? You're the special drivers guy. :-) Start out in misc/ and let's see the code to determine if it should be moved elsewhere. thanks, greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-28 23:12 ` Greg KH @ 2017-08-08 13:25 ` Will Deacon 2017-08-15 9:13 ` Jan Glauber 0 siblings, 1 reply; 16+ messages in thread From: Will Deacon @ 2017-08-08 13:25 UTC (permalink / raw) To: Greg KH Cc: Mark Rutland, Suzuki K Poulose, linux-pci, linux-kernel@vger.kernel.org, Jan Glauber, Borislav Petkov, David Daney, linux-arm-kernel On Fri, Jul 28, 2017 at 04:12:33PM -0700, Greg KH wrote: > On Thu, Jul 27, 2017 at 03:15:15PM +0200, Borislav Petkov wrote: > > On Thu, Jul 27, 2017 at 11:08:56AM +0200, Jan Glauber wrote: > > > OK. As fixing the firmware will take quite some time I'll go for the memory > > > controller driver that starts EDAC / PMU depending on their CONFIG_. > > > > > > What would be the proper location for the multiplexer? > > > drivers/soc/cavium or drivers/misc? > > > > Uff, no idea. Greg? You're the special drivers guy. :-) > > Start out in misc/ and let's see the code to determine if it should be > moved elsewhere. Jan, are you ok making this change, or are you waiting for anything else from us? (Mark and I are just going through the pending PMU patches and we're not clear on the status of this one). Cheers, Will _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-08-08 13:25 ` Will Deacon @ 2017-08-15 9:13 ` Jan Glauber 0 siblings, 0 replies; 16+ messages in thread From: Jan Glauber @ 2017-08-15 9:13 UTC (permalink / raw) To: Will Deacon Cc: Mark Rutland, Suzuki K Poulose, Greg KH, linux-kernel@vger.kernel.org, Borislav Petkov, David Daney, linux-pci, linux-arm-kernel On Tue, Aug 08, 2017 at 02:25:10PM +0100, Will Deacon wrote: > On Fri, Jul 28, 2017 at 04:12:33PM -0700, Greg KH wrote: > > On Thu, Jul 27, 2017 at 03:15:15PM +0200, Borislav Petkov wrote: > > > On Thu, Jul 27, 2017 at 11:08:56AM +0200, Jan Glauber wrote: > > > > OK. As fixing the firmware will take quite some time I'll go for the memory > > > > controller driver that starts EDAC / PMU depending on their CONFIG_. > > > > > > > > What would be the proper location for the multiplexer? > > > > drivers/soc/cavium or drivers/misc? > > > > > > Uff, no idea. Greg? You're the special drivers guy. :-) > > > > Start out in misc/ and let's see the code to determine if it should be > > moved elsewhere. > > Jan, are you ok making this change, or are you waiting for anything else > from us? (Mark and I are just going through the pending PMU patches and > we're not clear on the status of this one). Hi Will, it's my turn but I was on vacation. It was not completely trivial (well, to me) to get the multiplexing working with modules but I'll look at it again this week. Cheers, Jan _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters 2017-07-27 9:08 ` Jan Glauber 2017-07-27 13:15 ` Borislav Petkov @ 2017-08-07 9:37 ` Suzuki K Poulose 1 sibling, 0 replies; 16+ messages in thread From: Suzuki K Poulose @ 2017-08-07 9:37 UTC (permalink / raw) To: Jan Glauber, Borislav Petkov Cc: David Daney, Greg KH, Mark Rutland, linux-pci, Will Deacon, linux-kernel@vger.kernel.org, linux-arm-kernel On 27/07/17 10:08, Jan Glauber wrote: > On Thu, Jul 27, 2017 at 07:11:57AM +0200, Borislav Petkov wrote: >> On Wed, Jul 26, 2017 at 02:02:42PM -0700, David Daney wrote: >>> Also, if a given configuration disables CONFIG_EDAC there is some hackery >>> needed to get the perf portion of the driver included. >> >> Yes, and we don't do performance counters in EDAC. >> >> So you could add a small memory controller driver which does the >> arbitration or fix the firmware. > > OK. As fixing the firmware will take quite some time I'll go for the memory > controller driver that starts EDAC / PMU depending on their CONFIG_. Please could you also rename CAVIUM_PMU to something like CAVIUM_MMC_PMU or even CAVIUM_UNCOR_PMU ? The symbol could easily be mistaken for a "cavium" CPU PMU. Suzuki > > What would be the proper location for the multiplexer? > drivers/soc/cavium or drivers/misc? > > --Jan > ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2017-08-15 9:13 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20170726111946.GA6273@hc>
[not found] ` <faa339c4-b087-d970-1099-3d6cf8186545@arm.com>
[not found] ` <20170726131058.GA8665@hc>
[not found] ` <131179fe-42e7-f286-5bd4-801f4c93d5f9@arm.com>
[not found] ` <20170726145522.GC28875@nazgul.tnic>
[not found] ` <20170726151314.GA10696@hc>
[not found] ` <20170726153502.GE28875@nazgul.tnic>
[not found] ` <20170726154515.GA11453@hc>
[not found] ` <20170726155548.GF28875@nazgul.tnic>
[not found] ` <20170726161949.GB15426@kroah.com>
2017-07-26 16:30 ` [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters Borislav Petkov
2017-07-26 17:33 ` Greg KH
2017-07-26 20:02 ` David Daney
2017-07-26 20:08 ` Greg KH
2017-07-26 21:02 ` David Daney
2017-07-27 2:29 ` Greg KH
2017-07-27 17:29 ` David Daney
2017-07-28 1:11 ` Greg KH
2017-07-28 7:23 ` Borislav Petkov
2017-07-27 5:11 ` Borislav Petkov
2017-07-27 9:08 ` Jan Glauber
2017-07-27 13:15 ` Borislav Petkov
2017-07-28 23:12 ` Greg KH
2017-08-08 13:25 ` Will Deacon
2017-08-15 9:13 ` Jan Glauber
2017-08-07 9:37 ` Suzuki K Poulose
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).