firmware.c (4b4193256c8d3bc3a5397b5cd9494c2ad386317d) firmware.c (0eacd06bb8adea8dd9edb0a30144166d9f227e64)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * pSeries firmware setup code.
4 *
5 * Portions from arch/powerpc/platforms/pseries/setup.c:
6 * Copyright (C) 1995 Linus Torvalds
7 * Adapted from 'alpha' version by Gary Thomas
8 * Modified by Cort Dougan (cort@cs.nmt.edu)

--- 105 unchanged lines hidden (view full) ---

114
115struct vec5_fw_feature {
116 unsigned long val;
117 unsigned int feature;
118};
119
120static __initdata struct vec5_fw_feature
121vec5_fw_features_table[] = {
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * pSeries firmware setup code.
4 *
5 * Portions from arch/powerpc/platforms/pseries/setup.c:
6 * Copyright (C) 1995 Linus Torvalds
7 * Adapted from 'alpha' version by Gary Thomas
8 * Modified by Cort Dougan (cort@cs.nmt.edu)

--- 105 unchanged lines hidden (view full) ---

114
115struct vec5_fw_feature {
116 unsigned long val;
117 unsigned int feature;
118};
119
120static __initdata struct vec5_fw_feature
121vec5_fw_features_table[] = {
122 {FW_FEATURE_TYPE1_AFFINITY, OV5_TYPE1_AFFINITY},
122 {FW_FEATURE_FORM1_AFFINITY, OV5_FORM1_AFFINITY},
123 {FW_FEATURE_PRRN, OV5_PRRN},
124 {FW_FEATURE_DRMEM_V2, OV5_DRMEM_V2},
125 {FW_FEATURE_DRC_INFO, OV5_DRC_INFO},
126};
127
128static void __init fw_vec5_feature_init(const char *vec5, unsigned long len)
129{
130 unsigned int index, feat;

--- 57 unchanged lines hidden ---
123 {FW_FEATURE_PRRN, OV5_PRRN},
124 {FW_FEATURE_DRMEM_V2, OV5_DRMEM_V2},
125 {FW_FEATURE_DRC_INFO, OV5_DRC_INFO},
126};
127
128static void __init fw_vec5_feature_init(const char *vec5, unsigned long len)
129{
130 unsigned int index, feat;

--- 57 unchanged lines hidden ---