SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 1 | description: > |
| 2 | Implement to manage VPD data in system. |
| 3 | methods: |
| 4 | - name: WriteKeyword |
| 5 | description: > |
| 6 | A method to update the keyword value for a given VPD record. |
| 7 | parameters: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 8 | - name: path |
Patrick Williams | b78a070 | 2022-10-24 12:32:56 -0500 | [diff] [blame] | 9 | type: object_path |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 10 | description: > |
| 11 | Path to the D-Bus object that represents the FRU. |
| 12 | - name: record |
| 13 | type: string |
| 14 | description: > |
| 15 | Record whose keyword value needs to be modified. |
| 16 | - name: keyword |
| 17 | type: string |
| 18 | description: > |
| 19 | Keyword whose value needs to be updated. |
| 20 | - name: value |
| 21 | type: array[byte] |
| 22 | description: > |
| 23 | Value to be updated for the keyword. |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 24 | errors: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 25 | - xyz.openbmc_project.Common.Error.InvalidArgument |
| 26 | - com.ibm.VPD.Error.PathNotFound |
| 27 | - com.ibm.VPD.Error.RecordNotFound |
| 28 | - com.ibm.VPD.Error.KeywordNotFound |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 29 | |
| 30 | - name: GetFRUsByUnexpandedLocationCode |
| 31 | description: > |
| 32 | A method to get list of FRU D-BUS object paths for a given |
| 33 | unexpanded location code. |
| 34 | parameters: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 35 | - name: locationCode |
| 36 | type: string |
| 37 | description: > |
| 38 | An un-expanded Location code. |
| 39 | - name: nodeNumber |
| 40 | type: uint16 |
| 41 | description: > |
| 42 | Denotes the node in case of a multi-node configuration, |
| 43 | ignored on a single node system. |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 44 | returns: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 45 | - name: inventoryList |
Patrick Williams | b78a070 | 2022-10-24 12:32:56 -0500 | [diff] [blame] | 46 | type: array[object_path] |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 47 | description: > |
| 48 | List of all the FRUs D-Bus object paths for the given location |
| 49 | code. |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 50 | errors: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 51 | - xyz.openbmc_project.Common.Error.InvalidArgument |
| 52 | - com.ibm.VPD.Error.LocationNotFound |
| 53 | - com.ibm.VPD.Error.NodeNotFound |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 54 | |
| 55 | - name: GetFRUsByExpandedLocationCode |
| 56 | description: > |
| 57 | A method to get list of FRU D-BUS object paths for a given expanded |
| 58 | location code. |
| 59 | parameters: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 60 | - name: locationCode |
| 61 | type: string |
| 62 | description: > |
| 63 | Location code in expanded format. |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 64 | returns: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 65 | - name: inventoryList |
Patrick Williams | b78a070 | 2022-10-24 12:32:56 -0500 | [diff] [blame] | 66 | type: array[object_path] |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 67 | description: > |
| 68 | List of all the FRUs D-Bus object path for the given location |
| 69 | code. |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 70 | errors: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 71 | - xyz.openbmc_project.Common.Error.InvalidArgument |
| 72 | - com.ibm.VPD.Error.LocationNotFound |
| 73 | - com.ibm.VPD.Error.NodeNotFound |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 74 | |
| 75 | - name: GetExpandedLocationCode |
| 76 | description: > |
| 77 | An api to get expanded location code corresponding to a given |
| 78 | un-expanded location code. |
| 79 | Expanded location codes gives the location of the FRU in the system. |
| 80 | parameters: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 81 | - name: locationCode |
| 82 | type: string |
| 83 | description: > |
| 84 | Location code in un-expanded format. |
| 85 | - name: nodeNumber |
| 86 | type: uint16 |
| 87 | description: > |
| 88 | Denotes the node in case of multi-node configuration. |
| 89 | Ignored in case of single node configuration. |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 90 | returns: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 91 | - name: locationCode |
| 92 | type: string |
| 93 | description: > |
| 94 | Location code in expanded format. |
SunnySrivastava1984 | 26ff1c8 | 2020-02-26 05:48:39 -0600 | [diff] [blame] | 95 | errors: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 96 | - xyz.openbmc_project.Common.Error.InvalidArgument |
| 97 | - com.ibm.VPD.Error.LocationNotFound |
| 98 | - com.ibm.VPD.Error.NodeNotFound |
SunnySrivastava1984 | 9c3dab3 | 2020-09-07 03:47:05 -0500 | [diff] [blame] | 99 | |
| 100 | - name: PerformVPDRecollection |
| 101 | description: > |
| 102 | An api to check for FRUs replaced and if required, perform |
| 103 | recollection of VPD data for them. |
| 104 | errors: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 105 | - xyz.openbmc_project.Common.Error.InvalidArgument |