public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Patch for MSP430 and SOC audio support for Neuros OSD2 platform code.
@ 2009-12-06 14:34 A. Porodko
  2009-12-08 16:00 ` Andrey A. Porodko
  0 siblings, 1 reply; 3+ messages in thread
From: A. Porodko @ 2009-12-06 14:34 UTC (permalink / raw)
  To: Kevin Hilman, Russell King, Andrey Porodko, linux-arm-kernel,
	linux-kernel

Hello,

Please, consider this patch for Neuros OSD2 platform code. Particular
drivers code have been
sent to consideration of respective maintainers.
Thank you.
--------------------------------------------------------------------------
>From e5aef120a1a4af6b678b8ffe6d9be1d065cb305e Mon Sep 17 00:00:00 2001
From: Andrey Porodko <panda@chelcom.ru>
Date: Sat, 5 Dec 2009 15:54:42 +0500
Subject: [PATCH] Neuros OSD2 board platform code patch for supporting msp430
 microcontroller and sound soc.

Signed-off-by: Andrey Porodko <panda@chelcom.ru>
---
 arch/arm/mach-davinci/board-neuros-osd2.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-davinci/board-neuros-osd2.c
b/arch/arm/mach-davinci/board-neuros-osd2.c
index bd9ca07..28b3d67 100644
--- a/arch/arm/mach-davinci/board-neuros-osd2.c
+++ b/arch/arm/mach-davinci/board-neuros-osd2.c
@@ -202,6 +202,12 @@ static struct davinci_i2c_platform_data
ntosd2_i2c_pdata = {
 };
 
 static struct i2c_board_info __initdata ntosd2_i2c_info[] =  {
+    {                    /* MSP430 interface    */
+        I2C_BOARD_INFO("davinci_msp", NTOSD2_MSP430_I2C_ADDR),
+    },
+    {
+        I2C_BOARD_INFO("tlv320aic3x", NTOSD2_AUDIOSOC_I2C_ADDR),
+    },
 };
 
 static    int ntosd2_init_i2c(void)
-- 
1.5.6.5


-- 
Best regards
Andrey A. Porodko
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Patch for MSP430 and SOC audio support for Neuros OSD2 platform code.
  2009-12-06 14:34 Patch for MSP430 and SOC audio support for Neuros OSD2 platform code A. Porodko
@ 2009-12-08 16:00 ` Andrey A. Porodko
       [not found]   ` <87pr6p2z5z.fsf@deeprootsystems.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Andrey A. Porodko @ 2009-12-08 16:00 UTC (permalink / raw)
  To: A. Porodko; +Cc: Kevin Hilman, Russell King, linux-arm-kernel, linux-kernel


Hello,

Please, consider this patch for Neuros OSD2 platform code. Particular
drivers code have been sent to consideration of respective maintainers.

Thank you.

P.S. Change log added.

-------------------------------------------------------------------------
>From e5aef120a1a4af6b678b8ffe6d9be1d065cb305e Mon Sep 17 00:00:00 2001
From: Andrey Porodko <panda@chelcom.ru>
Date: Sat, 5 Dec 2009 15:54:42 +0500
Subject: [PATCH] Neuros OSD2 board platform code patch for supporting msp430
 microcontroller and sound soc.

Initial release. Neuros OSD2 board i2c platform data description for MSP430
microprocessor and Audio SOC support. MSP430 firmware perform various operations.
Such as IR remote, RTC timer and etc. Audio SOC is very similar to DM6446EVM
board, the only difference here is i2c port address.

Signed-off-by: Andrey Porodko <panda@chelcom.ru>
---
 arch/arm/mach-davinci/board-neuros-osd2.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-davinci/board-neuros-osd2.c b/arch/arm/mach-davinci/board-neuros-osd2.c
index bd9ca07..28b3d67 100644
--- a/arch/arm/mach-davinci/board-neuros-osd2.c
+++ b/arch/arm/mach-davinci/board-neuros-osd2.c
@@ -202,6 +202,12 @@ static struct davinci_i2c_platform_data ntosd2_i2c_pdata = {
 };
 
 static struct i2c_board_info __initdata ntosd2_i2c_info[] =  {
+	{					/* MSP430 interface	*/
+		I2C_BOARD_INFO("davinci_msp", NTOSD2_MSP430_I2C_ADDR),
+	},
+	{
+		I2C_BOARD_INFO("tlv320aic3x", NTOSD2_AUDIOSOC_I2C_ADDR),
+	},
 };
 
 static	int ntosd2_init_i2c(void)
-- 
1.5.6.5

-------------------------------------------------------------------------


-- 
Best regards
Andrey A. Porodko
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Patch for MSP430 and SOC audio support for Neuros OSD2 platform code.
       [not found]   ` <87pr6p2z5z.fsf@deeprootsystems.com>
