<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in README.bitbangMII</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>b6d8992cbbe5f04c11f7e6e09c09ae1a031d8720 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/doc/README.bitbangMII#b6d8992cbbe5f04c11f7e6e09c09ae1a031d8720</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm

            List of files:
            /rk3399_rockchip-uboot/doc/README.bitbangMII</description>
        <pubDate>Mon, 09 Nov 2009 23:44:30 +0000</pubDate>
        <dc:creator>Minkyu Kang &lt;mk7.kang@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>0bf7de838096e804f0cece8f2d94905477381b6e - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/doc/README.bitbangMII#0bf7de838096e804f0cece8f2d94905477381b6e</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-armConflicts:	board/eukrea/cpu9260/cpu9260.c	drivers/serial/serial_s5pc1xx.c	include/asm-arm/arch-s5pc1xx/clock.h	include/asm-arm/arch-s5pc1xx/gpio.h	include/asm-arm/arch-s5pc1xx/pwm.h	include/asm-arm/arch-s5pc1xx/uart.h	include/configs/cpu9260.h	include/configs/cpuat91.h	include/configs/davinci_dm355evm.h	include/linux/mtd/samsung_onenand.h

            List of files:
            /rk3399_rockchip-uboot/doc/README.bitbangMII</description>
        <pubDate>Fri, 30 Oct 2009 03:14:40 +0000</pubDate>
        <dc:creator>Minkyu Kang &lt;mk7.kang@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>4946775c6db52dba28f72ba3525764b54f1d4593 - Coding Style cleanup; update CHANGELOG, prepare -rc1</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/doc/README.bitbangMII#4946775c6db52dba28f72ba3525764b54f1d4593</link>
        <description>Coding Style cleanup; update CHANGELOG, prepare -rc1Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/doc/README.bitbangMII</description>
        <pubDate>Tue, 27 Oct 2009 23:49:47 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>14abfe361b3ed23b02f564e2f5d663e158cd5799 - Merge branch &apos;master&apos; of /home/wd/git/u-boot/custodians</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/doc/README.bitbangMII#14abfe361b3ed23b02f564e2f5d663e158cd5799</link>
        <description>Merge branch &apos;master&apos; of /home/wd/git/u-boot/custodians

            List of files:
            /rk3399_rockchip-uboot/doc/README.bitbangMII</description>
        <pubDate>Mon, 12 Oct 2009 21:40:27 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>4ba31ab33ac824635fcb49ac609070a9ebcab7f0 - Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/doc/README.bitbangMII#4ba31ab33ac824635fcb49ac609070a9ebcab7f0</link>
        <description>Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.This feature is useful when your board uses different mii buses for differentphys and all (or a part) of these buses are implemented via bit-banging mode.The driver requires that the following macros should be defined into the boardconfiguration file:CONFIG_BITBANGMII       - Enable the miiphybb driverCONFIG_BITBANGMII_MULTI - Enable the multi bus supportIf the CONFIG_BITBANGMII_MULTI is not defined, the board&apos;s config file needsto define at least the following macros:MII_INIT      - Generic code to enable the MII bus (optional)MDIO_DECLARE  - Declaration needed to access to the MDIO pin (optional)MDIO_ACTIVE   - Activate the MDIO pin as out pinMDIO_TRISTATE - Activate the MDIO pin as input/tristate pinMDIO_READ     - Read the MDIO pinMDIO(v)       - Write v on the MDIO pinMDC_DECLARE   - Declaration needed to access to the MDC pin (optional)MDC(v)        - Write v on the MDC pinThe previous macros make the driver compatible with the previous version(that didn&apos;t support the multi-bus).When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fillthe bb_miiphy_buses[] array with a record for each required bus and declarethe bb_miiphy_buses_num variable with the number of mii buses.The record (struct bb_miiphy_bus) has the following fields/callbacks (seemiiphy.h for details):char name[]            - The symbolic name that must be equal to the MII bus                         registered nameint (*init)()          - Initialization function called at startup time (just                         before the Ethernet initialization)int (*mdio_active)()   - Activate the MDIO pin as outputint (*mdio_tristate)() - Activate the MDIO pin as input/tristate pinint (*set_mdio)()      - Write the MDIO pinint (*get_mdio)()      - Read the MDIO pinint (*set_mdc)()       - Write the MDC pinint (*delay)()         - Delay functionvoid *priv             - Private data used by board specific codeThe board code will look like:struct bb_miiphy_bus bb_miiphy_buses[] = { { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... }, { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... }, ...int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) /                          sizeof(bb_miiphy_buses[0]);Signed-off-by: Luigi &apos;Comio&apos; Mantellini &lt;luigi.mantellini@idf-hit.com&gt;Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/doc/README.bitbangMII</description>
        <pubDate>Sat, 10 Oct 2009 10:42:20 +0000</pubDate>
        <dc:creator>Luigi &apos;Comio&apos; Mantellini &lt;luigi.mantellini@idf-hit.com&gt;</dc:creator>
    </item>
</channel>
</rss>
