<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.2900.5969" name=GENERATOR>
<STYLE>@font-face {
        font-family: 宋体;
}
@font-face {
        font-family: Verdana;
}
@font-face {
        font-family: @宋体;
}
@page Section1 {size: 595.3pt 841.9pt; margin: 72.0pt 90.0pt 72.0pt 90.0pt; layout-grid: 15.6pt; }
P.MsoNormal {
        TEXT-JUSTIFY: inter-ideograph; FONT-SIZE: 10.5pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; TEXT-ALIGN: justify
}
LI.MsoNormal {
        TEXT-JUSTIFY: inter-ideograph; FONT-SIZE: 10.5pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; TEXT-ALIGN: justify
}
DIV.MsoNormal {
        TEXT-JUSTIFY: inter-ideograph; FONT-SIZE: 10.5pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; TEXT-ALIGN: justify
}
A:link {
        COLOR: blue; TEXT-DECORATION: underline
}
SPAN.MsoHyperlink {
        COLOR: blue; TEXT-DECORATION: underline
}
A:visited {
        COLOR: purple; TEXT-DECORATION: underline
}
SPAN.MsoHyperlinkFollowed {
        COLOR: purple; TEXT-DECORATION: underline
}
SPAN.EmailStyle17 {
        FONT-WEIGHT: normal; COLOR: windowtext; FONT-STYLE: normal; FONT-FAMILY: Verdana; TEXT-DECORATION: none; mso-style-type: personal-compose
}
DIV.Section1 {
        page: Section1
}
UNKNOWN {
        FONT-SIZE: 10pt
}
BLOCKQUOTE {
        MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px; MARGIN-LEFT: 2em
}
OL {
        MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px
}
UL {
        MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px
}
</STYLE>
</HEAD>
<BODY style="FONT-SIZE: 10pt; MARGIN: 10px; FONT-FAMILY: verdana">
<DIV><FONT color=#000080 size=2>thanks very much! it works well 
now~~</FONT></DIV>
<DIV><FONT color=#000080>but i found in my system,if i add the 0x prefix it will 
cause a syntax error <IMG src="cid:__0@Foxmail.net"></FONT></DIV>
<DIV><FONT color=#000080 size=2></FONT> </DIV>
<DIV><FONT color=#000080 size=2></FONT> </DIV>
<DIV><FONT color=#c0c0c0 size=2>2010-07-19 </FONT></DIV><FONT color=#000080 
size=2>
<HR style="WIDTH: 100px" align=left color=#b5c4df SIZE=1>
</FONT>
<DIV><FONT color=#c0c0c0 size=2><SPAN>hacklu</SPAN> </FONT></DIV>
<HR color=#b5c4df SIZE=1>

<DIV><FONT size=2><STRONG>发件人:</STRONG> Grant Likely </FONT></DIV>
<DIV><FONT size=2><STRONG>发送时间:</STRONG> 2010-07-17  05:46:59 </FONT></DIV>
<DIV><FONT size=2><STRONG>收件人:</STRONG> hacklu </FONT></DIV>
<DIV><FONT size=2><STRONG>抄送:</STRONG> linuxppc-dev </FONT></DIV>
<DIV><FONT size=2><STRONG>主题:</STRONG> Re: hi, i have two flashs, but my kernel 
can only find one , how cani write the dts? </FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>
<DIV>On Fri, Jul 16, 2010 at 2:34 AM, hacklu <embedway.test@gmail.com> wrote:</DIV>
<DIV>> this is my dts file:</DIV>
<DIV>> flash@0,0 {</DIV>
<DIV>>                         #address-cells = <1>;</DIV>
<DIV>>                         #size-cells = <1>;</DIV>
<DIV>>                         compatible = "cfi-flash";</DIV>
<DIV>>                         probe-type = "CFI";</DIV>
<DIV>>                         reg = <0 0 1000000>;</DIV>
<DIV>>                         bank-width = <2>;</DIV>
<DIV>>                         device-width = <1>;</DIV>
<DIV>>                         hrcw@0 {</DIV>
<DIV>>                                 label = "hrcw";</DIV>
<DIV>>                                 reg = <0 40000>;</DIV>
<DIV>>                         };</DIV>
<DIV>>                         jffs@40000 {</DIV>
<DIV>>                                 label = "jffs";</DIV>
<DIV>>                                 reg = <40000 200000>;</DIV>
<DIV>>                         };</DIV>
<DIV>>                         jffs2@240000 {</DIV>
<DIV>>                                 label = "uimage";</DIV>
<DIV>>                                 reg = <240000 d80000>;</DIV>
<DIV>>                         };</DIV>
<DIV>>              };</DIV>
<DIV>> flash@1,0 {</DIV>
<DIV>>                         #address-cells = <1>;</DIV>
<DIV>>                         #size-cells = <1>;</DIV>
<DIV>>                         compatible = "cfi-flash";</DIV>
<DIV>>                         probe-type = "CFI";</DIV>
<DIV>>                         reg = <1000000 0 1000000>;</DIV>
<DIV></DIV>
<DIV>This looks wrong.  If you're second flash is on chip select 1 as the</DIV>
<DIV>node name suggests, then this should be (first cell is CS#, second is</DIV>
<DIV>offset, and third is size.  Alos you're missing the 0x prefix):</DIV>
<DIV></DIV>
<DIV>reg = <1 0 0x1000000>;</DIV>
<DIV></DIV>
<DIV>If your second flash is on chip select 0 with the first flash, but</DIV>
<DIV>offset by 0x1000000, then reg should be:</DIV>
<DIV></DIV>
<DIV>reg = <0 0x1000000 0x1000000>;</DIV>
<DIV></DIV>
<DIV>and the name should be:</DIV>
<DIV></DIV>
<DIV>flash@0,1000000 { ... };</DIV>
<DIV></DIV>
<DIV>g.</DIV>
<DIV></DIV>
<DIV>-- </DIV>
<DIV>Grant Likely, B.Sc., P.Eng.</DIV>
<DIV>Secret Lab Technologies Ltd.</DIV></FONT></DIV></BODY></HTML>