@ 2009-12-16  9:20     ` Andrey A. Porodko
  0 siblings, 0 replies; 3+ messages in thread
From: Andrey A. Porodko @ 2009-12-16  9:20 UTC (permalink / raw)
  To: Kevin Hilman, linux-kernel
  Cc: A. Porodko, davinci-linux-open-source@linux.davincidsp.com,
	Russell King, linux-arm-kernel

Kevin Hilman wrote:
> "Andrey A. Porodko" <andrey.porodko@gmail.com> writes:
>
>   
>> Hello,
>>
>> Please, consider this patch for Neuros OSD2 platform code. Particular
>> drivers code have been sent to consideration of respective maintainers.
>>
>> Thank you.
>>
>> P.S. Change log added.
>>
>> -------------------------------------------------------------------------
>> From e5aef120a1a4af6b678b8ffe6d9be1d065cb305e Mon Sep 17 00:00:00 2001
>> From: Andrey Porodko <panda@chelcom.ru>
>> Date: Sat, 5 Dec 2009 15:54:42 +0500
>> Subject: [PATCH] Neuros OSD2 board platform code patch for supporting msp430
>>  microcontroller and sound soc.
>>
>> Initial release. Neuros OSD2 board i2c platform data description for MSP430
>> microprocessor and Audio SOC support. MSP430 firmware perform various operations.
>> Such as IR remote, RTC timer and etc. Audio SOC is very similar to DM6446EVM
>> board, the only difference here is i2c port address.
>>
>> Signed-off-by: Andrey Porodko <panda@chelcom.ru>
>> ---
>>  arch/arm/mach-davinci/board-neuros-osd2.c |    6 ++++++
>>  1 files changed, 6 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/mach-davinci/board-neuros-osd2.c b/arch/arm/mach-davinci/board-neuros-osd2.c
>> index bd9ca07..28b3d67 100644
>> --- a/arch/arm/mach-davinci/board-neuros-osd2.c
>> +++ b/arch/arm/mach-davinci/board-neuros-osd2.c
>> @@ -202,6 +202,12 @@ static struct davinci_i2c_platform_data ntosd2_i2c_pdata = {
>>  };
>>  
>>  static struct i2c_board_info __initdata ntosd2_i2c_info[] =  {
>> +	{					/* MSP430 interface	*/
>> +		I2C_BOARD_INFO("davinci_msp", NTOSD2_MSP430_I2C_ADDR),
>> +	},
>>     
>
> Until the MSP430 driver is upstream, lets leave this one out.
>   
>> +	{
>> +		I2C_BOARD_INFO("tlv320aic3x", NTOSD2_AUDIOSOC_I2C_ADDR),
>> +	},
>>  };
>>     
>
> Can you resend with just the aic3x addition.
>
> Also, can you update your address book so that my name is not
> associated with the list address: davinci-linux-open-source@linux.davincidsp.com
>
>   
Kevin,

What if we leave it  as it is? My reason is that whoever would want to
implement these drivers will need this modification of platform files.
> I'm not sure if you're trying to send to me and the list but you're
> sending to "Kevin Hilman <davinci-linux-open-source@linux.davincidsp.com>"
> which is not correct.
>   
I'm sorry to hear that. I checked my address lists... Looks like I made
the mess copying and pasting addresses when was sending messages. Well,
I'll be more attentive.




-- 
Best regards
Andrey A. Porodko
 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-12-16  9:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-06 14:34 Patch for MSP430 and SOC audio support for Neuros OSD2 platform code A. Porodko
2009-12-08 16:00 ` Andrey A. Porodko
     [not found]   ` <87pr6p2z5z.fsf@deeprootsystems.com>
2009-12-16  9:20     ` Andrey A. Porodko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox