All of lore.kernel.org
 help / color / mirror / Atom feed
* Cleanup Samsung stuff
@ 2011-04-19  1:46 ` Kukjin Kim
  0 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-19  1:46 UTC (permalink / raw)
  To: 'LAK', linux-samsung-soc
  Cc: 'Ben Dooks', 'Russell King'

Hi all,

I think, you know about current situation of Linux ARM world.

So...

As Russell suggested, I also will focus on consolidations and bug fixes for
Samsung stuff for a while so don't complain about missing new stuff. In my
opinion, we can keep going it later...

As a note, I'm doing(or preparing) following at the moment.

- Removing some "mach-s5pxxxx"s
- Removing useless header files in include/{mach,plat} of Samsung
- Samsung GPIO stuff cleanup/consolidation
- Samsung DMA stuff consolidation?
- Device tree (with Linaro)
- and so on...

If required anything else, please let me know.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* Cleanup Samsung stuff
@ 2011-04-19  1:46 ` Kukjin Kim
  0 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-19  1:46 UTC (permalink / raw)
  To: linux-arm-kernel

Hi all,

I think, you know about current situation of Linux ARM world.

So...

As Russell suggested, I also will focus on consolidations and bug fixes for
Samsung stuff for a while so don't complain about missing new stuff. In my
opinion, we can keep going it later...

As a note, I'm doing(or preparing) following at the moment.

- Removing some "mach-s5pxxxx"s
- Removing useless header files in include/{mach,plat} of Samsung
- Samsung GPIO stuff cleanup/consolidation
- Samsung DMA stuff consolidation?
- Device tree (with Linaro)
- and so on...

If required anything else, please let me know.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* Re: Cleanup Samsung stuff
  2011-04-19  1:46 ` Kukjin Kim
@ 2011-04-19  2:23   ` Kyungmin Park
  -1 siblings, 0 replies; 24+ messages in thread
From: Kyungmin Park @ 2011-04-19  2:23 UTC (permalink / raw)
  To: Kukjin Kim
  Cc: LAK, linux-samsung-soc, Ben Dooks, Russell King, Marek Szyprowski,
	함명주, 대인기

On Tue, Apr 19, 2011 at 10:46 AM, Kukjin Kim <kgene.kim@samsung.com> wrote:
> Hi all,
>
> I think, you know about current situation of Linux ARM world.
>
> So...
>
> As Russell suggested, I also will focus on consolidations and bug fixes for
> Samsung stuff for a while so don't complain about missing new stuff. In my
> opinion, we can keep going it later...
>
> As a note, I'm doing(or preparing) following at the moment.
>
> - Removing some "mach-s5pxxxx"s
Why not mach-s3c series? don't you think too much plat-{s3c, s5p,
samsung}? how about to use the plat-samsung only?
> - Removing useless header files in include/{mach,plat} of Samsung
> - Samsung GPIO stuff cleanup/consolidation
> - Samsung DMA stuff consolidation?
   -> Move to dmaengine and use it.
> - Device tree (with Linaro)
> - and so on...

   - Strange Samsung Clock and names consolidation.
   - IRQ stuff (some parts are done by tglx but need to use the
generic IRQ base instead of odd +32 magic)
   - generic IOMMU consolidation.

BTW, who works on this at LSI?

Thank you,
Kyungmin Park

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

