Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create a common poe module #127

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8d77ee5
accton-as46{10,30-54pe}-poe-mcu: merge packages
KanjiMonster Apr 18, 2023
69cad10
bcm591xx-poe-mcu: move opcodes to shared header file
KanjiMonster Apr 18, 2023
1ea8cc9
bcm591xx-poe-mcu: create a common library module
KanjiMonster Apr 18, 2023
5ed8278
bcm591xx-poe-mcu: as4610: switch to common message code
KanjiMonster Apr 19, 2023
76012f2
bcm591xx-poe-mcu: as4630-54pe: switch to common message code
KanjiMonster Apr 19, 2023
144fadc
bcm591xx-poe-mcu: move mutex to common struct
KanjiMonster Apr 21, 2023
3898db6
bcm591xx-poe-mcu: move port info to common code
KanjiMonster Apr 21, 2023
591eb0a
bcm591xx-poe-mcu: add debugfs code to common module
KanjiMonster Apr 21, 2023
1d0bf8a
bcm591xx-poe-mcu: as4610: switch to generic debugfs
KanjiMonster Apr 21, 2023
2553141
bcm591xx-poe-mcu: as4630-54pe: switch to generic debugfs
KanjiMonster Apr 21, 2023
ae6ec7c
bcm591xx-poe-mcu: add a generic init function
KanjiMonster Apr 21, 2023
690b8ff
bcm591xx-poe-mcu: as4630-54pe: use generic init
KanjiMonster Apr 21, 2023
5aaf87d
bcm591xx-pse-mcu: add a config check callback
KanjiMonster Apr 21, 2023
f64fc4a
bcm591xx: as4610: use generic init
KanjiMonster Apr 25, 2023
5dc4c61
bcm591xx-poe-mcu: add a port command helper
KanjiMonster Apr 26, 2023
cd4d516
bcm591xx-poe-mcu: let the generic code take care of initializing ports
KanjiMonster May 2, 2023
6b4ff4a
bcm591xx-poe-mcu: add remove callback
KanjiMonster May 2, 2023
7f21b50
bcm591xx-poe-mcu: as4630-54pe: disable ports on remove
KanjiMonster May 2, 2023
9c30737
bcm591xx-poe-mcu: as4610: disable ports on remove
KanjiMonster May 2, 2023
ad2fdaa
bcm591xx-poe-mcu: add a set_power callback for providing power
KanjiMonster May 2, 2023
b7921eb
bcm591xx-poe-pse: as4610: let common code take care of power
KanjiMonster May 2, 2023
0103867
bcm591xx-poe-mcu: as4630-54pe: let common code take care of power
KanjiMonster May 2, 2023
3f34aba
bcm591xx-poe-mcu: let common code handle debugfs
KanjiMonster May 2, 2023
0f0e53e
bcm591xx-poe-mcu: init power limits
KanjiMonster May 3, 2023
7985a5f
bcm591xx-poe-mcu: as4610: let common code init power limits
KanjiMonster May 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/machine/accton-as4610.conf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ONL_PLATFORM_SUPPORT = " \
"

MACHINE_EXTRA_RDEPENDS += " \
accton-as4610-poe-mcu-mod \
bcm591xx-poe-mcu-mod \
kernel-module-accton-as4610-cpld \
kernel-module-accton-as4610-fan \
kernel-module-accton-as4610-leds \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/accton-as4630-54pe.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ONL_PLATFORM_SUPPORT = " \
"

MACHINE_EXTRA_RDEPENDS += " \
accton-as4630-54pe-poe-mcu-mod \
bcm591xx-poe-mcu-mod \
kernel-module-optoe \
kernel-module-x86-64-accton-as4630-54pe-cpld \
kernel-module-x86-64-accton-as4630-54pe-leds \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/generic-armel-iproc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ONL_PLATFORM_SUPPORT = " \
"

MACHINE_EXTRA_RDEPENDS += " \
accton-as4610-poe-mcu-mod \
bcm591xx-poe-mcu-mod \
kernel-module-accton-as4610-cpld \
kernel-module-accton-as4610-fan \
kernel-module-accton-as4610-leds \
Expand Down
2 changes: 1 addition & 1 deletion conf/machine/generic-x86-64.conf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ONL_PLATFORM_SUPPORT = " \
ONL_MODULE_VENDORS = "delta"

MACHINE_EXTRA_RDEPENDS += " \
accton-as4630-54pe-poe-mcu-mod \
bcm591xx-poe-mcu-mod \
ipmitool \
kernel-module-optoe \
kernel-module-x86-64-accton-as4630-54pe-cpld \
Expand Down
Loading