aboutsummaryrefslogtreecommitdiff
path: root/include/skiboot.h
diff options
context:
space:
mode:
authorJordan Niethe <jniethe5@gmail.com>2019-08-09 14:12:20 +1000
committerOliver O'Halloran <oohall@gmail.com>2019-08-16 15:51:55 +1000
commite4e2aa9cc2cbaab9c6c0ee3a1f4e36292128762a (patch)
tree3baf40df5b7ccde86c729634583655252a478530 /include/skiboot.h
parentf68639c6fcdf9261290a4601eda1ae6a406ba95a (diff)
downloadskiboot-e4e2aa9cc2cbaab9c6c0ee3a1f4e36292128762a.zip
skiboot-e4e2aa9cc2cbaab9c6c0ee3a1f4e36292128762a.tar.gz
skiboot-e4e2aa9cc2cbaab9c6c0ee3a1f4e36292128762a.tar.bz2
pci: Use a macro for accessing PCI BDF Function Number
Currently when the Function Number bits of a BDF are needed the bit operations to get it are free coded. There are many places where the Function Number is used, so make a macro to use instead of free coding it everytime. Signed-off-by: Jordan Niethe <jniethe5@gmail.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'include/skiboot.h')
-rw-r--r--include/skiboot.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/skiboot.h b/include/skiboot.h
index 7ea17bf..96d25b8 100644
--- a/include/skiboot.h
+++ b/include/skiboot.h
@@ -140,6 +140,7 @@ static inline bool is_pow2(unsigned long val)
/* PCI Geographical Addressing */
#define PCI_BUS_NUM(bdfn) (((bdfn) >> 8) & 0xff)
#define PCI_DEV(bdfn) (((bdfn) >> 3) & 0x1f)
+#define PCI_FUNC(bdfn) ((bdfn) & 0x07)
/* Clean the stray high bit which the FSP inserts: we only have 52 bits real */
static inline u64 cleanup_addr(u64 addr)