* Cleanup Samsung stuff
@ 2011-04-19  2:23   ` Kyungmin Park
  0 siblings, 0 replies; 24+ messages in thread
From: Kyungmin Park @ 2011-04-19  2:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Apr 19, 2011 at 10:46 AM, Kukjin Kim <kgene.kim@samsung.com> wrote:
> Hi all,
>
> I think, you know about current situation of Linux ARM world.
>
> So...
>
> As Russell suggested, I also will focus on consolidations and bug fixes for
> Samsung stuff for a while so don't complain about missing new stuff. In my
> opinion, we can keep going it later...
>
> As a note, I'm doing(or preparing) following at the moment.
>
> - Removing some "mach-s5pxxxx"s
Why not mach-s3c series? don't you think too much plat-{s3c, s5p,
samsung}? how about to use the plat-samsung only?
> - Removing useless header files in include/{mach,plat} of Samsung
> - Samsung GPIO stuff cleanup/consolidation
> - Samsung DMA stuff consolidation?
   -> Move to dmaengine and use it.
> - Device tree (with Linaro)
> - and so on...

   - Strange Samsung Clock and names consolidation.
   - IRQ stuff (some parts are done by tglx but need to use the
generic IRQ base instead of odd +32 magic)
   - generic IOMMU consolidation.

BTW, who works on this at LSI?

Thank you,
Kyungmin Park

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

* Re: Cleanup Samsung stuff
  2011-04-19  2:23   ` Kyungmin Park
@ 2011-04-19  2:52     ` MyungJoo Ham
  -1 siblings, 0 replies; 24+ messages in thread
From: MyungJoo Ham @ 2011-04-19  2:52 UTC (permalink / raw)
  To: Kyungmin Park
  Cc: Kukjin Kim, linux-samsung-soc, 대인기,
	Ben Dooks, Russell King, LAK, Marek Szyprowski, MyungJoo Ham

Hello everyone,

Anyway, I've got a quick question about the directory structure in arch/arm/*

Is there any reason not to keep mach-* in plat-* directories while
mach-* appears to be a "sub-categories" of plat-*?

For example, rather than the current structure:
arch/arm/plat-samsung/
arch/arm/mach-s5pv210/
arch/arm/mach-s5p****/
, why don't we structure them like:
arch/arm/plat-samsung/mach-s5pv210/
arch/arm/plat-samsung/mach-s5p****/

For mach-* that is not included in and does not use any plat-*, we may
make "arch/arm/plat-common" or just put them at arch/arm/.

Probably there could be discussions like this (likely), but I just
don't know why we are not structured like that. If it is because we
have some mach-* that use multiple plat-*, (multiple inheritance?) we
may be able to move on with this consolidation.



Cheers!

- MyungJoo

2011/4/19 Kyungmin Park <kmpark@infradead.org>:
> On Tue, Apr 19, 2011 at 10:46 AM, Kukjin Kim <kgene.kim@samsung.com> wrote:
>> Hi all,
>>
>> I think, you know about current situation of Linux ARM world.
>>
>> So...
>>
>> As Russell suggested, I also will focus on consolidations and bug fixes for
>> Samsung stuff for a while so don't complain about missing new stuff. In my
>> opinion, we can keep going it later...
>>
>> As a note, I'm doing(or preparing) following at the moment.
>>
>> - Removing some "mach-s5pxxxx"s
> Why not mach-s3c series? don't you think too much plat-{s3c, s5p,
> samsung}? how about to use the plat-samsung only?
>> - Removing useless header files in include/{mach,plat} of Samsung
>> - Samsung GPIO stuff cleanup/consolidation
>> - Samsung DMA stuff consolidation?
>   -> Move to dmaengine and use it.
>> - Device tree (with Linaro)
>> - and so on...
>
>   - Strange Samsung Clock and names consolidation.
>   - IRQ stuff (some parts are done by tglx but need to use the
> generic IRQ base instead of odd +32 magic)
>   - generic IOMMU consolidation.
>
> BTW, who works on this at LSI?
>
> Thank you,
> Kyungmin Park
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>



-- 
MyungJoo Ham (함명주), Ph.D.
Mobile Software Platform Lab,
Digital Media and Communications (DMC) Business
Samsung Electronics
cell: 82-10-6714-2858

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

* Cleanup Samsung stuff
@ 2011-04-19  2:52     ` MyungJoo Ham
  0 siblings, 0 replies; 24+ messages in thread
From: MyungJoo Ham @ 2011-04-19  2:52 UTC (permalink / raw)
  To: linux-arm-kernel

Hello everyone,

Anyway, I've got a quick question about the directory structure in arch/arm/*

