linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* Is there some articles discussing how to change bare-board code to linux driver?
@ 2005-11-25  6:42 zengshuai
  2005-11-27  1:53 ` David H. Lynch Jr.
  0 siblings, 1 reply; 5+ messages in thread
From: zengshuai @ 2005-11-25  6:42 UTC (permalink / raw)
  To: Linuxppc-embedded

    Where can i find them?thanks.

------------------------------
我现在使用Sogou.com的2G邮箱了,你也来试试吧! 
http://mail.sogou.com/recommend/sogoumail_invite_reg1.jsp?from=sogouinvitation&s_EMAIL=zengshuai%40sogou.com&username=Linuxppc-embedded&FullName=Linuxppc-embedded&Email=Linuxppc-embedded%40ozlabs.org&verify=777667b18eda2b5dd1bbd47542afad9b

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

* Re: Is there some articles discussing how to change bare-board code to linux driver?
  2005-11-25  6:42 Is there some articles discussing how to change bare-board code to linux driver? zengshuai
@ 2005-11-27  1:53 ` David H. Lynch Jr.
  0 siblings, 0 replies; 5+ messages in thread
From: David H. Lynch Jr. @ 2005-11-27  1:53 UTC (permalink / raw)
  To: zengshuai; +Cc: Linuxppc-embedded

zengshuai@sogou.com wrote:
>     Where can i find them?thanks.
>   
http://lwn.net/Kernel/LDD3/

also Googling works.
> ------------------------------
> 我现在使用Sogou.com的2G邮箱了,你也来试试吧! 
> http://mail.sogou.com/recommend/sogoumail_invite_reg1.jsp?from=sogouinvitation&s_EMAIL=zengshuai%40sogou.com&username=Linuxppc-embedded&FullName=Linuxppc-embedded&Email=Linuxppc-embedded%40ozlabs.org&verify=777667b18eda2b5dd1bbd47542afad9b
>
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>
>   

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

* re: Is there some articles discussing how to change bare-board code to linux driver?
       [not found] <20051125214126.15F9E6884D@ozlabs.org>
@ 2005-11-30  0:35 ` T Ziomek
  2005-11-30  2:03   ` David H. Lynch Jr
  0 siblings, 1 reply; 5+ messages in thread
From: T Ziomek @ 2005-11-30  0:35 UTC (permalink / raw)
  To: linuxppc-embedded

>    Where can i find them?thanks.

In addition to LDD3 (for 2.6 kernels, or the freely available LDD2 for 2.4 
kernels), you might want to look at some existing Linux drivers that are
based on "bare metal" / "no OS" drivers.  The ones I know of are for Xilinx
peripherals, for example (within the Linux kernel tree),
- ./drivers/net/xilinx_enet
- ./drivers/char/xilinx_uartlite
- ./drivers/char/xilinx_gpio

Tom
-- 
   /"\  ASCII Ribbon Campaign   |
   \ /                          |   Email to user 'CTZ001'
    X        Against HTML       |             at 'email.mot.com'
   / \     in e-mail & news     |

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

* Re: Is there some articles discussing how to change bare-board code to linux driver?
  2005-11-30  0:35 ` T Ziomek
@ 2005-11-30  2:03   ` David H. Lynch Jr
  2005-11-30 10:04     ` Andrei Konovalov
  0 siblings, 1 reply; 5+ messages in thread
From: David H. Lynch Jr @ 2005-11-30  2:03 UTC (permalink / raw)
  To: T Ziomek, linuxppc-embedded

Where can I find the ./drivers/net/xilinx_enet, ... etc files.
I can not find them in the 2.6.14.2 tree

T Ziomek wrote:
>>    Where can i find them?thanks.
>
> In addition to LDD3 (for 2.6 kernels, or the freely available LDD2 for 
> 2.4 kernels), you might want to look at some existing Linux drivers 
> that are
> based on "bare metal" / "no OS" drivers.  The ones I know of are for 
> Xilinx
> peripherals, for example (within the Linux kernel tree),
> - ./drivers/net/xilinx_enet
> - ./drivers/char/xilinx_uartlite
> - ./drivers/char/xilinx_gpio
>
> Tom

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

* Re: Is there some articles discussing how to change bare-board code to linux driver?
  2005-11-30  2:03   ` David H. Lynch Jr
@ 2005-11-30 10:04     ` Andrei Konovalov
  0 siblings, 0 replies; 5+ messages in thread
From: Andrei Konovalov @ 2005-11-30 10:04 UTC (permalink / raw)
  To: David H. Lynch Jr; +Cc: T Ziomek, linuxppc-embedded

David H. Lynch Jr wrote:
> Where can I find the ./drivers/net/xilinx_enet, ... etc files.
> I can not find them in the 2.6.14.2 tree

They are in the linuxppc-2.4 tree. Try
rsync -avz --delete source.mvista.com::linuxppc-2.4 <directory>

-- Andrei

> T Ziomek wrote:
> 
>>>    Where can i find them?thanks.
>>
>>
>> In addition to LDD3 (for 2.6 kernels, or the freely available LDD2 for 
>> 2.4 kernels), you might want to look at some existing Linux drivers 
>> that are
>> based on "bare metal" / "no OS" drivers.  The ones I know of are for 
>> Xilinx
>> peripherals, for example (within the Linux kernel tree),
>> - ./drivers/net/xilinx_enet
>> - ./drivers/char/xilinx_uartlite
>> - ./drivers/char/xilinx_gpio
>>
>> Tom
> 
> 
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded

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

end of thread, other threads:[~2005-11-30 10:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-25  6:42 Is there some articles discussing how to change bare-board code to linux driver? zengshuai
2005-11-27  1:53 ` David H. Lynch Jr.
     [not found] <20051125214126.15F9E6884D@ozlabs.org>
2005-11-30  0:35 ` T Ziomek
2005-11-30  2:03   ` David H. Lynch Jr
2005-11-30 10:04     ` Andrei Konovalov

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).