-
Notifications
You must be signed in to change notification settings - Fork 63
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
[linux-6.6.y] ata: ahci: Add support for AHCI SGPIO Enclosure Management #277
[linux-6.6.y] ata: ahci: Add support for AHCI SGPIO Enclosure Management #277
Conversation
Hi @leoliu-oc. Thanks for your PR. I'm waiting for a deepin-community member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
config AHCI_ZHAOXIN_SGPIO | ||
tristate "zhaoxin AHCI SGPIO support" | ||
depends on SATA_AHCI | ||
default y |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default y的话 非X86平台也需要这个么?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这边在新版本中添加了对CPU_SUP_ZHAOXIN/CPU_SUP_CENTAUR的依赖。这样就只会在兆芯平台上builtin了。
zhaoxin inclusion category: feature ------------------- To monitor and control auxiliary service in a drive enclosure, Zhaoxin AHCI controller adds enclosure management support in SGPIO protocols with two messages types: LED message type and SGPIO register interface message type. The LED message type uses a genernal ahci specific interface which has already been supported by default ahci driver, the SGPIO register interface message type based on SFF-8485 which defined by vendor specific, this patch adds support for it. Signed-off-by: leoliu-oc <leoliu-oc@zhaoxin.com>
4a7a805
to
725df48
Compare
return 0; | ||
|
||
while (pdev_next) { | ||
pdev_next = pci_get_device(PCI_VENDOR_ID_ZHAOXIN, 0x9083, pdev_cur); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这种用法没见过,我的理解是PCI上没有这个设备就不注册
/ok-to-test |
deepin pr auto reviewZhaoxin SGPIO driver Signed-off-by: XanderChen e165374316c04477ca33b7b0a0d11466@gmail.com |
zhaoxin inclusion
category: feature
To monitor and control auxiliary service in a drive enclosure, Zhaoxin AHCI controller adds enclosure management support in SGPIO protocols with two messages types:
LED message type and SGPIO register interface message type.
The LED message type uses a genernal ahci specific interface which has already been supported by default ahci driver, the SGPIO register interface message type based on SFF-8485 which defined by vendor specific, this patch adds support for it.