<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>6f25741b7565d7f82fc09947c981cae17535894d - mips: select legacy gpiolib interfaces where used</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#6f25741b7565d7f82fc09947c981cae17535894d</link>
        <description>mips: select legacy gpiolib interfaces where usedA few old machines have not been converted away from the old-stylegpiolib interfaces. Make these select the new CONFIG_GPIOLIB_LEGACYsymbol so the code still works where it is needed but can be leftout otherwise.This is the list of all gpio_request() calls in mips:  arch/mips/alchemy/devboards/db1000.c:           gpio_request(19, &quot;sd0_cd&quot;);  arch/mips/alchemy/devboards/db1000.c:           gpio_request(20, &quot;sd1_cd&quot;);  arch/mips/alchemy/devboards/db1200.c:   gpio_request(215, &quot;otg-vbus&quot;);  arch/mips/bcm47xx/workarounds.c:        err = gpio_request_one(usb_power, GPIOF_OUT_INIT_HIGH, &quot;usb_power&quot;);  arch/mips/bcm63xx/boards/board_bcm963xx.c:              gpio_request_one(board.ephy_reset_gpio,  arch/mips/txx9/rbtx4927/setup.c:        gpio_request(15, &quot;sio-dtr&quot;);Most of these should be easy enough to change to modern gpio descriptorsor remove if they are no longer in use.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;Reviewed-by: Linus Walleij &lt;linusw@kernel.org&gt;Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Tue, 28 Apr 2026 17:56:19 +0200</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>70278d1d589f9feda6fdd97e66e1e1603992715d - MIPS: Alchemy: Enable PATA_PLATFORM support</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#70278d1d589f9feda6fdd97e66e1e1603992715d</link>
        <description>MIPS: Alchemy: Enable PATA_PLATFORM supportWe have limited demand for platform PATA support across MIPS platforms:$ find arch/mips -type f | sort | xargs grep -l pata_platform_infoarch/mips/alchemy/devboards/db1200.carch/mips/alchemy/devboards/db1300.carch/mips/sibyte/swarm/platform.c$certainly not high enough to justify enabling support for PATA_PLATFORMport-wide.  SiByte platforms are handled selectively already, so justmake a similar arrangement for Alchemy DB1XXX platforms.Signed-off-by: Maciej W. Rozycki &lt;macro@orcam.me.uk&gt;Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 01 Jun 2023 14:56:19 +0200</pubDate>
        <dc:creator>Maciej W. Rozycki &lt;macro@orcam.me.uk&gt;</dc:creator>
    </item>
<item>
        <title>b350041e6f23a71f63f1eee6d939c846838e7e25 - MIPS: alchemy: remove unused ALCHEMY_GPIOINT_AU1000</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#b350041e6f23a71f63f1eee6d939c846838e7e25</link>
        <description>MIPS: alchemy: remove unused ALCHEMY_GPIOINT_AU1000Remove unused config option ALCHEMY_GPIOINT_AU1000.Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Sun, 20 Sep 2020 23:03:47 +0200</pubDate>
        <dc:creator>Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;</dc:creator>
    </item>
<item>
        <title>b123c46cf55853c0d56098c00b35943ae6f719d3 - MIPS: alchemy: remove unused ALCHEMY_GPIOINT_AU1300</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#b123c46cf55853c0d56098c00b35943ae6f719d3</link>
        <description>MIPS: alchemy: remove unused ALCHEMY_GPIOINT_AU1300Remove unused config option ALCHEMY_GPIOINT_AU1300 and related code.Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Sun, 20 Sep 2020 23:03:46 +0200</pubDate>
        <dc:creator>Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;</dc:creator>
    </item>
<item>
        <title>eb01d42a77785ff96b6e66a2a2e7027fc6d78e4a - PCI: consolidate PCI config entry in drivers/pci</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#eb01d42a77785ff96b6e66a2a2e7027fc6d78e4a</link>
        <description>PCI: consolidate PCI config entry in drivers/pciThere is no good reason to duplicate the PCI menu in every architecture.Instead provide a selectable HAVE_PCI symbol that indicates availabilityof PCI support, and a FORCE_PCI symbol to for PCI on and the handle therest in drivers/pci.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Palmer Dabbelt &lt;palmer@sifive.com&gt;Acked-by: Max Filippov &lt;jcmvbkbc@gmail.com&gt;Acked-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Acked-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Acked-by: Paul Burton &lt;paul.burton@mips.com&gt;Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 15 Nov 2018 20:05:32 +0100</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>b24413180f5600bcb3bb70fbed5cf186b60864bd - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#b24413180f5600bcb3bb70fbed5cf186b60864bd</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Wed, 01 Nov 2017 15:07:57 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d30a2b47d4c2b75573d93f60655d48ba8e3ed2b3 - MIPS: do away with ARCH_[WANT_OPTIONAL|REQUIRE]_GPIOLIB</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#d30a2b47d4c2b75573d93f60655d48ba8e3ed2b3</link>
        <description>MIPS: do away with ARCH_[WANT_OPTIONAL|REQUIRE]_GPIOLIBThis replaces:- &quot;select ARCH_REQUIRE_GPIOLIB&quot; with &quot;select GPIOLIB&quot; as this can  now be selected directly.- &quot;select ARCH_WANT_OPTIONAL_GPIOLIB&quot; with no dependency: GPIOLIB  is now selectable by everyone, so we need not declare our  intent to select it.When ordering the symbols the following rationale was used:if the selects were in alphabetical order, I moved select GPIOLIBto be in alphabetical order, but if the selects were notmaintained in alphabetical order, I just replaced&quot;select ARCH_REQUIRE_GPIOLIB&quot; with &quot;select GPIOLIB&quot;.Cc: Michael B&#252;sch &lt;m@bues.ch&gt;Cc: linux-mips@linux-mips.orgAcked-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Tue, 19 Apr 2016 11:23:22 +0200</pubDate>
        <dc:creator>Linus Walleij &lt;linus.walleij@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>832f5dacfa0bb081a3b3b979a36a132b28ffacf3 - MIPS: Remove all the uses of custom gpio.h</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#832f5dacfa0bb081a3b3b979a36a132b28ffacf3</link>
        <description>MIPS: Remove all the uses of custom gpio.hCurrently CONFIG_ARCH_HAVE_CUSTOM_GPIO_H is defined for all MIPSmachines, and each machine type provides its own gpio.h. Howeveronly a handful really implement the GPIO API, most just forwardeverythings to gpiolib.The Alchemy machine is notable as it provides a system to allowimplementing the GPIO API at the board level. But it is not used byany board currently supported, so it can also be removed.For most machine types we can just remove the custom gpio.h, as wellas the custom wrappers if some exists. Some of the code found inthe wrappers must be moved to the respective GPIO driver.A few more fixes are need in some drivers as they rely on linux/gpio.hto provides some machine specific definitions, or used asm/gpio.hinstead of linux/gpio.h for the gpio API.Signed-off-by: Alban Bedel &lt;albeu@free.fr&gt;Reviewed-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Cc: linux-mips@linux-mips.orgCc: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;Cc: Rafa&#322; Mi&#322;ecki &lt;zajec5@gmail.com&gt;Cc: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;Cc: Tejun Heo &lt;tj@kernel.org&gt;Cc: Alexandre Courbot &lt;gnurou@gmail.com&gt;Cc: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;Cc: Florian Fainelli &lt;florian@openwrt.org&gt;Cc: Manuel Lauss &lt;manuel.lauss@gmail.com&gt;Cc: Joe Perches &lt;joe@perches.com&gt;Cc: Daniel Walter &lt;dwalter@google.com&gt;Cc: Sergey Ryazanov &lt;ryazanov.s.a@gmail.com&gt;Cc: Huacai Chen &lt;chenhc@lemote.com&gt;Cc: James Hartley &lt;james.hartley@imgtec.com&gt;Cc: Andrew Bresticker &lt;abrestic@chromium.org&gt;Cc: Paul Burton &lt;paul.burton@imgtec.com&gt;Cc: Jiri Kosina &lt;jkosina@suse.cz&gt;Cc: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Cc: Wolfram Sang &lt;wsa@the-dreams.de&gt;Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Varka Bhadram &lt;varkabhadram@gmail.com&gt;Cc: Masanari Iida &lt;standby24x7@gmail.com&gt;Cc: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;Cc: Michael Buesch &lt;m@bues.ch&gt;Cc: abdoulaye berthe &lt;berthe.ab@gmail.com&gt;Cc: linux-kernel@vger.kernel.orgCc: linux-ide@vger.kernel.orgCc: linux-gpio@vger.kernel.orgCc: linux-input@vger.kernel.orgCc: netdev@vger.kernel.orgPatchwork: https://patchwork.linux-mips.org/patch/10828/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Sun, 02 Aug 2015 18:30:11 +0200</pubDate>
        <dc:creator>Alban Bedel &lt;albeu@free.fr&gt;</dc:creator>
    </item>
<item>
        <title>970e268d6ed1f1799829cc0c87ea271a9e127e79 - MIPS: Alchemy: Unify Devboard support.</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#970e268d6ed1f1799829cc0c87ea271a9e127e79</link>
        <description>MIPS: Alchemy: Unify Devboard support.This patch merges support for all DB1xxx and PB1xxxboards into a single image, along with a new single defconfigfor them.Run-tested on DB1300 and DB1500.Signed-off-by: Manuel Lauss &lt;manuel.lauss@gmail.com&gt;Cc: Linux-MIPS &lt;linux-mips@linux-mips.org&gt;Patchwork: https://patchwork.linux-mips.org/patch/6577/Patchwork: https://patchwork.linux-mips.org/patch/6659/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 20 Feb 2014 14:59:24 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>88e9a93c9d53ddcf633aa07f14245da7f30408c2 - MIPS: Alchemy: Determine cohereny at runtime based on cpu type</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#88e9a93c9d53ddcf633aa07f14245da7f30408c2</link>
        <description>MIPS: Alchemy: Determine cohereny at runtime based on cpu typeAll Alchemy chips have coherent DMA, but for example the USB or AC97peripherals on the Au1000/1500/1100 are not.This patch uses DMA_MAYBE_COHERENT on Alchemy and sets coherentio basedon CPU type.Signed-off-by: Manuel Lauss &lt;manuel.lauss@gmail.com&gt;Cc: Linux-MIPS &lt;linux-mips@linux-mips.org&gt;Patchwork: https://patchwork.linux-mips.org/patch/6576/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 20 Feb 2014 14:59:23 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>59b435d1ad48ac244058845e18586eb5719f7f99 - MIPS: Kconfig: remove &quot;config MIPS_DISABLE_OBSOLETE_IDE&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#59b435d1ad48ac244058845e18586eb5719f7f99</link>
        <description>MIPS: Kconfig: remove &quot;config MIPS_DISABLE_OBSOLETE_IDE&quot;The Kconfig symbol MIPS_DISABLE_OBSOLETE_IDE was added in v2.6.10. Ithas never been used. Let&apos;s remove it.The symbol was originally introduced by the following commitcommit 2bfa662b64a7ee593f3039c1d3fd81a7766a63cdAuthor: Pete Popov &lt;ppopov@embeddedalley.com&gt;Date:   Tue Oct 12 06:24:19 2004 +0000    - Db1550 bug fixes    - updated defconfig    - updated Kconfig to use DMA_COHERENT since new silicon is coherentSigned-off-by: Paul Bolle &lt;pebolle@tiscali.nl&gt;Patchwork: http://patchwork.linux-mips.org/patch/5064/Acked-by: John Crispin &lt;blogic@openwrt.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Mon, 08 Apr 2013 19:51:13 +0200</pubDate>
        <dc:creator>Paul Bolle &lt;pebolle@tiscali.nl&gt;</dc:creator>
    </item>
<item>
        <title>851d4f5d387d1db856f01d9e7167014187a48fb4 - MIPS: Alchemy: Merge PB1100/1500 support into DB1000 code.</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#851d4f5d387d1db856f01d9e7167014187a48fb4</link>
        <description>MIPS: Alchemy: Merge PB1100/1500 support into DB1000 code.The PB1100/1500 are similar to their DB-cousins but with a fewmore devices on the bus.This patch adds PB1100/1500 support to the existing DB1100/1500code.Signed-off-by: Manuel Lauss &lt;manuel.lauss@gmail.com&gt;Cc: lnux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/4338/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Fri, 14 Sep 2012 18:25:00 +0200</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>24e8c1a611a706f51d4d9dc39b2c9977e25a54c4 - MIPS: Alchemy: merge PB1550 support into DB1550 code</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#24e8c1a611a706f51d4d9dc39b2c9977e25a54c4</link>
        <description>MIPS: Alchemy: merge PB1550 support into DB1550 codeThe PB1550 is more or less a DB1550 without the PCI IDE controller,a more complicated (read: configurable) Flash setup and some otherminor changes.  Like the DB1550 it can be automatically detected byreading the CPLD ID register bits.This patch adds PB1550 detection and setup to the DB1550 code.Signed-off-by: Manuel Lauss &lt;manuel.lauss@gmail.com&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/4337/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Fri, 14 Sep 2012 14:47:10 +0200</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>bd8510df881f63a9e7768824cf0e33c4702dcde1 - MIPS: Alchemy: Single kernel for DB1200/1300/1550</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#bd8510df881f63a9e7768824cf0e33c4702dcde1</link>
        <description>MIPS: Alchemy: Single kernel for DB1200/1300/1550Combine support for the DB1200/PB1200, DB1300 and DB1550 boards intoa single kernel image.defconfig-generated image verified on DB1200, DB1300 and DB1550.Signed-off-by: Manuel Lauss &lt;manuel.lauss@gmail.com&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/4335/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 13 Sep 2012 17:44:39 +0200</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f59c811f8c44e60a59783e3337594da638a48dff - MIPS: Alchemy: one kernel for DB1000/DB1500/DB1100</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#f59c811f8c44e60a59783e3337594da638a48dff</link>
        <description>MIPS: Alchemy: one kernel for DB1000/DB1500/DB1100These 3 boards are very similar; with this patch a single kernel imagewhich runs on all three can be built.Tested on DB1500 and DB1100.Signed-off-by: Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;To: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/2872/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 10 Nov 2011 13:06:22 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>6f7c8623db005889ee35a602e0c2564ea06cd3ff - MIPS: Alchemy: Merge PB1200 support into DB1200 code.</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#6f7c8623db005889ee35a602e0c2564ea06cd3ff</link>
        <description>MIPS: Alchemy: Merge PB1200 support into DB1200 code.The PB1200 is basically a DB1200 with additional MMC and camera socketsand different base addresses for external hardware (CPLD, IDE, Net, NAND).This patch implements the missing PB1200 features in DB1200 support codeand runtime board detection.Tested on DB1200 only.Signed-off-by: Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;To: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/2880/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 10 Nov 2011 13:06:22 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>f869d42e580f6260b5c29b5ab5c5cfcfd32a0756 - MIPS: Alchemy: Improved DB1550 support, with audio and serial busses.</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#f869d42e580f6260b5c29b5ab5c5cfcfd32a0756</link>
        <description>MIPS: Alchemy: Improved DB1550 support, with audio and serial busses.Signed-off-by: Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;To: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/2868/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 10 Nov 2011 13:06:16 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>64cd04d0cffa3b3af0e81aa3112b71f135739e1a - MIPS: Alchemy: Basic support for the DB1300 board.</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#64cd04d0cffa3b3af0e81aa3112b71f135739e1a</link>
        <description>MIPS: Alchemy: Basic support for the DB1300 board.Signed-off-by: Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;To: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/2867/Patchwork: https://patchwork.linux-mips.org/patch/2919/Patchwork: https://patchwork.linux-mips.org/patch/2928/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Thu, 10 Nov 2011 13:03:26 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>809f36c6f4a0568178c909ff1096ca83eae33f7d - MIPS: Alchemy: Au1300 SoC support</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#809f36c6f4a0568178c909ff1096ca83eae33f7d</link>
        <description>MIPS: Alchemy: Au1300 SoC supportAdd basic support for the Au1300 variant(s):- New GPIO/Interrupt controller- DBDMA ids- USB setup- MMC support- enable various PSC drivers- detection code.Signed-off-by: Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;To: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/2866/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Tue, 01 Nov 2011 20:03:30 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>435037c630dcd984cf95c9cfff973f8626cea368 - MIPS: Alchemy: Drop MIRAGE/BOSPORUS board support</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/mips/alchemy/Kconfig#435037c630dcd984cf95c9cfff973f8626cea368</link>
        <description>MIPS: Alchemy: Drop MIRAGE/BOSPORUS board supportNo test hardware and no (apparent) users.  These boards seem verysimilar to the DB1500, so if required support can be brought backagain (I have datasheets) but then with dedicated board code, nottacked on to DB1000 support.Signed-off-by: Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;To: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/2864/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux/arch/mips/alchemy/Kconfig</description>
        <pubDate>Tue, 01 Nov 2011 20:03:28 +0100</pubDate>
        <dc:creator>Manuel Lauss &lt;manuel.lauss@googlemail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