Is there any reason not to keep mach-* in plat-* directories while
mach-* appears to be a "sub-categories" of plat-*?

For example, rather than the current structure:
arch/arm/plat-samsung/
arch/arm/mach-s5pv210/
arch/arm/mach-s5p****/
, why don't we structure them like:
arch/arm/plat-samsung/mach-s5pv210/
arch/arm/plat-samsung/mach-s5p****/

For mach-* that is not included in and does not use any plat-*, we may
make "arch/arm/plat-common" or just put them at arch/arm/.

Probably there could be discussions like this (likely), but I just
don't know why we are not structured like that. If it is because we
have some mach-* that use multiple plat-*, (multiple inheritance?) we
may be able to move on with this consolidation.



Cheers!

- MyungJoo

2011/4/19 Kyungmin Park <kmpark@infradead.org>:
> On Tue, Apr 19, 2011 at 10:46 AM, Kukjin Kim <kgene.kim@samsung.com> wrote:
>> Hi all,
>>
>> I think, you know about current situation of Linux ARM world.
>>
>> So...
>>
>> As Russell suggested, I also will focus on consolidations and bug fixes for
>> Samsung stuff for a while so don't complain about missing new stuff. In my
>> opinion, we can keep going it later...
>>
>> As a note, I'm doing(or preparing) following at the moment.
>>
>> - Removing some "mach-s5pxxxx"s
> Why not mach-s3c series? don't you think too much plat-{s3c, s5p,
> samsung}? how about to use the plat-samsung only?
>> - Removing useless header files in include/{mach,plat} of Samsung
>> - Samsung GPIO stuff cleanup/consolidation
>> - Samsung DMA stuff consolidation?
> ? -> Move to dmaengine and use it.
>> - Device tree (with Linaro)
>> - and so on...
>
> ? - Strange Samsung Clock and names consolidation.
> ? - IRQ stuff (some parts are done by tglx but need to use the
> generic IRQ base instead of odd +32 magic)
> ? - generic IOMMU consolidation.
>
> BTW, who works on this at LSI?
>
> Thank you,
> Kyungmin Park
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>



-- 
MyungJoo Ham (???), Ph.D.
Mobile Software Platform Lab,
Digital Media and Communications (DMC) Business
Samsung Electronics
cell: 82-10-6714-2858

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

* Re: Cleanup Samsung stuff
  2011-04-19  1:46 ` Kukjin Kim
@ 2011-04-19  8:03   ` Mark Brown
  -1 siblings, 0 replies; 24+ messages in thread
From: Mark Brown @ 2011-04-19  8:03 UTC (permalink / raw)
  To: Kukjin Kim
  Cc: 'LAK', linux-samsung-soc, 'Russell King',
	'Ben Dooks'

On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:

> - Device tree (with Linaro)

What is going on with device tree?  I've asked a couple of times about
this in the other thread but I'm still not clear where the code is or
what could usefully be done with it.

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

* Cleanup Samsung stuff
@ 2011-04-19  8:03   ` Mark Brown
  0 siblings, 0 replies; 24+ messages in thread
From: Mark Brown @ 2011-04-19  8:03 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:

> - Device tree (with Linaro)

What is going on with device tree?  I've asked a couple of times about
this in the other thread but I'm still not clear where the code is or
what could usefully be done with it.

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

* Re: Cleanup Samsung stuff
  2011-04-19  8:03   ` Mark Brown
