123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #!/bin/sh
- CC="$1"
- [ -n "$TARGET_CC_NOCACHE" ] && CC="$TARGET_CC_NOCACHE"
- cat <<EOF
- #include <linux/ethtool.h>
- #define ETHTOOL_MODE_FULL(_speed, _mode) { \\
- .speed = (_speed), \\
- .bit_half = -1, \\
- .bit_full = ETHTOOL_LINK_MODE_ ## _speed ## base ## _mode ## _Full_BIT, \\
- .name = #_speed "base" #_mode, \\
- }
- #define ETHTOOL_MODE_HALF(_speed, _mode) { \\
- .speed = (_speed), \\
- .bit_half = ETHTOOL_LINK_MODE_ ## _speed ## base ## _mode ## _Half_BIT, \\
- .bit_full = -1, \\
- .name = #_speed "base" #_mode, \\
- }
- #define ETHTOOL_MODE_BOTH(_speed, _mode) { \\
- .speed = (_speed), \\
- .bit_half = ETHTOOL_LINK_MODE_ ## _speed ## base ## _mode ## _Half_BIT, \\
- .bit_full = ETHTOOL_LINK_MODE_ ## _speed ## base ## _mode ## _Full_BIT, \\
- .name = #_speed "base" #_mode, \\
- }
- static const struct {
- unsigned int speed;
- int bit_half;
- int bit_full;
- const char *name;
- } ethtool_modes[] = {
- EOF
- echo "#include <linux/ethtool.h>" | "$CC" -E - | \
- grep "ETHTOOL_LINK_MODE_[0-9]*base[A-Za-z0-9]*_...._BIT.*" | \
- sed -r 's/.*ETHTOOL_LINK_MODE_([0-9]*)base([A-Za-z0-9]*)_(....)_BIT.*/\1 \2 \3/' | \
- sort -u | LC_ALL=C sort -r -g | ( gothalf=0 ; while read -r speed mode duplex; do
- if [ "$duplex" = "Half" ]; then
- if [ "$gothalf" = "1" ]; then
- printf "%s" "$speed \tETHTOOL_MODE_HALF($p_speed, $p_mode),\n"
- fi
- gothalf=1
- elif [ "$duplex" = "Full" ]; then
- if [ "$gothalf" = "1" ]; then
- if [ "$p_speed" = "$speed" ] && [ "$p_mode" = "$mode" ]; then
- printf "%d \t%s\n" "$speed" "ETHTOOL_MODE_BOTH($speed, $mode),"
- else
- printf "%d \t%s\n" "$p_speed" "ETHTOOL_MODE_HALF($p_speed, $p_mode),"
- printf "%d \t%s\n" "$speed" "ETHTOOL_MODE_FULL($speed, $mode),"
- fi
- gothalf=0
- else
- printf "%d \t%s\n" "$speed" "ETHTOOL_MODE_FULL($speed, $mode),"
- fi
- else
- continue
- fi
- p_speed="$speed"
- p_mode="$mode"
- done ; [ "$gothalf" = "1" ] && printf "%d \t%s\n" "$p_speed" "ETHTOOL_MODE_HALF($p_speed, $p_mode)," ) | \
- LC_ALL=C sort -g | sed -r 's/[0-9]* (.*)/\1/'
- echo "};"
|