• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2   UEFI Component Name(2) protocol implementation for IsaBusDxe driver.
3 
4   Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
5   This program and the accompanying materials
6   are licensed and made available under the terms and conditions of the BSD License
7   which accompanies this distribution.  The full text of the license may be found at
8   http://opensource.org/licenses/bsd-license.php
9 
10   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 
13 **/
14 
15 #ifndef _ISA_BUS_COMPONENT_NAME_H_
16 #define _ISA_BUS_COMPONENT_NAME_H_
17 
18 #include <Uefi.h>
19 #include <Protocol/ComponentName.h>
20 #include <Protocol/ComponentName2.h>
21 
22 extern EFI_COMPONENT_NAME_PROTOCOL  gIsaBusComponentName;
23 extern EFI_COMPONENT_NAME2_PROTOCOL gIsaBusComponentName2;
24 
25 /**
26   Retrieves a Unicode string that is the user readable name of the driver.
27 
28   This function retrieves the user readable name of a driver in the form of a
29   Unicode string. If the driver specified by This has a user readable name in
30   the language specified by Language, then a pointer to the driver name is
31   returned in DriverName, and EFI_SUCCESS is returned. If the driver specified
32   by This does not support the language specified by Language,
33   then EFI_UNSUPPORTED is returned.
34 
35   @param  This[in]              A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
36                                 EFI_COMPONENT_NAME_PROTOCOL instance.
37 
38   @param  Language[in]          A pointer to a Null-terminated ASCII string
39                                 array indicating the language. This is the
40                                 language of the driver name that the caller is
41                                 requesting, and it must match one of the
42                                 languages specified in SupportedLanguages. The
43                                 number of languages supported by a driver is up
44                                 to the driver writer. Language is specified
45                                 in RFC 4646 or ISO 639-2 language code format.
46 
47   @param  DriverName[out]       A pointer to the Unicode string to return.
48                                 This Unicode string is the name of the
49                                 driver specified by This in the language
50                                 specified by Language.
51 
52   @retval EFI_SUCCESS           The Unicode string for the Driver specified by
53                                 This and the language specified by Language was
54                                 returned in DriverName.
55 
56   @retval EFI_INVALID_PARAMETER Language is NULL.
57 
58   @retval EFI_INVALID_PARAMETER DriverName is NULL.
59 
60   @retval EFI_UNSUPPORTED       The driver specified by This does not support
61                                 the language specified by Language.
62 
63 **/
64 EFI_STATUS
65 EFIAPI
66 IsaBusComponentNameGetDriverName (
67   IN  EFI_COMPONENT_NAME_PROTOCOL  *This,
68   IN  CHAR8                        *Language,
69   OUT CHAR16                       **DriverName
70   );
71 
72 
73 /**
74   Retrieves a Unicode string that is the user readable name of the controller
75   that is being managed by a driver.
76 
77   This function retrieves the user readable name of the controller specified by
78   ControllerHandle and ChildHandle in the form of a Unicode string. If the
79   driver specified by This has a user readable name in the language specified by
80   Language, then a pointer to the controller name is returned in ControllerName,
81   and EFI_SUCCESS is returned.  If the driver specified by This is not currently
82   managing the controller specified by ControllerHandle and ChildHandle,
83   then EFI_UNSUPPORTED is returned.  If the driver specified by This does not
84   support the language specified by Language, then EFI_UNSUPPORTED is returned.
85 
86   @param  This[in]              A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
87                                 EFI_COMPONENT_NAME_PROTOCOL instance.
88 
89   @param  ControllerHandle[in]  The handle of a controller that the driver
90                                 specified by This is managing.  This handle
91                                 specifies the controller whose name is to be
92                                 returned.
93 
94   @param  ChildHandle[in]       The handle of the child controller to retrieve
95                                 the name of.  This is an optional parameter that
96                                 may be NULL.  It will be NULL for device
97                                 drivers.  It will also be NULL for a bus drivers
98                                 that wish to retrieve the name of the bus
99                                 controller.  It will not be NULL for a bus
100                                 driver that wishes to retrieve the name of a
101                                 child controller.
102 
103   @param  Language[in]          A pointer to a Null-terminated ASCII string
104                                 array indicating the language.  This is the
105                                 language of the driver name that the caller is
106                                 requesting, and it must match one of the
107                                 languages specified in SupportedLanguages. The
108                                 number of languages supported by a driver is up
109                                 to the driver writer. Language is specified in
110                                 RFC 4646 or ISO 639-2 language code format.
111 
112   @param  ControllerName[out]   A pointer to the Unicode string to return.
113                                 This Unicode string is the name of the
114                                 controller specified by ControllerHandle and
115                                 ChildHandle in the language specified by
116                                 Language from the point of view of the driver
117                                 specified by This.
118 
119   @retval EFI_SUCCESS           The Unicode string for the user readable name in
120                                 the language specified by Language for the
121                                 driver specified by This was returned in
122                                 DriverName.
123 
124   @retval EFI_INVALID_PARAMETER ControllerHandle is NULL.
125 
126   @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid
127                                 EFI_HANDLE.
128 
129   @retval EFI_INVALID_PARAMETER Language is NULL.
130 
131   @retval EFI_INVALID_PARAMETER ControllerName is NULL.
132 
133   @retval EFI_UNSUPPORTED       The driver specified by This is not currently
134                                 managing the controller specified by
135                                 ControllerHandle and ChildHandle.
136 
137   @retval EFI_UNSUPPORTED       The driver specified by This does not support
138                                 the language specified by Language.
139 
140 **/
141 EFI_STATUS
142 EFIAPI
143 IsaBusComponentNameGetControllerName (
144   IN  EFI_COMPONENT_NAME_PROTOCOL                     *This,
145   IN  EFI_HANDLE                                      ControllerHandle,
146   IN  EFI_HANDLE                                      ChildHandle        OPTIONAL,
147   IN  CHAR8                                           *Language,
148   OUT CHAR16                                          **ControllerName
149   );
150 
151 #endif
152