diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-03-24 14:17:19 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-03-24 18:20:33 +1100 |
commit | c7897727e60c6ee3fa7e6aebe82f41538729c212 (patch) | |
tree | da16959472ad2a5512aeffe0c0e2fdfcb21f720c /hdata/test | |
parent | c4730fb25a6ffd24aa2f9d505510dd45bc6f318c (diff) | |
download | talos-skiboot-c7897727e60c6ee3fa7e6aebe82f41538729c212.tar.gz talos-skiboot-c7897727e60c6ee3fa7e6aebe82f41538729c212.zip |
Asynchronous LID/Resource loading for FSP systems
This moves away from using fsp_sync_msg in fsp_fetch_data and instead
using the platform hooks for start_preload_resource() to actually queue
up a load and having the plumbing for checking if a resource is loaded yet.
This gets rid of the "pollers called with locks held" warning we got
heaps of previously. You can now boot some FSP systems without getting
this warning at all.
This also sets the stage for starting load of LIDs much earlier to when
they're needed, improving boot time.
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hdata/test')
-rw-r--r-- | hdata/test/stubs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hdata/test/stubs.c b/hdata/test/stubs.c index c7dae5f6..d0a8ef14 100644 --- a/hdata/test/stubs.c +++ b/hdata/test/stubs.c @@ -54,7 +54,7 @@ STUB(dt_next); STUB(dt_has_node_property); STUB(dt_get_address); STUB(op_display); -STUB(fsp_fetch_data); +STUB(fsp_load_lid); STUB(get_ics_phandle); STUB(get_psi_interrupt); STUB(fsp_adjust_lid_side); |