@ 2011-04-19  8:40     ` Thomas Abraham
  -1 siblings, 0 replies; 24+ messages in thread
From: Thomas Abraham @ 2011-04-19  8:40 UTC (permalink / raw)
  To: Mark Brown; +Cc: Kukjin Kim, LAK, linux-samsung-soc, Russell King, Ben Dooks

On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
<broonie@opensource.wolfsonmicro.com> wrote:
> On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
>
>> - Device tree (with Linaro)
>
> What is going on with device tree?  I've asked a couple of times about
> this in the other thread but I'm still not clear where the code is or
> what could usefully be done with it.

The initial work on Samsung's s5pv310 is available at
http://lists.ozlabs.org/pipermail/devicetree-discuss/2011-February/004350.html

It is based on Grant's tree.
git://git.secretlab.ca/git/linux-2.6 devicetree/test

Currently I am working on supporting clkdev and Jeremy's common clock
for all of Samsung's platforms and then continue with the device tree
support for s5pv310.

Regards,
Thomas.

> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

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

* Cleanup Samsung stuff
@ 2011-04-19  8:40     ` Thomas Abraham
  0 siblings, 0 replies; 24+ messages in thread
From: Thomas Abraham @ 2011-04-19  8:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
<broonie@opensource.wolfsonmicro.com> wrote:
> On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
>
>> - Device tree (with Linaro)
>
> What is going on with device tree? ?I've asked a couple of times about
> this in the other thread but I'm still not clear where the code is or
> what could usefully be done with it.

The initial work on Samsung's s5pv310 is available at
http://lists.ozlabs.org/pipermail/devicetree-discuss/2011-February/004350.html

It is based on Grant's tree.
git://git.secretlab.ca/git/linux-2.6 devicetree/test

Currently I am working on supporting clkdev and Jeremy's common clock
for all of Samsung's platforms and then continue with the device tree
support for s5pv310.

Regards,
Thomas.

> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at ?http://vger.kernel.org/majordomo-info.html
>

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

* Re: Cleanup Samsung stuff
  2011-04-19  8:40     ` Thomas Abraham
@ 2011-04-19 10:59       ` Domenico Andreoli
  -1 siblings, 0 replies; 24+ messages in thread
From: Domenico Andreoli @ 2011-04-19 10:59 UTC (permalink / raw)
  To: Thomas Abraham
  Cc: Mark Brown, linux-samsung-soc, Kukjin Kim, Ben Dooks, LAK,
	Russell King

On Tue, Apr 19, 2011 at 10:40 AM, Thomas Abraham <thomas.ab@samsung.com> wrote:
> On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
> <broonie@opensource.wolfsonmicro.com> wrote:
>> On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
>>
>>> - Device tree (with Linaro)
>>
>> What is going on with device tree?  I've asked a couple of times about
>> this in the other thread but I'm still not clear where the code is or
>> what could usefully be done with it.
>
> Currently I am working on supporting clkdev and Jeremy's common clock
> for all of Samsung's platforms and then continue with the device tree
> support for s5pv310.

I already posted some patches that add DeviceTree to s3c24xx (gpio, sdi).
I'm hanging on sdi because I found that mmc-spi already has some DT
support and I'm working to generalize it.

If nobody opposes I'll continue with the effort.

cheers,
Domenico

