<br><br><div class="gmail_quote">On Fri, Apr 17, 2009 at 10:49 PM, Grant Likely <span dir="ltr">&lt;<a href="mailto:grant.likely@secretlab.ca">grant.likely@secretlab.ca</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Fri, Apr 17, 2009 at 11:06 AM, Stephen Neuendorffer<br>
&lt;<a href="mailto:stephen.neuendorffer@xilinx.com">stephen.neuendorffer@xilinx.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Can we have XILINX_DRIVERS, please?  That way this can also be enabled<br>
&gt; on any architecture that has FPGA peripherals.<br>
<br>
I&#39;ve thought about this more, and I&#39;d really rather not.  The list of<br>
affected drivers is short and is not a large maintenance burden.  I<br>
don&#39;t think a list of 2 or 3 architecture selects for each driver is<br>
unreasonable.  A &quot;XILINX_DRIVERS&quot; config item doesn&#39;t really help much<br>
anyway.  At any given time one of these drivers may be needed on<br>
another platform.  ie. the SystemACE device is present on at least one<br>
non-virtex, non-spartan platform. </blockquote><div><br>Which is exactly why having it architecture dependent isn&#39;t right...  All of these drivers<br>could be needed and used on any OF-based platform.  If you have a platform (for instance, a processor connected to an FPGA which has these peripherals in the FPGA) then you should be able to enable these drivers.  Just my 2 cents...<br>
<br>Steve<br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<br>
g.<br>
<br>
&gt;<br>
&gt; Steve<br>
&gt;<br>
&gt;&gt; -----Original Message-----<br>
&gt;&gt; From: <a href="mailto:owner-microblaze-uclinux@itee.uq.edu.au">owner-microblaze-uclinux@itee.uq.edu.au</a><br>
&gt; [mailto:<a href="mailto:owner-microblaze-uclinux@itee.uq.edu.au">owner-microblaze-uclinux@itee.uq.edu.au</a>] On<br>
&gt;&gt; Behalf Of monstr@monstr.eu<br>
&gt;&gt; Sent: Thursday, April 16, 2009 2:57 AM<br>
&gt;&gt; To: <a href="mailto:linux-kernel@vger.kernel.org">linux-kernel@vger.kernel.org</a><br>
&gt;&gt; Cc: <a href="mailto:microblaze-uclinux@itee.uq.edu.au">microblaze-uclinux@itee.uq.edu.au</a>; Michal Simek<br>
&gt;&gt; Subject: [microblaze-uclinux] [PATCH 11/11] microblaze: Kconfig:<br>
&gt; Enable drivers for Microblaze<br>
&gt;&gt;<br>
&gt;&gt; From: Michal Simek &lt;monstr@monstr.eu&gt;<br>
&gt;&gt;<br>
&gt;&gt; Signed-off-by: Michal Simek &lt;monstr@monstr.eu&gt;<br>
&gt;&gt; ---<br>
&gt;&gt;  drivers/block/Kconfig |    2 +-<br>
&gt;&gt;  drivers/char/Kconfig  |    2 +-<br>
&gt;&gt;  drivers/gpio/Kconfig  |    2 +-<br>
&gt;&gt;  drivers/usb/Kconfig   |    1 +<br>
&gt;&gt;  4 files changed, 4 insertions(+), 3 deletions(-)<br>
&gt;&gt;<br>
&gt;&gt; diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig<br>
&gt;&gt; index ddea8e4..9f1665f 100644<br>
&gt;&gt; --- a/drivers/block/Kconfig<br>
&gt;&gt; +++ b/drivers/block/Kconfig<br>
&gt;&gt; @@ -438,7 +438,7 @@ source &quot;drivers/s390/block/Kconfig&quot;<br>
&gt;&gt;<br>
&gt;&gt;  config XILINX_SYSACE<br>
&gt;&gt;       tristate &quot;Xilinx SystemACE support&quot;<br>
&gt;&gt; -     depends on 4xx<br>
&gt;&gt; +     depends on 4xx || MICROBLAZE<br>
&gt;&gt;       help<br>
&gt;&gt;         Include support for the Xilinx SystemACE CompactFlash<br>
&gt; interface<br>
&gt;&gt;<br>
&gt;&gt; diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig<br>
&gt;&gt; index 735bbe2..bb1a071 100644<br>
&gt;&gt; --- a/drivers/char/Kconfig<br>
&gt;&gt; +++ b/drivers/char/Kconfig<br>
&gt;&gt; @@ -893,7 +893,7 @@ config DTLK<br>
&gt;&gt;<br>
&gt;&gt;  config XILINX_HWICAP<br>
&gt;&gt;       tristate &quot;Xilinx HWICAP Support&quot;<br>
&gt;&gt; -     depends on XILINX_VIRTEX<br>
&gt;&gt; +     depends on XILINX_VIRTEX || MICROBLAZE<br>
&gt;&gt;       help<br>
&gt;&gt;         This option enables support for Xilinx Internal Configuration<br>
&gt;&gt;         Access Port (ICAP) driver.  The ICAP is used on Xilinx Virtex<br>
&gt;&gt; diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig<br>
&gt;&gt; index edb0253..11f3739 100644<br>
&gt;&gt; --- a/drivers/gpio/Kconfig<br>
&gt;&gt; +++ b/drivers/gpio/Kconfig<br>
&gt;&gt; @@ -69,7 +69,7 @@ comment &quot;Memory mapped GPIO expanders:&quot;<br>
&gt;&gt;<br>
&gt;&gt;  config GPIO_XILINX<br>
&gt;&gt;       bool &quot;Xilinx GPIO support&quot;<br>
&gt;&gt; -     depends on PPC_OF<br>
&gt;&gt; +     depends on PPC_OF || MICROBLAZE<br>
&gt;&gt;       help<br>
&gt;&gt;         Say yes here to support the Xilinx FPGA GPIO device<br>
&gt;&gt;<br>
&gt;&gt; diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig<br>
&gt;&gt; index c6c816b..5eee3f8 100644<br>
&gt;&gt; --- a/drivers/usb/Kconfig<br>
&gt;&gt; +++ b/drivers/usb/Kconfig<br>
&gt;&gt; @@ -22,6 +22,7 @@ config USB_ARCH_HAS_HCD<br>
&gt;&gt;       default y if PCMCIA &amp;&amp; !M32R                    # sl811_cs<br>
&gt;&gt;       default y if ARM                                # SL-811<br>
&gt;&gt;       default y if SUPERH                             # r8a66597-hcd<br>
&gt;&gt; +     default y if MICROBLAZE<br>
&gt;&gt;       default PCI<br>
&gt;&gt;<br>
&gt;&gt;  # many non-PCI SOC chips embed OHCI<br>
&gt;&gt; --<br>
&gt;&gt; 1.5.5.1<br>
&gt;&gt;<br>
&gt;&gt; ___________________________<br>
&gt;&gt; microblaze-uclinux mailing list<br>
&gt;&gt; <a href="mailto:microblaze-uclinux@itee.uq.edu.au">microblaze-uclinux@itee.uq.edu.au</a><br>
&gt;&gt; Project Home Page :<br>
&gt; <a href="http://www.itee.uq.edu.au/%7Ejwilliams/mblaze-uclinux" target="_blank">http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux</a><br>
&gt;&gt; Mailing List Archive :<br>
&gt; <a href="http://www.itee.uq.edu.au/%7Elistarch/microblaze-uclinux/" target="_blank">http://www.itee.uq.edu.au/~listarch/microblaze-uclinux/</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.<br>

&gt;<br>
&gt;<br>
&gt; --<br>
&gt; To unsubscribe from this list: send the line &quot;unsubscribe linux-kernel&quot; in<br>
&gt; the body of a message to <a href="mailto:majordomo@vger.kernel.org">majordomo@vger.kernel.org</a><br>
&gt; More majordomo info at  <a href="http://vger.kernel.org/majordomo-info.html" target="_blank">http://vger.kernel.org/majordomo-info.html</a><br>
&gt; Please read the FAQ at  <a href="http://www.tux.org/lkml/" target="_blank">http://www.tux.org/lkml/</a><br>
&gt;<br>
<font color="#888888"><br>
<br>
<br>
--<br>
Grant Likely, B.Sc., P.Eng.<br>
Secret Lab Technologies Ltd.<br>
_______________________________________________<br>
Linuxppc-dev mailing list<br>
<a href="mailto:Linuxppc-dev@ozlabs.org">Linuxppc-dev@ozlabs.org</a><br>
<a href="https://ozlabs.org/mailman/listinfo/linuxppc-dev" target="_blank">https://ozlabs.org/mailman/listinfo/linuxppc-dev</a><br>
</font></blockquote></div><br>