-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ipmi_si: Move PARISC handling to another file
Signed-off-by: Corey Minyard <cminyard@mvista.com>
- Loading branch information
Corey Minyard
committed
Sep 28, 2017
1 parent
13d0b35
commit c6f85a7
Showing
4 changed files
with
71 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
#include <linux/module.h> | ||
#include <asm/hardware.h> /* for register_parisc_driver() stuff */ | ||
#include <asm/parisc-device.h> | ||
#include "ipmi_si.h" | ||
|
||
static bool parisc_registered; | ||
|
||
static int __init ipmi_parisc_probe(struct parisc_device *dev) | ||
{ | ||
struct si_sm_io io; | ||
|
||
io.si_type = SI_KCS; | ||
io.addr_source = SI_DEVICETREE; | ||
io.addr_type = IPMI_MEM_ADDR_SPACE; | ||
io.addr_data = dev->hpa.start; | ||
io.regsize = 1; | ||
io.regspacing = 1; | ||
io.regshift = 0; | ||
io.irq = 0; /* no interrupt */ | ||
io.irq_setup = NULL; | ||
io.dev = &dev->dev; | ||
|
||
dev_dbg(&dev->dev, "addr 0x%lx\n", io.addr_data); | ||
|
||
return ipmi_si_add_smi(&io); | ||
} | ||
|
||
static int __exit ipmi_parisc_remove(struct parisc_device *dev) | ||
{ | ||
return ipmi_si_remove_by_dev(&dev->dev); | ||
} | ||
|
||
static const struct parisc_device_id ipmi_parisc_tbl[] __initconst = { | ||
{ HPHW_MC, HVERSION_REV_ANY_ID, 0x004, 0xC0 }, | ||
{ 0, } | ||
}; | ||
|
||
MODULE_DEVICE_TABLE(parisc, ipmi_parisc_tbl); | ||
|
||
static struct parisc_driver ipmi_parisc_driver __refdata = { | ||
.name = "ipmi", | ||
.id_table = ipmi_parisc_tbl, | ||
.probe = ipmi_parisc_probe, | ||
.remove = __exit_p(ipmi_parisc_remove), | ||
}; | ||
|
||
void ipmi_si_parisc_init(void) | ||
{ | ||
register_parisc_driver(&ipmi_parisc_driver); | ||
parisc_registered = true; | ||
} | ||
|
||
void ipmi_si_parisc_shutdown(void) | ||
{ | ||
if (parisc_registered) | ||
unregister_parisc_driver(&ipmi_parisc_driver); | ||
} |