-----[ Domenico Andreoli, aka cavok
 --[ http://www.dandreoli.com/gpgkey.asc
   ---[ 3A0F 2F80 F79C 678A 8936  4FEE 0677 9033 A20E BC50

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

* Cleanup Samsung stuff
@ 2011-04-19 10:59       ` Domenico Andreoli
  0 siblings, 0 replies; 24+ messages in thread
From: Domenico Andreoli @ 2011-04-19 10:59 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Apr 19, 2011 at 10:40 AM, Thomas Abraham <thomas.ab@samsung.com> wrote:
> On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
> <broonie@opensource.wolfsonmicro.com> wrote:
>> On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
>>
>>> - Device tree (with Linaro)
>>
>> What is going on with device tree? ?I've asked a couple of times about
>> this in the other thread but I'm still not clear where the code is or
>> what could usefully be done with it.
>
> Currently I am working on supporting clkdev and Jeremy's common clock
> for all of Samsung's platforms and then continue with the device tree
> support for s5pv310.

I already posted some patches that add DeviceTree to s3c24xx (gpio, sdi).
I'm hanging on sdi because I found that mmc-spi already has some DT
support and I'm working to generalize it.

If nobody opposes I'll continue with the effort.

cheers,
Domenico

-----[ Domenico Andreoli, aka cavok
?--[ http://www.dandreoli.com/gpgkey.asc
?? ---[ 3A0F 2F80 F79C 678A 8936? 4FEE 0677 9033 A20E BC50

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

* Re: Cleanup Samsung stuff
  2011-04-19  2:23   ` Kyungmin Park
@ 2011-04-19 14:49     ` David Anders
  -1 siblings, 0 replies; 24+ messages in thread
From: David Anders @ 2011-04-19 14:49 UTC (permalink / raw)
  To: Kyungmin Park
  Cc: Kukjin Kim, linux-samsung-soc@vger.kernel.org,
	대인기, 함명주, Ben Dooks,
	Russell King, LAK, Marek Szyprowski

Greetings All,


i've been looking at a number of machine files for boards that are no
longer in production(mainly the ones i maintain), thoughts on removing them?


Dave

On 04/18/2011 09:23 PM, Kyungmin Park wrote:
> On Tue, Apr 19, 2011 at 10:46 AM, Kukjin Kim <kgene.kim@samsung.com> wrote:
>   
>> Hi all,
>>
>> I think, you know about current situation of Linux ARM world.
>>
>> So...
>>
>> As Russell suggested, I also will focus on consolidations and bug fixes for
>> Samsung stuff for a while so don't complain about missing new stuff. In my
>> opinion, we can keep going it later...
>>
>> As a note, I'm doing(or preparing) following at the moment.
>>
>> - Removing some "mach-s5pxxxx"s
>>     
> Why not mach-s3c series? don't you think too much plat-{s3c, s5p,
> samsung}? how about to use the plat-samsung only?
>   
>> - Removing useless header files in include/{mach,plat} of Samsung
>> - Samsung GPIO stuff cleanup/consolidation
>> - Samsung DMA stuff consolidation?
>>     
>    -> Move to dmaengine and use it.
>   
>> - Device tree (with Linaro)
>> - and so on...
>>     
>    - Strange Samsung Clock and names consolidation.
>    - IRQ stuff (some parts are done by tglx but need to use the
> generic IRQ base instead of odd +32 magic)
>    - generic IOMMU consolidation.
>
> BTW, who works on this at LSI?
>
> Thank you,
> Kyungmin Park
>
> _______________________________________________
> 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] 24+ messages in thread

* Cleanup Samsung stuff
@ 2011-04-19 14:49     ` David Anders
  0 siblings, 0 replies; 24+ messages in thread
From: David Anders @ 2011-04-19 14:49 UTC (permalink / raw)
  To: linux-arm-kernel

Greetings All,


i've been looking at a number of machine files for boards that are no
longer in production(mainly the ones i maintain), thoughts on removing them?


Dave

On 04/18/2011 09:23 PM, Kyungmin Park wrote:
> On Tue, Apr 19, 2011 at 10:46 AM, Kukjin Kim <kgene.kim@samsung.com> wrote:
>   
>> Hi all,
>>
>> I think, you know about current situation of Linux ARM world.
>>
>> So...
>>
>> As Russell suggested, I also will focus on consolidations and bug fixes for
>> Samsung stuff for a while so don't complain about missing new stuff. In my
>> opinion, we can keep going it later...
>>
>> As a note, I'm doing(or preparing) following at the moment.
>>
>> - Removing some "mach-s5pxxxx"s
>>     
> Why not mach-s3c series? don't you think too much plat-{s3c, s5p,
> samsung}? how about to use the plat-samsung only?
>   
>> - Removing useless header files in include/{mach,plat} of Samsung
>> - Samsung GPIO stuff cleanup/consolidation
>> - Samsung DMA stuff consolidation?
>>     
>    -> Move to dmaengine and use it.
>   
>> - Device tree (with Linaro)
>> - and so on...
>>     
>    - Strange Samsung Clock and names consolidation.
>    - IRQ stuff (some parts are done by tglx but need to use the
> generic IRQ base instead of odd +32 magic)
>    - generic IOMMU consolidation.
>
> BTW, who works on this at LSI?
>
> Thank you,
> Kyungmin Park
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>   

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

* Re: Cleanup Samsung stuff
  2011-04-19  1:46 ` Kukjin Kim
@ 2011-04-20  7:46   ` Nick Pelling
  -1 siblings, 0 replies; 24+ messages in thread
From: Nick Pelling @ 2011-04-20  7:46 UTC (permalink / raw)
  To: Kukjin Kim, 'LAK', linux-samsung-soc

Hi Kgene,

At 10:46 19/04/2011 +0900, Kukjin Kim wrote:
>As a note, I'm doing(or preparing) following at the moment.
>- Removing some "mach-s5pxxxx"s

Are you planning to remove mach-s5pc100? If yes, is this with the 
intention of reducing arch/arm code size (by merging, say, with the 
s5pc110 tree), or because of some upcoming Samsung EOL event? :-(

(I'm building security cameras based on the s5pc100, working with 
mach-s5pc100 issues every day).

Best regards, ....Nick Pelling.... 

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

* Cleanup Samsung stuff
@ 2011-04-20  7:46   ` Nick Pelling
  0 siblings, 0 replies; 24+ messages in thread
From: Nick Pelling @ 2011-04-20  7:46 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Kgene,

At 10:46 19/04/2011 +0900, Kukjin Kim wrote:
>As a note, I'm doing(or preparing) following at the moment.
>- Removing some "mach-s5pxxxx"s

Are you planning to remove mach-s5pc100? If yes, is this with the 
intention of reducing arch/arm code size (by merging, say, with the 
s5pc110 tree), or because of some upcoming Samsung EOL event? :-(

(I'm building security cameras based on the s5pc100, working with 
mach-s5pc100 issues every day).

Best regards, ....Nick Pelling.... 

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

* RE: Cleanup Samsung stuff
  2011-04-20  7:46   ` Nick Pelling
@ 2011-04-21 10:57     ` Kukjin Kim
  -1 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 10:57 UTC (permalink / raw)
  To: 'Nick Pelling', 'LAK', linux-samsung-soc

Nick Pelling wrote:
> 
> Hi Kgene,
> 
Hi :)

> At 10:46 19/04/2011 +0900, Kukjin Kim wrote:
> >As a note, I'm doing(or preparing) following at the moment.
> >- Removing some "mach-s5pxxxx"s
> 
> Are you planning to remove mach-s5pc100? If yes, is this with the
> intention of reducing arch/arm code size (by merging, say, with the
> s5pc110 tree), or because of some upcoming Samsung EOL event? :-(
> 
Hmm...There is no decisions about that yet. Just I'm thinking and checking
the status of each ARCH(mach-xxxx).
Of course, if any updates, will inform here.

> (I'm building security cameras based on the s5pc100, working with
> mach-s5pc100 issues every day).
> 
Only for S5PC100?

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* Cleanup Samsung stuff
@ 2011-04-21 10:57     ` Kukjin Kim
  0 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 10:57 UTC (permalink / raw)
  To: linux-arm-kernel

Nick Pelling wrote:
> 
> Hi Kgene,
> 
Hi :)

> At 10:46 19/04/2011 +0900, Kukjin Kim wrote:
> >As a note, I'm doing(or preparing) following at the moment.
> >- Removing some "mach-s5pxxxx"s
> 
> Are you planning to remove mach-s5pc100? If yes, is this with the
> intention of reducing arch/arm code size (by merging, say, with the
> s5pc110 tree), or because of some upcoming Samsung EOL event? :-(
> 
Hmm...There is no decisions about that yet. Just I'm thinking and checking
the status of each ARCH(mach-xxxx).
Of course, if any updates, will inform here.

> (I'm building security cameras based on the s5pc100, working with
> mach-s5pc100 issues every day).
> 
Only for S5PC100?

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* RE: Cleanup Samsung stuff
  2011-04-19 14:49     ` David Anders
@ 2011-04-21 11:11       ` Kukjin Kim
  -1 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 11:11 UTC (permalink / raw)
  To: 'David Anders'
  Cc: linux-samsung-soc, 'Ben Dooks', 'Russell King',
	'LAK', 'Marek Szyprowski'

David Anders
> 
> Greetings All,
> 
Hi,

> 
> i've been looking at a number of machine files for boards that are no
> longer in production(mainly the ones i maintain), thoughts on removing
them?

You mean mach-amlm5900.c and mach-tct_hammer.c in mach-s3c2410?

Hmm...as you know, we need to think again and talk to others before removing
them even though you made them and as I said in previous reply, there is no
decisions yet about that.

As a note, Ben Dooks maintains S3C SoCs. I mean I need to talk to him about
that in detail.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* Cleanup Samsung stuff
@ 2011-04-21 11:11       ` Kukjin Kim
  0 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 11:11 UTC (permalink / raw)
  To: linux-arm-kernel

David Anders
> 
> Greetings All,
> 
Hi,

> 
> i've been looking at a number of machine files for boards that are no
> longer in production(mainly the ones i maintain), thoughts on removing
them?

You mean mach-amlm5900.c and mach-tct_hammer.c in mach-s3c2410?

Hmm...as you know, we need to think again and talk to others before removing
them even though you made them and as I said in previous reply, there is no
decisions yet about that.

As a note, Ben Dooks maintains S3C SoCs. I mean I need to talk to him about
that in detail.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* RE: Cleanup Samsung stuff
  2011-04-19 10:59       ` Domenico Andreoli
@ 2011-04-21 11:13         ` Kukjin Kim
  -1 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 11:13 UTC (permalink / raw)
  To: 'Domenico Andreoli', 'Thomas Abraham'
  Cc: 'Mark Brown', linux-samsung-soc, 'Ben Dooks',
	'LAK', 'Russell King'

Domenico Andreoli wrote:
> 
> On Tue, Apr 19, 2011 at 10:40 AM, Thomas Abraham <thomas.ab@samsung.com>
> wrote:
> > On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
> > <broonie@opensource.wolfsonmicro.com> wrote:
> >> On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
> >>
> >>> - Device tree (with Linaro)
> >>
> >> What is going on with device tree?  I've asked a couple of times about
> >> this in the other thread but I'm still not clear where the code is or
> >> what could usefully be done with it.
> >
> > Currently I am working on supporting clkdev and Jeremy's common clock
> > for all of Samsung's platforms and then continue with the device tree
> > support for s5pv310.
> 
> I already posted some patches that add DeviceTree to s3c24xx (gpio, sdi).
> I'm hanging on sdi because I found that mmc-spi already has some DT
> support and I'm working to generalize it.
> 
> If nobody opposes I'll continue with the effort.

Could you please send them to me and Ben Dooks?

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* Cleanup Samsung stuff
@ 2011-04-21 11:13         ` Kukjin Kim
  0 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 11:13 UTC (permalink / raw)
  To: linux-arm-kernel

Domenico Andreoli wrote:
> 
> On Tue, Apr 19, 2011 at 10:40 AM, Thomas Abraham <thomas.ab@samsung.com>
> wrote:
> > On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
> > <broonie@opensource.wolfsonmicro.com> wrote:
> >> On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
> >>
> >>> - Device tree (with Linaro)
> >>
> >> What is going on with device tree? ?I've asked a couple of times about
> >> this in the other thread but I'm still not clear where the code is or
> >> what could usefully be done with it.
> >
> > Currently I am working on supporting clkdev and Jeremy's common clock
> > for all of Samsung's platforms and then continue with the device tree
> > support for s5pv310.
> 
> I already posted some patches that add DeviceTree to s3c24xx (gpio, sdi).
> I'm hanging on sdi because I found that mmc-spi already has some DT
> support and I'm working to generalize it.
> 
> If nobody opposes I'll continue with the effort.

Could you please send them to me and Ben Dooks?

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* RE: Cleanup Samsung stuff
  2011-04-19  8:40     ` Thomas Abraham
@ 2011-04-21 11:15       ` Kukjin Kim
  -1 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 11:15 UTC (permalink / raw)
  To: 'Thomas Abraham', 'Mark Brown'
  Cc: 'LAK', linux-samsung-soc, 'Russell King',
	'Ben Dooks'

Thomas Abraham wrote:
> 
> On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
> <broonie@opensource.wolfsonmicro.com> wrote:
> > On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
> >
> >> - Device tree (with Linaro)
> >
> > What is going on with device tree?  I've asked a couple of times about
> > this in the other thread but I'm still not clear where the code is or
> > what could usefully be done with it.
> 
> The initial work on Samsung's s5pv310 is available at
> http://lists.ozlabs.org/pipermail/devicetree-discuss/2011-
> February/004350.html
> 
> It is based on Grant's tree.
> git://git.secretlab.ca/git/linux-2.6 devicetree/test
> 
> Currently I am working on supporting clkdev and Jeremy's common clock
> for all of Samsung's platforms and then continue with the device tree
> support for s5pv310.
> 
Hi Thomas,

Thanks for your reply.

I also will review your patches of device tree and supporting clkdev soon.

If any updates after your posting, please let me know :)

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

* Cleanup Samsung stuff
@ 2011-04-21 11:15       ` Kukjin Kim
  0 siblings, 0 replies; 24+ messages in thread
From: Kukjin Kim @ 2011-04-21 11:15 UTC (permalink / raw)
  To: linux-arm-kernel

Thomas Abraham wrote:
> 
> On Tue, Apr 19, 2011 at 1:33 PM, Mark Brown
> <broonie@opensource.wolfsonmicro.com> wrote:
> > On Tue, Apr 19, 2011 at 10:46:47AM +0900, Kukjin Kim wrote:
> >
> >> - Device tree (with Linaro)
> >
> > What is going on with device tree? ?I've asked a couple of times about
> > this in the other thread but I'm still not clear where the code is or
> > what could usefully be done with it.
> 
> The initial work on Samsung's s5pv310 is available at
> http://lists.ozlabs.org/pipermail/devicetree-discuss/2011-
> February/004350.html
> 
> It is based on Grant's tree.
> git://git.secretlab.ca/git/linux-2.6 devicetree/test
> 
> Currently I am working on supporting clkdev and Jeremy's common clock
> for all of Samsung's platforms and then continue with the device tree
> support for s5pv310.
> 
Hi Thomas,

Thanks for your reply.

I also will review your patches of device tree and supporting clkdev soon.

If any updates after your posting, please let me know :)

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

end of thread, other threads:[~2011-04-21 11:15 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-19  1:46 Cleanup Samsung stuff Kukjin Kim
2011-04-19  1:46 ` Kukjin Kim
2011-04-19  2:23 ` Kyungmin Park
2011-04-19  2:23   ` Kyungmin Park
2011-04-19  2:52   ` MyungJoo Ham
2011-04-19  2:52     ` MyungJoo Ham
2011-04-19 14:49   ` David Anders
2011-04-19 14:49     ` David Anders
2011-04-21 11:11     ` Kukjin Kim
2011-04-21 11:11       ` Kukjin Kim
2011-04-19  8:03 ` Mark Brown
2011-04-19  8:03   ` Mark Brown
2011-04-19  8:40   ` Thomas Abraham
2011-04-19  8:40     ` Thomas Abraham
2011-04-19 10:59     ` Domenico Andreoli
2011-04-19 10:59       ` Domenico Andreoli
2011-04-21 11:13       ` Kukjin Kim
2011-04-21 11:13         ` Kukjin Kim
2011-04-21 11:15     ` Kukjin Kim
2011-04-21 11:15       ` Kukjin Kim
2011-04-20  7:46 ` Nick Pelling
2011-04-20  7:46   ` Nick Pelling
2011-04-21 10:57   ` Kukjin Kim
2011-04-21 10:57     ` Kukjin Kim

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.