mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-24 03:50:36 -04:00
Fix remaining CONFIG_COMMANDS
update comments Fix coding style Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
parent
0c9d42e6b0
commit
1b76988175
@ -61,21 +61,21 @@ static struct stor_spec specs[ENUM_MAX] = { { 0, 0, 0, 0, "" }, };
|
|||||||
|
|
||||||
void dev_stor_init(void)
|
void dev_stor_init(void)
|
||||||
{
|
{
|
||||||
#if (CONFIG_COMMANDS & CFG_CMD_IDE)
|
#if defined(CONFIG_CMD_IDE)
|
||||||
specs[ENUM_IDE].max_dev = CFG_IDE_MAXDEVICE;
|
specs[ENUM_IDE].max_dev = CFG_IDE_MAXDEVICE;
|
||||||
specs[ENUM_IDE].enum_started = 0;
|
specs[ENUM_IDE].enum_started = 0;
|
||||||
specs[ENUM_IDE].enum_ended = 0;
|
specs[ENUM_IDE].enum_ended = 0;
|
||||||
specs[ENUM_IDE].type = DEV_TYP_STOR | DT_STOR_IDE;
|
specs[ENUM_IDE].type = DEV_TYP_STOR | DT_STOR_IDE;
|
||||||
specs[ENUM_IDE].name = "ide";
|
specs[ENUM_IDE].name = "ide";
|
||||||
#endif
|
#endif
|
||||||
#if (CONFIG_COMMANDS & CFG_CMD_USB)
|
#if defined(CONFIG_CMD_USB)
|
||||||
specs[ENUM_USB].max_dev = USB_MAX_STOR_DEV;
|
specs[ENUM_USB].max_dev = USB_MAX_STOR_DEV;
|
||||||
specs[ENUM_USB].enum_started = 0;
|
specs[ENUM_USB].enum_started = 0;
|
||||||
specs[ENUM_USB].enum_ended = 0;
|
specs[ENUM_USB].enum_ended = 0;
|
||||||
specs[ENUM_USB].type = DEV_TYP_STOR | DT_STOR_USB;
|
specs[ENUM_USB].type = DEV_TYP_STOR | DT_STOR_USB;
|
||||||
specs[ENUM_USB].name = "usb";
|
specs[ENUM_USB].name = "usb";
|
||||||
#endif
|
#endif
|
||||||
#if (CONFIG_COMMANDS & CFG_CMD_SCSI)
|
#if defined(CONFIG_CMD_SCSI)
|
||||||
specs[ENUM_SCSI].max_dev = CFG_SCSI_MAX_DEVICE;
|
specs[ENUM_SCSI].max_dev = CFG_SCSI_MAX_DEVICE;
|
||||||
specs[ENUM_SCSI].enum_started = 0;
|
specs[ENUM_SCSI].enum_started = 0;
|
||||||
specs[ENUM_SCSI].enum_ended = 0;
|
specs[ENUM_SCSI].enum_ended = 0;
|
||||||
|
@ -132,7 +132,7 @@ uint mii_send(uint mii_cmd)
|
|||||||
|
|
||||||
return (mii_reply & 0xffff); /* data read from phy */
|
return (mii_reply & 0xffff); /* data read from phy */
|
||||||
}
|
}
|
||||||
#endif /* CFG_DISCOVER_PHY || (CONFIG_COMMANDS & CONFIG_CMD_MII) */
|
#endif /* CFG_DISCOVER_PHY || CONFIG_CMD_MII */
|
||||||
|
|
||||||
#if defined(CFG_DISCOVER_PHY)
|
#if defined(CFG_DISCOVER_PHY)
|
||||||
int mii_discover_phy(struct eth_device *dev)
|
int mii_discover_phy(struct eth_device *dev)
|
||||||
|
@ -131,7 +131,7 @@ uint mii_send(uint mii_cmd)
|
|||||||
|
|
||||||
return (mii_reply & 0xffff); /* data read from phy */
|
return (mii_reply & 0xffff); /* data read from phy */
|
||||||
}
|
}
|
||||||
#endif /* CFG_DISCOVER_PHY || (CONFIG_COMMANDS & CONFIG_CMD_MII) */
|
#endif /* CFG_DISCOVER_PHY || CONFIG_CMD_MII */
|
||||||
|
|
||||||
#if defined(CFG_DISCOVER_PHY)
|
#if defined(CFG_DISCOVER_PHY)
|
||||||
int mii_discover_phy(struct eth_device *dev)
|
int mii_discover_phy(struct eth_device *dev)
|
||||||
|
@ -131,7 +131,7 @@ uint mii_send(uint mii_cmd)
|
|||||||
|
|
||||||
return (mii_reply & 0xffff); /* data read from phy */
|
return (mii_reply & 0xffff); /* data read from phy */
|
||||||
}
|
}
|
||||||
#endif /* CFG_DISCOVER_PHY || (CONFIG_COMMANDS & CONFIG_CMD_MII) */
|
#endif /* CFG_DISCOVER_PHY || CONFIG_CMD_MII */
|
||||||
|
|
||||||
#if defined(CFG_DISCOVER_PHY)
|
#if defined(CFG_DISCOVER_PHY)
|
||||||
int mii_discover_phy(struct eth_device *dev)
|
int mii_discover_phy(struct eth_device *dev)
|
||||||
|
@ -131,7 +131,7 @@ uint mii_send(uint mii_cmd)
|
|||||||
|
|
||||||
return (mii_reply & 0xffff); /* data read from phy */
|
return (mii_reply & 0xffff); /* data read from phy */
|
||||||
}
|
}
|
||||||
#endif /* CFG_DISCOVER_PHY || (CONFIG_COMMANDS & CONFIG_CMD_MII) */
|
#endif /* CFG_DISCOVER_PHY || CONFIG_CMD_MII */
|
||||||
|
|
||||||
#if defined(CFG_DISCOVER_PHY)
|
#if defined(CFG_DISCOVER_PHY)
|
||||||
int mii_discover_phy(struct eth_device *dev)
|
int mii_discover_phy(struct eth_device *dev)
|
||||||
|
@ -131,7 +131,7 @@ uint mii_send(uint mii_cmd)
|
|||||||
|
|
||||||
return (mii_reply & 0xffff); /* data read from phy */
|
return (mii_reply & 0xffff); /* data read from phy */
|
||||||
}
|
}
|
||||||
#endif /* CFG_DISCOVER_PHY || (CONFIG_COMMANDS & CONFIG_CMD_MII) */
|
#endif /* CFG_DISCOVER_PHY || CONFIG_CMD_MII */
|
||||||
|
|
||||||
#if defined(CFG_DISCOVER_PHY)
|
#if defined(CFG_DISCOVER_PHY)
|
||||||
int mii_discover_phy(struct eth_device *dev)
|
int mii_discover_phy(struct eth_device *dev)
|
||||||
|
@ -132,7 +132,7 @@ uint mii_send(uint mii_cmd)
|
|||||||
|
|
||||||
return (mii_reply & 0xffff); /* data read from phy */
|
return (mii_reply & 0xffff); /* data read from phy */
|
||||||
}
|
}
|
||||||
#endif /* CFG_DISCOVER_PHY || (CONFIG_COMMANDS & CONFIG_CMD_MII) */
|
#endif /* CFG_DISCOVER_PHY || CONFIG_CMD_MII */
|
||||||
|
|
||||||
#if defined(CFG_DISCOVER_PHY)
|
#if defined(CFG_DISCOVER_PHY)
|
||||||
int mii_discover_phy(struct eth_device *dev)
|
int mii_discover_phy(struct eth_device *dev)
|
||||||
|
@ -165,7 +165,7 @@ void cs8900_get_enetaddr (uchar * addr)
|
|||||||
addr[0], addr[1],
|
addr[0], addr[1],
|
||||||
addr[2], addr[3],
|
addr[2], addr[3],
|
||||||
addr[4], addr[5]) ;
|
addr[4], addr[5]) ;
|
||||||
debug ("### Set environment from HW MAC addr = \"%s\"\n", ethaddr);
|
debug ("### Set environment from HW MAC addr = \"%s\"\n", ethaddr);
|
||||||
setenv ("ethaddr", ethaddr);
|
setenv ("ethaddr", ethaddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -317,6 +317,6 @@ int cs8900_e2prom_write(unsigned char addr, unsigned short value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* COMMANDS & CFG_NET */
|
#endif /* CONFIG_CMD_NET */
|
||||||
|
|
||||||
#endif /* CONFIG_DRIVER_CS8900 */
|
#endif /* CONFIG_DRIVER_CS8900 */
|
||||||
|
@ -36,12 +36,12 @@
|
|||||||
* AUI/TP selection ( mine has 10Base2/10BaseT select )
|
* AUI/TP selection ( mine has 10Base2/10BaseT select )
|
||||||
*
|
*
|
||||||
* Arguments:
|
* Arguments:
|
||||||
* io = for the base address
|
* io = for the base address
|
||||||
* irq = for the IRQ
|
* irq = for the IRQ
|
||||||
*
|
*
|
||||||
* author:
|
* author:
|
||||||
* Erik Stahlman ( erik@vt.edu )
|
* Erik Stahlman ( erik@vt.edu )
|
||||||
* Daris A Nevil ( dnevil@snmc.com )
|
* Daris A Nevil ( dnevil@snmc.com )
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Hardware multicast code from Peter Cammaert ( pc@denkart.be )
|
* Hardware multicast code from Peter Cammaert ( pc@denkart.be )
|
||||||
@ -53,7 +53,7 @@
|
|||||||
* o lan91c96.c (Intel Diagnostic Manager driver)
|
* o lan91c96.c (Intel Diagnostic Manager driver)
|
||||||
*
|
*
|
||||||
* History:
|
* History:
|
||||||
* 04/30/03 Mathijs Haarman Modified smc91111.c (u-boot version)
|
* 04/30/03 Mathijs Haarman Modified smc91111.c (u-boot version)
|
||||||
* for lan91c96
|
* for lan91c96
|
||||||
*---------------------------------------------------------------------------
|
*---------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -296,8 +296,8 @@ static int poll4int (byte mask, int timeout)
|
|||||||
/*
|
/*
|
||||||
* Function: smc_reset( void )
|
* Function: smc_reset( void )
|
||||||
* Purpose:
|
* Purpose:
|
||||||
* This sets the SMC91111 chip to its normal state, hopefully from whatever
|
* This sets the SMC91111 chip to its normal state, hopefully from whatever
|
||||||
* mess that any other DOS driver has put it in.
|
* mess that any other DOS driver has put it in.
|
||||||
*
|
*
|
||||||
* Maybe I should reset more registers to defaults in here? SOFTRST should
|
* Maybe I should reset more registers to defaults in here? SOFTRST should
|
||||||
* do that for me.
|
* do that for me.
|
||||||
@ -397,7 +397,7 @@ static void smc_shutdown ()
|
|||||||
* This sends the actual packet to the SMC9xxx chip.
|
* This sends the actual packet to the SMC9xxx chip.
|
||||||
*
|
*
|
||||||
* Algorithm:
|
* Algorithm:
|
||||||
* First, see if a saved_skb is available.
|
* First, see if a saved_skb is available.
|
||||||
* ( this should NOT be called if there is no 'saved_skb'
|
* ( this should NOT be called if there is no 'saved_skb'
|
||||||
* Now, find the packet number that the chip allocated
|
* Now, find the packet number that the chip allocated
|
||||||
* Point the data pointers at it in memory
|
* Point the data pointers at it in memory
|
||||||
@ -405,9 +405,9 @@ static void smc_shutdown ()
|
|||||||
* Dump the packet to chip memory
|
* Dump the packet to chip memory
|
||||||
* Check if a last byte is needed ( odd length packet )
|
* Check if a last byte is needed ( odd length packet )
|
||||||
* if so, set the control flag right
|
* if so, set the control flag right
|
||||||
* Tell the card to send it
|
* Tell the card to send it
|
||||||
* Enable the transmit interrupt, so I know if it failed
|
* Enable the transmit interrupt, so I know if it failed
|
||||||
* Free the kernel data if I actually sent it.
|
* Free the kernel data if I actually sent it.
|
||||||
*/
|
*/
|
||||||
static int smc_send_packet (volatile void *packet, int packet_length)
|
static int smc_send_packet (volatile void *packet, int packet_length)
|
||||||
{
|
{
|
||||||
@ -865,7 +865,7 @@ static int smc_hw_init ()
|
|||||||
}
|
}
|
||||||
#endif /* 0 */
|
#endif /* 0 */
|
||||||
|
|
||||||
#endif /* COMMANDS & CFG_NET */
|
#endif /* CONFIG_CMD_NET */
|
||||||
|
|
||||||
|
|
||||||
/* smc_get_ethaddr (bd_t * bd)
|
/* smc_get_ethaddr (bd_t * bd)
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
#include "netarm_eth.h"
|
#include "netarm_eth.h"
|
||||||
#include <asm/arch/netarm_registers.h>
|
#include <asm/arch/netarm_registers.h>
|
||||||
|
|
||||||
|
|
||||||
#if defined(CONFIG_CMD_NET)
|
#if defined(CONFIG_CMD_NET)
|
||||||
|
|
||||||
static int na_mii_poll_busy (void);
|
static int na_mii_poll_busy (void);
|
||||||
@ -56,7 +55,6 @@ static void na_get_mac_addr (void)
|
|||||||
setenv ("ethaddr", ethaddr);
|
setenv ("ethaddr", ethaddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void na_mii_write (int reg, int value)
|
static void na_mii_write (int reg, int value)
|
||||||
{
|
{
|
||||||
int mii_addr;
|
int mii_addr;
|
||||||
@ -355,6 +353,6 @@ extern int eth_send (volatile void *packet, int length)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* COMMANDS & CFG_NET */
|
#endif /* CONFIG_CMD_NET */
|
||||||
|
|
||||||
#endif /* CONFIG_DRIVER_NETARMETH */
|
#endif /* CONFIG_DRIVER_NETARMETH */
|
||||||
|
@ -36,16 +36,13 @@
|
|||||||
|
|
||||||
#if defined(CONFIG_CMD_NET)
|
#if defined(CONFIG_CMD_NET)
|
||||||
|
|
||||||
|
|
||||||
/* packet page register access functions */
|
/* packet page register access functions */
|
||||||
|
|
||||||
|
|
||||||
static unsigned char get_reg (unsigned int regno)
|
static unsigned char get_reg (unsigned int regno)
|
||||||
{
|
{
|
||||||
return (*(unsigned char *) regno);
|
return (*(unsigned char *) regno);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void put_reg (unsigned int regno, unsigned char val)
|
static void put_reg (unsigned int regno, unsigned char val)
|
||||||
{
|
{
|
||||||
*(volatile unsigned char *) regno = val;
|
*(volatile unsigned char *) regno = val;
|
||||||
@ -91,7 +88,6 @@ void rtl8019_get_enetaddr (uchar * addr)
|
|||||||
put_reg (RTL8019_COMMAND, RTL8019_PAGE0);
|
put_reg (RTL8019_COMMAND, RTL8019_PAGE0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void eth_halt (void)
|
void eth_halt (void)
|
||||||
{
|
{
|
||||||
put_reg (RTL8019_COMMAND, 0x01);
|
put_reg (RTL8019_COMMAND, 0x01);
|
||||||
@ -134,7 +130,6 @@ int eth_init (bd_t * bd)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static unsigned char nic_to_pc (void)
|
static unsigned char nic_to_pc (void)
|
||||||
{
|
{
|
||||||
unsigned char rec_head_status;
|
unsigned char rec_head_status;
|
||||||
@ -277,6 +272,6 @@ extern int eth_send (volatile void *packet, int length)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* COMMANDS & CFG_NET */
|
#endif /* CONFIG_CMD_NET */
|
||||||
|
|
||||||
#endif /* CONFIG_DRIVER_RTL8019 */
|
#endif /* CONFIG_DRIVER_RTL8019 */
|
||||||
|
@ -142,7 +142,6 @@ void rtc_get (struct rtc_time *tmp)
|
|||||||
tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
|
tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set the RTC
|
* Set the RTC
|
||||||
*/
|
*/
|
||||||
@ -166,7 +165,6 @@ void rtc_set (struct rtc_time *tmp)
|
|||||||
rtc_write (RTC_CTL1_REG_ADDR, RTC_CTL1_BIT_2412);
|
rtc_write (RTC_CTL1_REG_ADDR, RTC_CTL1_BIT_2412);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Reset the RTC. We setting the date back to 1970-01-01.
|
* Reset the RTC. We setting the date back to 1970-01-01.
|
||||||
*/
|
*/
|
||||||
@ -200,7 +198,6 @@ void rtc_reset (void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Helper functions
|
* Helper functions
|
||||||
*/
|
*/
|
||||||
@ -224,4 +221,4 @@ static unsigned char bin2bcd (unsigned int n)
|
|||||||
return (((n / 10) << 4) | (n % 10));
|
return (((n / 10) << 4) | (n % 10));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_RTC_RX8025 && (CFG_COMMANDS & CFG_CMD_DATE) */
|
#endif /* CONFIG_RTC_RX8025 && CONFIG_CMD_DATE */
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
#define CONFIG_CMD_PING
|
#define CONFIG_CMD_PING
|
||||||
#define CONFIG_CMD_REGINFO
|
#define CONFIG_CMD_REGINFO
|
||||||
|
|
||||||
#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
# define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */
|
# define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -140,7 +140,7 @@
|
|||||||
#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
|
#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
|
||||||
/* #define CONFIG_INITRD_TAG 1 */
|
/* #define CONFIG_INITRD_TAG 1 */
|
||||||
|
|
||||||
#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
|
#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
|
||||||
#define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
|
#define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user