This patch adds a function to program a customized LED setting for Realtek 81xx family. It reads the settings from devicetree under target board and programs the setting to offset 0x18 and 0x19. BUG=b:65437780 TEST=Add customized_leds register in devicetree.cb under target board, enable RT8168_SET_LED_MODE flag. Make sure the setting is programmed correctly to offset 0x18 and 0x19. Observed the LEDs were behaving as expected. Executed suspend/resume and the LEDs were still working as expected. Change-Id: Ib3d4f2cd98ac391e1661a891d604bdd1974d07f6 Signed-off-by: Gaggery Tsai <gaggery.tsai@intel.com> Reviewed-on: https://review.coreboot.org/21862 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Furquan Shaikh <furquan@google.com>
31 lines
1,015 B
Text
31 lines
1,015 B
Text
config REALTEK_8168_RESET
|
|
bool
|
|
help
|
|
This forces a realtek 10ec:8168 card to reset to ensure power state
|
|
is correct at boot.
|
|
|
|
config REALTEK_8168_MACADDRESS
|
|
string "Realtek rt8168 mac address"
|
|
depends on REALTEK_8168_RESET && !RT8168_GET_MAC_FROM_VPD
|
|
default "00:e0:4c:00:c0:b0"
|
|
help
|
|
This is a string to set the mac address on a Realtek rt8168 card.
|
|
It must be in the form of "xx:xx:xx:xx:xx:xx", where x is a
|
|
hexadecimal number for it to be valid. Failing to do so will
|
|
result in the default macaddress being used.
|
|
|
|
config RT8168_GET_MAC_FROM_VPD
|
|
bool
|
|
default n
|
|
select REALTEK_8168_RESET
|
|
|
|
config RT8168_SET_LED_MODE
|
|
bool
|
|
default n
|
|
select REALTEK_8168_RESET
|
|
help
|
|
This is to set a customized LED mode to distinguish 10/100/1000
|
|
link and speed status with limited LEDs avaiable on a board.
|
|
Please refer to RTL811x datasheet section 7.2 Customizable LED
|
|
Configuration for details. With this flag enabled, the
|
|
customized_leds variable will be read from devicetree setting.
|