Re: [PATCH 2/4] counter: new TI eQEP driver

2019-08-02 Thread William Breathitt Gray
On Fri, Aug 02, 2019 at 11:17:11AM -0500, David Lechner wrote: > On 8/2/19 4:27 AM, William Breathitt Gray wrote: > >> +static const struct counter_ops ti_eqep_counter_ops = { > >> + .count_read = ti_eqep_count_read, > >> + .count_write= ti_eqep_count_write, > >> + .function_get = ti_e

Re: [PATCH 2/4] counter: new TI eQEP driver

2019-08-02 Thread David Lechner
On 8/2/19 4:27 AM, William Breathitt Gray wrote: +static const struct counter_ops ti_eqep_counter_ops = { + .count_read = ti_eqep_count_read, + .count_write= ti_eqep_count_write, + .function_get = ti_eqep_function_get, + .function_set = ti_eqep_function_set, +}

Re: [PATCH 2/4] counter: new TI eQEP driver

2019-08-02 Thread David Lechner
On 8/2/19 4:27 AM, William Breathitt Gray wrote: diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig index a7e57516959e..ddcbb8573894 100644 --- a/drivers/pwm/Kconfig +++ b/drivers/pwm/Kconfig @@ -499,7 +499,7 @@ config PWM_TIEHRPWM config PWM_TIPWMSS bool - default y if

Re: [PATCH 2/4] counter: new TI eQEP driver

2019-08-02 Thread William Breathitt Gray
On Mon, Jul 22, 2019 at 10:45:36AM -0500, David Lechner wrote: > This adds a new counter driver for the Texas Instruments Enhanced > Quadrature Encoder Pulse (eQEP) module. > > Only very basic functionality is currently implemented - only enough to > be able to read the position. The actual device

Re: [PATCH 2/4] counter: new TI eQEP driver

2019-07-30 Thread David Lechner
On 7/30/19 7:35 AM, Uwe Kleine-König wrote: On Mon, Jul 22, 2019 at 10:45:36AM -0500, David Lechner wrote: This adds a new counter driver for the Texas Instruments Enhanced Quadrature Encoder Pulse (eQEP) module. Only very basic functionality is currently implemented - only enough to be able to

Re: [PATCH 2/4] counter: new TI eQEP driver

2019-07-30 Thread Uwe Kleine-König
On Mon, Jul 22, 2019 at 10:45:36AM -0500, David Lechner wrote: > This adds a new counter driver for the Texas Instruments Enhanced > Quadrature Encoder Pulse (eQEP) module. > > Only very basic functionality is currently implemented - only enough to > be able to read the position. The actual device

[PATCH 2/4] counter: new TI eQEP driver

2019-07-22 Thread David Lechner
This adds a new counter driver for the Texas Instruments Enhanced Quadrature Encoder Pulse (eQEP) module. Only very basic functionality is currently implemented - only enough to be able to read the position. The actual device has many more features which can be added to the driver on an as-needed