* [ti-dac5571] Checking compatibility of TI DAC with kernel driver
@ 2024-07-23 23:07 Akash Borde
2024-07-24 12:48 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Akash Borde @ 2024-07-23 23:07 UTC (permalink / raw)
To: linux-iio@vger.kernel.org; +Cc: Emily Guthrie, Erika Silva, Bart Oegema
Hi,
I'd like to see if the TI DAC8563 is potentially compatible with this existing device driver in the main branch of the kernel.
This is the part I'm evaluating for my board: https://www.ti.com/lit/ds/symlink/dac8563.pdf
Here is the most similar kernel driver I could find: https://github.com/torvalds/linux/blob/master/drivers/iio/dac/ti-dac5571.c
I see very similar DACs in the compatible list of this driver, but not the exact part number family that I'm looking for.
Is there a way to verify a DAC or family of DACs' compatibility with existing drivers?
Thanks!
Akash Borde | Embedded Systems | Heila Technologies
https://heilatech.com/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ti-dac5571] Checking compatibility of TI DAC with kernel driver
2024-07-23 23:07 [ti-dac5571] Checking compatibility of TI DAC with kernel driver Akash Borde
@ 2024-07-24 12:48 ` Jonathan Cameron
2024-07-24 17:48 ` [EXT]: " Akash Borde
0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2024-07-24 12:48 UTC (permalink / raw)
To: Akash Borde
Cc: linux-iio@vger.kernel.org, Emily Guthrie, Erika Silva,
Bart Oegema
On Tue, 23 Jul 2024 23:07:19 +0000
Akash Borde <Akash.Borde@heilatech.com> wrote:
> Hi,
>
> I'd like to see if the TI DAC8563 is potentially compatible with this existing device driver in the main branch of the kernel.
>
> This is the part I'm evaluating for my board: https://www.ti.com/lit/ds/symlink/dac8563.pdf
> Here is the most similar kernel driver I could find: https://github.com/torvalds/linux/blob/master/drivers/iio/dac/ti-dac5571.c
>
> I see very similar DACs in the compatible list of this driver, but not the exact part number family that I'm looking for.
> Is there a way to verify a DAC or family of DACs' compatibility with existing drivers?
Sadly best bet is to open the datasheets side by side and verify if the
devices are compatible in all software visible ways.
It's a pain to do but only way to know if it will continue to be compatible
in the future if new driver features are added.
Jonathan
>
> Thanks!
>
> Akash Borde | Embedded Systems | Heila Technologies
> https://heilatech.com/
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [EXT]: Re: [ti-dac5571] Checking compatibility of TI DAC with kernel driver
2024-07-24 12:48 ` Jonathan Cameron
@ 2024-07-24 17:48 ` Akash Borde
0 siblings, 0 replies; 3+ messages in thread
From: Akash Borde @ 2024-07-24 17:48 UTC (permalink / raw)
To: Jonathan Cameron
Cc: linux-iio@vger.kernel.org, Emily Guthrie, Erika Silva,
Bart Oegema
Thanks for the quick reply! This is quite helpful.
On 7/24/24, 7:49 AM, "Jonathan Cameron" <Jonathan.Cameron@Huawei.com <mailto:Jonathan.Cameron@Huawei.com>> wrote:
On Tue, 23 Jul 2024 23:07:19 +0000
Akash Borde <Akash.Borde@heilatech.com <mailto:Akash.Borde@heilatech.com>> wrote:
> Hi,
>
> I'd like to see if the TI DAC8563 is potentially compatible with this existing device driver in the main branch of the kernel.
>
> This is the part I'm evaluating for my board: https://urldefense.com/v3/__https://www.ti.com/lit/ds/symlink/dac8563.pdf__;!!Lywf0ypNYjE!VRDwNzroeOL-yVc2IOxVIiaQV_SKaHPrDc8HBUJGaJfpACfRGYBFNBVygO2QIGFpam7nV6JT8l_bYFYfL0h5fJ06Pbt-hT4$ <https://urldefense.com/v3/__https://www.ti.com/lit/ds/symlink/dac8563.pdf__;!!Lywf0ypNYjE!VRDwNzroeOL-yVc2IOxVIiaQV_SKaHPrDc8HBUJGaJfpACfRGYBFNBVygO2QIGFpam7nV6JT8l_bYFYfL0h5fJ06Pbt-hT4$>
> Here is the most similar kernel driver I could find: https://urldefense.com/v3/__https://github.com/torvalds/linux/blob/master/drivers/iio/dac/ti-dac5571.c__;!!Lywf0ypNYjE!VRDwNzroeOL-yVc2IOxVIiaQV_SKaHPrDc8HBUJGaJfpACfRGYBFNBVygO2QIGFpam7nV6JT8l_bYFYfL0h5fJ06IoTMgVg$ <https://urldefense.com/v3/__https://github.com/torvalds/linux/blob/master/drivers/iio/dac/ti-dac5571.c__;!!Lywf0ypNYjE!VRDwNzroeOL-yVc2IOxVIiaQV_SKaHPrDc8HBUJGaJfpACfRGYBFNBVygO2QIGFpam7nV6JT8l_bYFYfL0h5fJ06IoTMgVg$>
>
> I see very similar DACs in the compatible list of this driver, but not the exact part number family that I'm looking for.
> Is there a way to verify a DAC or family of DACs' compatibility with existing drivers?
Sadly best bet is to open the datasheets side by side and verify if the
devices are compatible in all software visible ways.
It's a pain to do but only way to know if it will continue to be compatible
in the future if new driver features are added.
Jonathan
>
> Thanks!
>
> Akash Borde | Embedded Systems | Heila Technologies
> https://heilatech.com/ <https://heilatech.com/>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-24 18:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-23 23:07 [ti-dac5571] Checking compatibility of TI DAC with kernel driver Akash Borde
2024-07-24 12:48 ` Jonathan Cameron
2024-07-24 17:48 ` [EXT]: " Akash Borde
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.