Message ID | 98038734d73c604dee6ac0d34740d5bc2034e87d.1501854302.git.michal.simek@xilinx.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Aug 4, 2017 at 3:45 PM, Michal Simek <michal.simek@xilinx.com> wrote: > +static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, > + u32 *ret_payload) > +{ > + struct arm_smccc_res res; > + > + arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); > + > + if (ret_payload) { > + ret_payload[0] = (u32)res.a0; > + ret_payload[1] = (u32)(res.a0 >> 32); > + ret_payload[2] = (u32)res.a1; > + ret_payload[3] = (u32)(res.a1 >> 32); > + ret_payload[4] = (u32)res.a2; > + } > + > + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); > +} It looks like you forgot to add the cpu_to_le32/le32_to_cpu conversions here to make this work on big-endian kernels. > + > +static u32 pm_api_version; > + > +/** > + * zynqmp_pm_get_api_version - Get version number of PMU PM firmware > + * @version: Returned version value > + * > + * Return: Returns status, either success or error+reason > + */ > +int zynqmp_pm_get_api_version(u32 *version) > +{ > + u32 ret_payload[PAYLOAD_ARG_CNT]; > + > + if (!version) > + return zynqmp_pm_ret_code(XST_PM_CONFLICT); > + > + /* Check is PM API version already verified */ > + if (pm_api_version > 0) { > + *version = pm_api_version; > + return XST_PM_SUCCESS; > + } > + invoke_pm_fn(GET_API_VERSION, 0, 0, 0, 0, ret_payload); > + *version = ret_payload[1]; > + > + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); > +} > +EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version); How is this supposed to be used? API version number interfaces are generally problematic, as you don't have that interface any more if you change the version. Normally this should be based on the "compatible" string in DT to find our what you are talking to, in combination with a list of features that you can query to find out if something is available that you can't just try out by calling. > diff --git a/include/linux/soc/xilinx/zynqmp/firmware.h b/include/linux/soc/xilinx/zynqmp/firmware.h > new file mode 100644 > index 000000000000..5beb5988e3de > --- /dev/null > +++ b/include/linux/soc/xilinx/zynqmp/firmware.h > @@ -0,0 +1,246 @@ > + > +#ifndef __SOC_ZYNQMP_FIRMWARE_H__ > +#define __SOC_ZYNQMP_FIRMWARE_H__ > + > +#define ZYNQMP_PM_VERSION_MAJOR 0 > +#define ZYNQMP_PM_VERSION_MINOR 3 Again, having the version number hardcoded in a global constant seems pointless. If you expect to have to support different incompatible versions in the future, name the header file firmware-0-3.h and prefix the constants with the current version. > +/* > + * Internal functions > + */ > +int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, > + u32 *ret_payload); > +int zynqmp_pm_ret_code(u32 ret_status); > + > +/* Miscellaneous API functions */ > +int zynqmp_pm_get_api_version(u32 *version); > +int zynqmp_pm_get_chipid(u32 *idcode, u32 *version); The "internal" functions probably shouldn't be declared in a global header file. Arnd
On 14.8.2017 17:06, Arnd Bergmann wrote: > On Fri, Aug 4, 2017 at 3:45 PM, Michal Simek <michal.simek@xilinx.com> wrote: >> +static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, >> + u32 *ret_payload) >> +{ >> + struct arm_smccc_res res; >> + >> + arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); >> + >> + if (ret_payload) { >> + ret_payload[0] = (u32)res.a0; >> + ret_payload[1] = (u32)(res.a0 >> 32); >> + ret_payload[2] = (u32)res.a1; >> + ret_payload[3] = (u32)(res.a1 >> 32); >> + ret_payload[4] = (u32)res.a2; >> + } >> + >> + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); >> +} > > It looks like you forgot to add the cpu_to_le32/le32_to_cpu conversions > here to make this work on big-endian kernels. We have discussed support for big endian kernels in past and discussion end up with that there is no customer for this. It means I can change this but none will use this. > >> + >> +static u32 pm_api_version; >> + >> +/** >> + * zynqmp_pm_get_api_version - Get version number of PMU PM firmware >> + * @version: Returned version value >> + * >> + * Return: Returns status, either success or error+reason >> + */ >> +int zynqmp_pm_get_api_version(u32 *version) >> +{ >> + u32 ret_payload[PAYLOAD_ARG_CNT]; >> + >> + if (!version) >> + return zynqmp_pm_ret_code(XST_PM_CONFLICT); >> + >> + /* Check is PM API version already verified */ >> + if (pm_api_version > 0) { >> + *version = pm_api_version; >> + return XST_PM_SUCCESS; >> + } >> + invoke_pm_fn(GET_API_VERSION, 0, 0, 0, 0, ret_payload); >> + *version = ret_payload[1]; >> + >> + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); >> +} >> +EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version); > > How is this supposed to be used? API version number interfaces > are generally problematic, as you don't have that interface any > more if you change the version. This function is called from power management driver to find out a version of PMUFW. It is not a problem to save version in the driver and provide another function to access it instead of asking firmware again. Or also remove this completely because it is more for power management then for communication. And this patch is just about communication. > > Normally this should be based on the "compatible" string > in DT to find our what you are talking to, in combination with > a list of features that you can query to find out if something > is available that you can't just try out by calling. How can you find out what you are talking to without asking for version? It should be probably be based on some sort of list of services and based on that enabled features. Anyway I don't need this function to be in this interface driver that's why I will remove this part in v2. >> diff --git a/include/linux/soc/xilinx/zynqmp/firmware.h b/include/linux/soc/xilinx/zynqmp/firmware.h >> new file mode 100644 >> index 000000000000..5beb5988e3de >> --- /dev/null >> +++ b/include/linux/soc/xilinx/zynqmp/firmware.h >> @@ -0,0 +1,246 @@ >> + >> +#ifndef __SOC_ZYNQMP_FIRMWARE_H__ >> +#define __SOC_ZYNQMP_FIRMWARE_H__ >> + >> +#define ZYNQMP_PM_VERSION_MAJOR 0 >> +#define ZYNQMP_PM_VERSION_MINOR 3 > > Again, having the version number hardcoded in a global constant > seems pointless. If you expect to have to support different incompatible > versions in the future, name the header file firmware-0-3.h and > prefix the constants with the current version. Will remove. > >> +/* >> + * Internal functions >> + */ >> +int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, >> + u32 *ret_payload); >> +int zynqmp_pm_ret_code(u32 ret_status); >> + >> +/* Miscellaneous API functions */ >> +int zynqmp_pm_get_api_version(u32 *version); This will go out too. >> +int zynqmp_pm_get_chipid(u32 *idcode, u32 *version); > > The "internal" functions probably shouldn't be declared in a global > header file. Ok. This function will be called by nvmem driver which provides an option to expose chip id to kernel and user space. I can call this function just once internally and then expose another function which will simply just provide access to that static variable. Please let me know what you prefer. Thanks, Michal
On 16.8.2017 13:51, Michal Simek wrote: > On 14.8.2017 17:06, Arnd Bergmann wrote: >> On Fri, Aug 4, 2017 at 3:45 PM, Michal Simek <michal.simek@xilinx.com> wrote: >>> +static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, >>> + u32 *ret_payload) >>> +{ >>> + struct arm_smccc_res res; >>> + >>> + arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); >>> + >>> + if (ret_payload) { >>> + ret_payload[0] = (u32)res.a0; >>> + ret_payload[1] = (u32)(res.a0 >> 32); >>> + ret_payload[2] = (u32)res.a1; >>> + ret_payload[3] = (u32)(res.a1 >> 32); >>> + ret_payload[4] = (u32)res.a2; >>> + } >>> + >>> + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); >>> +} >> >> It looks like you forgot to add the cpu_to_le32/le32_to_cpu conversions >> here to make this work on big-endian kernels. > > We have discussed support for big endian kernels in past and discussion > end up with that there is no customer for this. It means I can change > this but none will use this. > > >> >>> + >>> +static u32 pm_api_version; >>> + >>> +/** >>> + * zynqmp_pm_get_api_version - Get version number of PMU PM firmware >>> + * @version: Returned version value >>> + * >>> + * Return: Returns status, either success or error+reason >>> + */ >>> +int zynqmp_pm_get_api_version(u32 *version) >>> +{ >>> + u32 ret_payload[PAYLOAD_ARG_CNT]; >>> + >>> + if (!version) >>> + return zynqmp_pm_ret_code(XST_PM_CONFLICT); >>> + >>> + /* Check is PM API version already verified */ >>> + if (pm_api_version > 0) { >>> + *version = pm_api_version; >>> + return XST_PM_SUCCESS; >>> + } >>> + invoke_pm_fn(GET_API_VERSION, 0, 0, 0, 0, ret_payload); >>> + *version = ret_payload[1]; >>> + >>> + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); >>> +} >>> +EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version); >> >> How is this supposed to be used? API version number interfaces >> are generally problematic, as you don't have that interface any >> more if you change the version. > > This function is called from power management driver to find out a > version of PMUFW. It is not a problem to save version in the driver and > provide another function to access it instead of asking firmware again. > Or also remove this completely because it is more for power management > then for communication. And this patch is just about communication. > > >> >> Normally this should be based on the "compatible" string >> in DT to find our what you are talking to, in combination with >> a list of features that you can query to find out if something >> is available that you can't just try out by calling. > > How can you find out what you are talking to without asking for version? > > It should be probably be based on some sort of list of services and > based on that enabled features. > > Anyway I don't need this function to be in this interface driver that's > why I will remove this part in v2. > >>> diff --git a/include/linux/soc/xilinx/zynqmp/firmware.h b/include/linux/soc/xilinx/zynqmp/firmware.h >>> new file mode 100644 >>> index 000000000000..5beb5988e3de >>> --- /dev/null >>> +++ b/include/linux/soc/xilinx/zynqmp/firmware.h >>> @@ -0,0 +1,246 @@ >>> + >>> +#ifndef __SOC_ZYNQMP_FIRMWARE_H__ >>> +#define __SOC_ZYNQMP_FIRMWARE_H__ >>> + >>> +#define ZYNQMP_PM_VERSION_MAJOR 0 >>> +#define ZYNQMP_PM_VERSION_MINOR 3 >> >> Again, having the version number hardcoded in a global constant >> seems pointless. If you expect to have to support different incompatible >> versions in the future, name the header file firmware-0-3.h and >> prefix the constants with the current version. > > Will remove. > >> >>> +/* >>> + * Internal functions >>> + */ >>> +int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, >>> + u32 *ret_payload); >>> +int zynqmp_pm_ret_code(u32 ret_status); >>> + >>> +/* Miscellaneous API functions */ >>> +int zynqmp_pm_get_api_version(u32 *version); > > This will go out too. > >>> +int zynqmp_pm_get_chipid(u32 *idcode, u32 *version); >> >> The "internal" functions probably shouldn't be declared in a global >> header file. Sorry got your comment now - will mark that internal functions as static to get them out of this header. Thanks, Michal
On Wed, Aug 16, 2017 at 1:51 PM, Michal Simek <michal.simek@xilinx.com> wrote: > On 14.8.2017 17:06, Arnd Bergmann wrote: >> On Fri, Aug 4, 2017 at 3:45 PM, Michal Simek <michal.simek@xilinx.com> wrote: >>> +static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, >>> + u32 *ret_payload) >>> +{ >>> + struct arm_smccc_res res; >>> + >>> + arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); >>> + >>> + if (ret_payload) { >>> + ret_payload[0] = (u32)res.a0; >>> + ret_payload[1] = (u32)(res.a0 >> 32); >>> + ret_payload[2] = (u32)res.a1; >>> + ret_payload[3] = (u32)(res.a1 >> 32); >>> + ret_payload[4] = (u32)res.a2; >>> + } >>> + >>> + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); >>> +} >> >> It looks like you forgot to add the cpu_to_le32/le32_to_cpu conversions >> here to make this work on big-endian kernels. > > We have discussed support for big endian kernels in past and discussion > end up with that there is no customer for this. It means I can change > this but none will use this. Ok, thanks. As a general rule, I prefer kernel code to be written in a portable way even when you assume that is not necessary. Besides the obvious problem of users that end up wanting to do something you don't expect, there is the more general issue of copying code into another driver that may need to be more portable. >>> +static u32 pm_api_version; >>> + >>> +/** >>> + * zynqmp_pm_get_api_version - Get version number of PMU PM firmware >>> + * @version: Returned version value >>> + * >>> + * Return: Returns status, either success or error+reason >>> + */ >>> +int zynqmp_pm_get_api_version(u32 *version) >>> +{ >>> + u32 ret_payload[PAYLOAD_ARG_CNT]; >>> + >>> + if (!version) >>> + return zynqmp_pm_ret_code(XST_PM_CONFLICT); >>> + >>> + /* Check is PM API version already verified */ >>> + if (pm_api_version > 0) { >>> + *version = pm_api_version; >>> + return XST_PM_SUCCESS; >>> + } >>> + invoke_pm_fn(GET_API_VERSION, 0, 0, 0, 0, ret_payload); >>> + *version = ret_payload[1]; >>> + >>> + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); >>> +} >>> +EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version); >> >> How is this supposed to be used? API version number interfaces >> are generally problematic, as you don't have that interface any >> more if you change the version. > > This function is called from power management driver to find out a > version of PMUFW. It is not a problem to save version in the driver and > provide another function to access it instead of asking firmware again. > Or also remove this completely because it is more for power management > then for communication. And this patch is just about communication. Ok. For the purpose of the power management driver, you probably also want a different name, as what you are interested in is not the API version but the firmware version. >> Normally this should be based on the "compatible" string >> in DT to find our what you are talking to, in combination with >> a list of features that you can query to find out if something >> is available that you can't just try out by calling. > > How can you find out what you are talking to without asking for version? > > It should be probably be based on some sort of list of services and > based on that enabled features. My point was that you can't even ask for a version number without first knowing what you are talking to, and that information comes from the DT node describing the interface. Arnd
On 16.8.2017 14:41, Arnd Bergmann wrote: > On Wed, Aug 16, 2017 at 1:51 PM, Michal Simek <michal.simek@xilinx.com> wrote: >> On 14.8.2017 17:06, Arnd Bergmann wrote: >>> On Fri, Aug 4, 2017 at 3:45 PM, Michal Simek <michal.simek@xilinx.com> wrote: >>>> +static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, >>>> + u32 *ret_payload) >>>> +{ >>>> + struct arm_smccc_res res; >>>> + >>>> + arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); >>>> + >>>> + if (ret_payload) { >>>> + ret_payload[0] = (u32)res.a0; >>>> + ret_payload[1] = (u32)(res.a0 >> 32); >>>> + ret_payload[2] = (u32)res.a1; >>>> + ret_payload[3] = (u32)(res.a1 >> 32); >>>> + ret_payload[4] = (u32)res.a2; >>>> + } >>>> + >>>> + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); >>>> +} >>> >>> It looks like you forgot to add the cpu_to_le32/le32_to_cpu conversions >>> here to make this work on big-endian kernels. >> >> We have discussed support for big endian kernels in past and discussion >> end up with that there is no customer for this. It means I can change >> this but none will use this. > > Ok, thanks. As a general rule, I prefer kernel code to be written > in a portable way even when you assume that is not necessary. > > Besides the obvious problem of users that end up wanting to do > something you don't expect, there is the more general issue of > copying code into another driver that may need to be more portable. I fully understand this. Let me play with it but I expect there will be different issues then just this. > >>>> +static u32 pm_api_version; >>>> + >>>> +/** >>>> + * zynqmp_pm_get_api_version - Get version number of PMU PM firmware >>>> + * @version: Returned version value >>>> + * >>>> + * Return: Returns status, either success or error+reason >>>> + */ >>>> +int zynqmp_pm_get_api_version(u32 *version) >>>> +{ >>>> + u32 ret_payload[PAYLOAD_ARG_CNT]; >>>> + >>>> + if (!version) >>>> + return zynqmp_pm_ret_code(XST_PM_CONFLICT); >>>> + >>>> + /* Check is PM API version already verified */ >>>> + if (pm_api_version > 0) { >>>> + *version = pm_api_version; >>>> + return XST_PM_SUCCESS; >>>> + } >>>> + invoke_pm_fn(GET_API_VERSION, 0, 0, 0, 0, ret_payload); >>>> + *version = ret_payload[1]; >>>> + >>>> + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); >>>> +} >>>> +EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version); >>> >>> How is this supposed to be used? API version number interfaces >>> are generally problematic, as you don't have that interface any >>> more if you change the version. >> >> This function is called from power management driver to find out a >> version of PMUFW. It is not a problem to save version in the driver and >> provide another function to access it instead of asking firmware again. >> Or also remove this completely because it is more for power management >> then for communication. And this patch is just about communication. > > Ok. For the purpose of the power management driver, you > probably also want a different name, as what you are interested > in is not the API version but the firmware version. I am really looking forward to see xilinx PM guys to start to upstream their code. And they most likely need this API version. But for that stuff which are the part of this patch all functions should be there. If function is not implemented then you get error back which is sign that firmware doesn't support it. Definitely we can consider to add compatible string with version suffix in future when the same SMCs will be used for different purpose. >>> Normally this should be based on the "compatible" string >>> in DT to find our what you are talking to, in combination with >>> a list of features that you can query to find out if something >>> is available that you can't just try out by calling. >> >> How can you find out what you are talking to without asking for version? >> >> It should be probably be based on some sort of list of services and >> based on that enabled features. > > My point was that you can't even ask for a version number without > first knowing what you are talking to, and that information comes from > the DT node describing the interface. Ok. Got you and yes there must be at least any node. Thanks, Michal
On 16.8.2017 16:00, Michal Simek wrote: > On 16.8.2017 14:41, Arnd Bergmann wrote: >> On Wed, Aug 16, 2017 at 1:51 PM, Michal Simek <michal.simek@xilinx.com> wrote: >>> On 14.8.2017 17:06, Arnd Bergmann wrote: >>>> On Fri, Aug 4, 2017 at 3:45 PM, Michal Simek <michal.simek@xilinx.com> wrote: >>>>> +static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, >>>>> + u32 *ret_payload) >>>>> +{ >>>>> + struct arm_smccc_res res; >>>>> + >>>>> + arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); >>>>> + >>>>> + if (ret_payload) { >>>>> + ret_payload[0] = (u32)res.a0; >>>>> + ret_payload[1] = (u32)(res.a0 >> 32); >>>>> + ret_payload[2] = (u32)res.a1; >>>>> + ret_payload[3] = (u32)(res.a1 >> 32); >>>>> + ret_payload[4] = (u32)res.a2; >>>>> + } >>>>> + >>>>> + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); >>>>> +} >>>> >>>> It looks like you forgot to add the cpu_to_le32/le32_to_cpu conversions >>>> here to make this work on big-endian kernels. >>> >>> We have discussed support for big endian kernels in past and discussion >>> end up with that there is no customer for this. It means I can change >>> this but none will use this. >> >> Ok, thanks. As a general rule, I prefer kernel code to be written >> in a portable way even when you assume that is not necessary. >> >> Besides the obvious problem of users that end up wanting to do >> something you don't expect, there is the more general issue of >> copying code into another driver that may need to be more portable. > > > I fully understand this. Let me play with it but I expect there will be > different issues then just this. > What do you think? ret_payload[0] = lower_32_bits(le64_to_cpu(res.a0)); ret_payload[1] = upper_32_bits(le64_to_cpu(res.a0)); ret_payload[2] = lower_32_bits(le64_to_cpu(res.a1)); ret_payload[3] = upper_32_bits(le64_to_cpu(res.a1)); ret_payload[4] = lower_32_bits(le64_to_cpu(res.a2)); There should be probably also change in invoke_pm_fn to do conversion from cpu to le64. int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 *ret_payload) { /* * Added SIP service call Function Identifier * Make sure to stay in x0 register */ u64 smc_arg[4]; smc_arg[0] = cpu_to_le64(PM_SIP_SVC | pm_api_id); smc_arg[1] = cpu_to_le64(((u64)arg1 << 32) | arg0); smc_arg[2] = cpu_to_le64(((u64)arg3 << 32) | arg2); return do_fw_call(smc_arg[0], smc_arg[1], smc_arg[2], ret_payload); } This is not tested on BE just on LE. Thanks, Michal
On Wed, Aug 16, 2017 at 4:34 PM, Michal Simek <michal.simek@xilinx.com> wrote: > On 16.8.2017 16:00, Michal Simek wrote: >> On 16.8.2017 14:41, Arnd Bergmann wrote: >> > > What do you think? > ret_payload[0] = lower_32_bits(le64_to_cpu(res.a0)); > ret_payload[1] = upper_32_bits(le64_to_cpu(res.a0)); > ret_payload[2] = lower_32_bits(le64_to_cpu(res.a1)); > ret_payload[3] = upper_32_bits(le64_to_cpu(res.a1)); > ret_payload[4] = lower_32_bits(le64_to_cpu(res.a2)); > > There should be probably also change in invoke_pm_fn to do conversion > from cpu to le64. > > int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, > u32 *ret_payload) > { > /* > * Added SIP service call Function Identifier > * Make sure to stay in x0 register > */ > u64 smc_arg[4]; > > smc_arg[0] = cpu_to_le64(PM_SIP_SVC | pm_api_id); > smc_arg[1] = cpu_to_le64(((u64)arg1 << 32) | arg0); > smc_arg[2] = cpu_to_le64(((u64)arg3 << 32) | arg2); > > return do_fw_call(smc_arg[0], smc_arg[1], smc_arg[2], ret_payload); > } > > This is not tested on BE just on LE. Looks good, just make sure you also check with sparse (make C=1) to ensure you have the right __le64/__le32 types everywhere. Arnd
On 16.8.2017 17:05, Arnd Bergmann wrote: > On Wed, Aug 16, 2017 at 4:34 PM, Michal Simek <michal.simek@xilinx.com> wrote: >> On 16.8.2017 16:00, Michal Simek wrote: >>> On 16.8.2017 14:41, Arnd Bergmann wrote: >>> >> >> What do you think? >> ret_payload[0] = lower_32_bits(le64_to_cpu(res.a0)); >> ret_payload[1] = upper_32_bits(le64_to_cpu(res.a0)); >> ret_payload[2] = lower_32_bits(le64_to_cpu(res.a1)); >> ret_payload[3] = upper_32_bits(le64_to_cpu(res.a1)); >> ret_payload[4] = lower_32_bits(le64_to_cpu(res.a2)); >> >> There should be probably also change in invoke_pm_fn to do conversion >> from cpu to le64. >> >> int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, >> u32 *ret_payload) >> { >> /* >> * Added SIP service call Function Identifier >> * Make sure to stay in x0 register >> */ >> u64 smc_arg[4]; >> >> smc_arg[0] = cpu_to_le64(PM_SIP_SVC | pm_api_id); >> smc_arg[1] = cpu_to_le64(((u64)arg1 << 32) | arg0); >> smc_arg[2] = cpu_to_le64(((u64)arg3 << 32) | arg2); >> >> return do_fw_call(smc_arg[0], smc_arg[1], smc_arg[2], ret_payload); >> } >> >> This is not tested on BE just on LE. > > Looks good, just make sure you also check with sparse (make C=1) > to ensure you have the right __le64/__le32 types everywhere. Are you aware about any doc where it is written that data should be passed as little endian? I was playing with it a little bit and this means that these 2(3 with hvc) needs to be changed. asmlinkage void __arm_smccc_smc(__le64 a0, __le64 a1, __le64 a2, __le64 a3,__le64 a4, __le64 a5, __le64 a6, __le64 a7, struct arm_smccc_res *res, struct arm_smccc_quirk *quirk); struct arm_smccc_res { - unsigned long a0; - unsigned long a1; - unsigned long a2; - unsigned long a3; + __le64 a0; + __le64 a1; + __le64 a2; + __le64 a3; }; Thanks, Michal
On Thu, Aug 17, 2017 at 12:48 PM, Michal Simek <michal.simek@xilinx.com> wrote: > On 16.8.2017 17:05, Arnd Bergmann wrote: >> On Wed, Aug 16, 2017 at 4:34 PM, Michal Simek <michal.simek@xilinx.com> wrote: >> >> Looks good, just make sure you also check with sparse (make C=1) >> to ensure you have the right __le64/__le32 types everywhere. > > Are you aware about any doc where it is written that data should be > passed as little endian? Looking at http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf now, I think that the structure above is endian-neutral as the arguments get passed in registers rather than memory. However, if you pass pointers to data structures in memory, those data structures would have to be defined with __le32/__le64 types. > I was playing with it a little bit and this means that these 2(3 with > hvc) needs to be changed. > > asmlinkage void __arm_smccc_smc(__le64 a0, __le64 a1, __le64 a2, > __le64 a3,__le64 a4, __le64 a5, __le64 a6, __le64 a7, > struct arm_smccc_res *res, struct arm_smccc_quirk *quirk); > > struct arm_smccc_res { > - unsigned long a0; > - unsigned long a1; > - unsigned long a2; > - unsigned long a3; > + __le64 a0; > + __le64 a1; > + __le64 a2; > + __le64 a3; > }; This is clearly wrong on 32-bit machines, I think this is intentionally defined as 'unsigned long' to have register sized arguments. Arnd
On 17.8.2017 23:11, Arnd Bergmann wrote: > On Thu, Aug 17, 2017 at 12:48 PM, Michal Simek <michal.simek@xilinx.com> wrote: >> On 16.8.2017 17:05, Arnd Bergmann wrote: >>> On Wed, Aug 16, 2017 at 4:34 PM, Michal Simek <michal.simek@xilinx.com> wrote: >>> >>> Looks good, just make sure you also check with sparse (make C=1) >>> to ensure you have the right __le64/__le32 types everywhere. >> >> Are you aware about any doc where it is written that data should be >> passed as little endian? > > Looking at http://infocenter.arm.com/help/topic/com.arm.doc.den0028b/ARM_DEN0028B_SMC_Calling_Convention.pdf > now, I think that the structure above is endian-neutral as the arguments > get passed in registers rather than memory. > > However, if you pass pointers to data structures in memory, those > data structures would have to be defined with __le32/__le64 types. ok. > >> I was playing with it a little bit and this means that these 2(3 with >> hvc) needs to be changed. >> >> asmlinkage void __arm_smccc_smc(__le64 a0, __le64 a1, __le64 a2, >> __le64 a3,__le64 a4, __le64 a5, __le64 a6, __le64 a7, >> struct arm_smccc_res *res, struct arm_smccc_quirk *quirk); >> >> struct arm_smccc_res { >> - unsigned long a0; >> - unsigned long a1; >> - unsigned long a2; >> - unsigned long a3; >> + __le64 a0; >> + __le64 a1; >> + __le64 a2; >> + __le64 a3; >> }; > > This is clearly wrong on 32-bit machines, I think this is intentionally > defined as 'unsigned long' to have register sized arguments. Yep, I know. Let me integrate that changes which Marc wanted and will send next version. Thanks, Michal
diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig index 07fc0ac51c52..f6e13aedc736 100644 --- a/drivers/soc/Kconfig +++ b/drivers/soc/Kconfig @@ -15,6 +15,7 @@ source "drivers/soc/tegra/Kconfig" source "drivers/soc/ti/Kconfig" source "drivers/soc/ux500/Kconfig" source "drivers/soc/versatile/Kconfig" +source "drivers/soc/xilinx/Kconfig" source "drivers/soc/zte/Kconfig" endmenu diff --git a/drivers/soc/Makefile b/drivers/soc/Makefile index 9241125416ba..f5be6cef24f8 100644 --- a/drivers/soc/Makefile +++ b/drivers/soc/Makefile @@ -16,6 +16,7 @@ obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/ obj-$(CONFIG_SOC_SAMSUNG) += samsung/ obj-$(CONFIG_ARCH_SUNXI) += sunxi/ obj-$(CONFIG_ARCH_TEGRA) += tegra/ +obj-$(CONFIG_ARCH_ZYNQMP) += xilinx/zynqmp/ obj-$(CONFIG_SOC_TI) += ti/ obj-$(CONFIG_ARCH_U8500) += ux500/ obj-$(CONFIG_PLAT_VERSATILE) += versatile/ diff --git a/drivers/soc/xilinx/Kconfig b/drivers/soc/xilinx/Kconfig new file mode 100644 index 000000000000..281e5c87e96e --- /dev/null +++ b/drivers/soc/xilinx/Kconfig @@ -0,0 +1,6 @@ +# +# Xilinx ZYNQ MPSoC configuration +# +menuconfig SOC_XILINX_ZYNQMP + bool "Xilinx Zynq MPSoC driver support" + depends on ARCH_ZYNQMP diff --git a/drivers/soc/xilinx/zynqmp/Makefile b/drivers/soc/xilinx/zynqmp/Makefile new file mode 100644 index 000000000000..482655e4bf6d --- /dev/null +++ b/drivers/soc/xilinx/zynqmp/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_SOC_XILINX_ZYNQMP) += firmware.o diff --git a/drivers/soc/xilinx/zynqmp/firmware.c b/drivers/soc/xilinx/zynqmp/firmware.c new file mode 100644 index 000000000000..4c58eb32c010 --- /dev/null +++ b/drivers/soc/xilinx/zynqmp/firmware.c @@ -0,0 +1,419 @@ +/* + * Xilinx Zynq MPSoC Firware layer + * + * Copyright (C) 2014-2017 Xilinx, Inc. + * + * Michal Simek <michal.simek@xilinx.com> + * Davorin Mista <davorin.mista@aggios.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include <linux/compiler.h> +#include <linux/arm-smccc.h> +#include <linux/of.h> +#include <linux/init.h> +#include <linux/module.h> +#include <linux/slab.h> +#include <linux/interrupt.h> +#include <linux/uaccess.h> +#include <linux/pinctrl/consumer.h> +#include <linux/platform_device.h> + +#include <linux/soc/xilinx/zynqmp/firmware.h> + +/** + * zynqmp_pm_ret_code - Convert PMU-FW error codes to Linux error codes + * @ret_status: PMUFW return code + * + * Return: corresponding Linux error code + */ +int zynqmp_pm_ret_code(u32 ret_status) +{ + switch (ret_status) { + case XST_PM_SUCCESS: + case XST_PM_DOUBLE_REQ: + return 0; + case XST_PM_NO_ACCESS: + return -EACCES; + case XST_PM_ABORT_SUSPEND: + return -ECANCELED; + case XST_PM_INTERNAL: + case XST_PM_CONFLICT: + case XST_PM_INVALID_NODE: + default: + return -EINVAL; + } +} + +static noinline int do_fw_call_fail(u64 arg0, u64 arg1, u64 arg2, + u32 *ret_payload) +{ + return -ENODEV; +} + +/* + * PM function call wrapper + * Invoke do_fw_call_smc or do_fw_call_hvc, depending on the configuration + */ +static int (*do_fw_call)(u64, u64, u64, u32 *ret_payload) = do_fw_call_fail; + +/** + * do_fw_call_smc - Call system-level power management layer (SMC) + * @arg0: Argument 0 to SMC call + * @arg1: Argument 1 to SMC call + * @arg2: Argument 2 to SMC call + * @ret_payload: Returned value array + * + * Return: Returns status, either success or error+reason + * + * Invoke power management function via SMC call (no hypervisor present) + */ +static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2, + u32 *ret_payload) +{ + struct arm_smccc_res res; + + arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); + + if (ret_payload) { + ret_payload[0] = (u32)res.a0; + ret_payload[1] = (u32)(res.a0 >> 32); + ret_payload[2] = (u32)res.a1; + ret_payload[3] = (u32)(res.a1 >> 32); + ret_payload[4] = (u32)res.a2; + } + + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); +} + +/** + * do_fw_call_hvc - Call system-level power management layer (HVC) + * @arg0: Argument 0 to HVC call + * @arg1: Argument 1 to HVC call + * @arg2: Argument 2 to HVC call + * @ret_payload: Returned value array + * + * Return: Returns status, either success or error+reason + * + * Invoke power management function via HVC + * HVC-based for communication through hypervisor + * (no direct communication with ATF) + */ +static noinline int do_fw_call_hvc(u64 arg0, u64 arg1, u64 arg2, + u32 *ret_payload) +{ + struct arm_smccc_res res; + + arm_smccc_hvc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res); + + if (ret_payload) { + ret_payload[0] = (u32)res.a0; + ret_payload[1] = (u32)(res.a0 >> 32); + ret_payload[2] = (u32)res.a1; + ret_payload[3] = (u32)(res.a1 >> 32); + ret_payload[4] = (u32)res.a2; + } + + return zynqmp_pm_ret_code((enum pm_ret_status)res.a0); +} + +/** + * invoke_pm_fn - Invoke the system-level power management layer caller + * function depending on the configuration + * @pm_api_id: Requested PM-API call + * @arg0: Argument 0 to requested PM-API call + * @arg1: Argument 1 to requested PM-API call + * @arg2: Argument 2 to requested PM-API call + * @arg3: Argument 3 to requested PM-API call + * @ret_payload: Returned value array + * + * Return: Returns status, either success or error+reason + * + * Invoke power management function for SMC or HVC call, depending on + * configuration + * Following SMC Calling Convention (SMCCC) for SMC64: + * Pm Function Identifier, + * PM_SIP_SVC + PM_API_ID = + * ((SMC_TYPE_FAST << FUNCID_TYPE_SHIFT) + * ((SMC_64) << FUNCID_CC_SHIFT) + * ((SIP_START) << FUNCID_OEN_SHIFT) + * ((PM_API_ID) & FUNCID_NUM_MASK)) + * + * PM_SIP_SVC - Registered ZynqMP SIP Service Call + * PM_API_ID - Power Management API ID + */ +int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, + u32 *ret_payload) +{ + /* + * Added SIP service call Function Identifier + * Make sure to stay in x0 register + */ + u64 smc_arg[4]; + + smc_arg[0] = PM_SIP_SVC | pm_api_id; + smc_arg[1] = ((u64)arg1 << 32) | arg0; + smc_arg[2] = ((u64)arg3 << 32) | arg2; + + return do_fw_call(smc_arg[0], smc_arg[1], smc_arg[2], ret_payload); +} + +static u32 pm_api_version; + +/** + * zynqmp_pm_get_api_version - Get version number of PMU PM firmware + * @version: Returned version value + * + * Return: Returns status, either success or error+reason + */ +int zynqmp_pm_get_api_version(u32 *version) +{ + u32 ret_payload[PAYLOAD_ARG_CNT]; + + if (!version) + return zynqmp_pm_ret_code(XST_PM_CONFLICT); + + /* Check is PM API version already verified */ + if (pm_api_version > 0) { + *version = pm_api_version; + return XST_PM_SUCCESS; + } + invoke_pm_fn(GET_API_VERSION, 0, 0, 0, 0, ret_payload); + *version = ret_payload[1]; + + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version); + +/** + * zynqmp_pm_get_chipid - Get silicon ID registers + * @idcode: IDCODE register + * @version: version register + * + * Return: Returns the status of the operation and the idcode and version + * registers in @idcode and @version. + */ +int zynqmp_pm_get_chipid(u32 *idcode, u32 *version) +{ + u32 ret_payload[PAYLOAD_ARG_CNT]; + + if (!idcode || !version) + return -EINVAL; + + invoke_pm_fn(GET_CHIPID, 0, 0, 0, 0, ret_payload); + *idcode = ret_payload[1]; + *version = ret_payload[2]; + + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_get_chipid); + +/** + * get_set_conduit_method - Choose SMC or HVC based communication + * @np: Pointer to the device_node structure + * + * Use SMC or HVC-based functions to communicate with EL2/EL3 + */ +static void get_set_conduit_method(struct device_node *np) +{ + const char *method; + struct device *dev; + + dev = container_of(&np, struct device, of_node); + + if (of_property_read_string(np, "method", &method)) { + dev_warn(dev, "%s Missing \"method\" property - defaulting to smc\n", + __func__); + do_fw_call = do_fw_call_smc; + return; + } + + if (!strcmp("hvc", method)) { + do_fw_call = do_fw_call_hvc; + + } else if (!strcmp("smc", method)) { + do_fw_call = do_fw_call_smc; + } else { + dev_warn(dev, "%s Invalid \"method\" property: %s - defaulting to smc\n", + __func__, method); + do_fw_call = do_fw_call_smc; + } +} + +/** + * zynqmp_pm_reset_assert - Request setting of reset (1 - assert, 0 - release) + * @reset: Reset to be configured + * @assert_flag: Flag stating should reset be asserted (1) or + * released (0) + * + * Return: Returns status, either success or error+reason + */ +int zynqmp_pm_reset_assert(const enum zynqmp_pm_reset reset, + const enum zynqmp_pm_reset_action assert_flag) +{ + return invoke_pm_fn(RESET_ASSERT, reset, assert_flag, 0, 0, NULL); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_reset_assert); + +/** + * zynqmp_pm_reset_get_status - Get status of the reset + * @reset: Reset whose status should be returned + * @status: Returned status + * + * Return: Returns status, either success or error+reason + */ +int zynqmp_pm_reset_get_status(const enum zynqmp_pm_reset reset, u32 *status) +{ + u32 ret_payload[PAYLOAD_ARG_CNT]; + + if (!status) + return zynqmp_pm_ret_code(XST_PM_CONFLICT); + + invoke_pm_fn(RESET_GET_STATUS, reset, 0, 0, 0, ret_payload); + *status = ret_payload[1]; + + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_reset_get_status); + +/** + * zynqmp_pm_mmio_write - Perform write to protected mmio + * @address: Address to write to + * @mask: Mask to apply + * @value: Value to write + * + * This function provides access to PM-related control registers + * that may not be directly accessible by a particular PU. + * + * Return: Returns status, either success or error+reason + */ +int zynqmp_pm_mmio_write(const u32 address, + const u32 mask, + const u32 value) +{ + return invoke_pm_fn(MMIO_WRITE, address, mask, value, 0, NULL); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_mmio_write); + +/** + * zynqmp_pm_mmio_read - Read value from protected mmio + * @address: Address to write to + * @value: Value to read + * + * This function provides access to PM-related control registers + * that may not be directly accessible by a particular PU. + * + * Return: Returns status, either success or error+reason + */ +int zynqmp_pm_mmio_read(const u32 address, u32 *value) +{ + u32 ret_payload[PAYLOAD_ARG_CNT]; + + if (!value) + return -EINVAL; + + invoke_pm_fn(MMIO_READ, address, 0, 0, 0, ret_payload); + *value = ret_payload[1]; + + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_mmio_read); + +/** + * zynqmp_pm_fpga_load - Perform the fpga load + * @address: Address to write to + * @size: pl bitstream size + * @flags: + * BIT(0) - Bit-stream type. + * 0 - Full Bit-stream. + * 1 - Partial Bit-stream. + * BIT(1) - Authentication. + * 1 - Enable. + * 0 - Disable. + * BIT(2) - Encryption. + * 1 - Enable. + * 0 - Disable. + * NOTE - + * The current implementation supports only Full Bit-stream. + * + * This function provides access to xilfpga library to transfer + * the required bitstream into PL. + * + * Return: Returns status, either success or error+reason + */ +int zynqmp_pm_fpga_load(const u64 address, const u32 size, const u32 flags) +{ + return invoke_pm_fn(FPGA_LOAD, (u32)address, + ((u32)(address >> 32)), size, flags, NULL); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_fpga_load); + +/** + * zynqmp_pm_fpga_get_status - Read value from PCAP status register + * @value: Value to read + * + *This function provides access to the xilfpga library to get + *the PCAP status + * + * Return: Returns status, either success or error+reason + */ +int zynqmp_pm_fpga_get_status(u32 *value) +{ + u32 ret_payload[PAYLOAD_ARG_CNT]; + + if (!value) + return -EINVAL; + + invoke_pm_fn(FPGA_GET_STATUS, 0, 0, 0, 0, ret_payload); + *value = ret_payload[1]; + + return zynqmp_pm_ret_code((enum pm_ret_status)ret_payload[0]); +} +EXPORT_SYMBOL_GPL(zynqmp_pm_fpga_get_status); + +static int __init zynqmp_plat_init(void) +{ + struct device_node *np; + int ret = 0; + + np = of_find_compatible_node(NULL, NULL, "xlnx,zynqmp"); + if (!np) + return 0; + of_node_put(np); + + /* We're running on a ZynqMP machine, the PM node is mandatory. */ + np = of_find_compatible_node(NULL, NULL, "xlnx,zynqmp-pm"); + if (!np) + panic("%s: pm node not found\n", __func__); + + get_set_conduit_method(np); + + /* Check PM API version number */ + zynqmp_pm_get_api_version(&pm_api_version); + if (pm_api_version != ZYNQMP_PM_VERSION) { + panic("%s power management API version error. Expected: v%d.%d - Found: v%d.%d\n", + __func__, + ZYNQMP_PM_VERSION_MAJOR, ZYNQMP_PM_VERSION_MINOR, + pm_api_version >> 16, pm_api_version & 0xffff); + } + + pr_info("%s Power management API v%d.%d\n", __func__, + ZYNQMP_PM_VERSION_MAJOR, ZYNQMP_PM_VERSION_MINOR); + + of_node_put(np); + return ret; +} + +early_initcall(zynqmp_plat_init); diff --git a/include/linux/soc/xilinx/zynqmp/firmware.h b/include/linux/soc/xilinx/zynqmp/firmware.h new file mode 100644 index 000000000000..5beb5988e3de --- /dev/null +++ b/include/linux/soc/xilinx/zynqmp/firmware.h @@ -0,0 +1,246 @@ +/* + * Xilinx Zynq MPSoC Firmware layer + * + * Copyright (C) 2014-2017 Xilinx + * + * Michal Simek <michal.simek@xilinx.com> + * Davorin Mista <davorin.mista@aggios.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __SOC_ZYNQMP_FIRMWARE_H__ +#define __SOC_ZYNQMP_FIRMWARE_H__ + +#define ZYNQMP_PM_VERSION_MAJOR 0 +#define ZYNQMP_PM_VERSION_MINOR 3 + +#define ZYNQMP_PM_VERSION ((ZYNQMP_PM_VERSION_MAJOR << 16) | \ + ZYNQMP_PM_VERSION_MINOR) + +/* SMC SIP service Call Function Identifier Prefix */ +#define PM_SIP_SVC 0xC2000000 +#define GET_CALLBACK_DATA 0xa01 +#define SET_SUSPEND_MODE 0xa02 + +/* Number of 32bits values in payload */ +#define PAYLOAD_ARG_CNT 5U + +/* Number of arguments for a callback */ +#define CB_ARG_CNT 4 + +/* Payload size (consists of callback API ID + arguments) */ +#define CB_PAYLOAD_SIZE (CB_ARG_CNT + 1) + +/* Global general storage register base address */ +#define GGS_BASEADDR (0xFFD80030U) +#define GSS_NUM_REGS (4) + +/* Persistent global general storage register base address */ +#define PGGS_BASEADDR (0xFFD80050U) +#define PGSS_NUM_REGS (4) + +enum pm_api_id { + /* Miscellaneous API functions: */ + GET_API_VERSION = 1, + SET_CONFIGURATION, + GET_NODE_STATUS, + GET_OPERATING_CHARACTERISTIC, + REGISTER_NOTIFIER, + /* API for suspending of PUs: */ + REQUEST_SUSPEND, + SELF_SUSPEND, + FORCE_POWERDOWN, + ABORT_SUSPEND, + REQUEST_WAKEUP, + SET_WAKEUP_SOURCE, + SYSTEM_SHUTDOWN, + /* API for managing PM slaves: */ + REQUEST_NODE, + RELEASE_NODE, + SET_REQUIREMENT, + SET_MAX_LATENCY, + /* Direct control API functions: */ + RESET_ASSERT, + RESET_GET_STATUS, + MMIO_WRITE, + MMIO_READ, + PM_INIT_FINALIZE, + FPGA_LOAD, + FPGA_GET_STATUS, + GET_CHIPID, +}; + +/* PMU-FW return status codes */ +enum pm_ret_status { + XST_PM_SUCCESS = 0, + XST_PM_INTERNAL = 2000, + XST_PM_CONFLICT, + XST_PM_NO_ACCESS, + XST_PM_INVALID_NODE, + XST_PM_DOUBLE_REQ, + XST_PM_ABORT_SUSPEND, +}; + +enum zynqmp_pm_reset_action { + PM_RESET_ACTION_RELEASE, + PM_RESET_ACTION_ASSERT, + PM_RESET_ACTION_PULSE, +}; + +enum zynqmp_pm_reset { + ZYNQMP_PM_RESET_START = 999, + ZYNQMP_PM_RESET_PCIE_CFG, + ZYNQMP_PM_RESET_PCIE_BRIDGE, + ZYNQMP_PM_RESET_PCIE_CTRL, + ZYNQMP_PM_RESET_DP, + ZYNQMP_PM_RESET_SWDT_CRF, + ZYNQMP_PM_RESET_AFI_FM5, + ZYNQMP_PM_RESET_AFI_FM4, + ZYNQMP_PM_RESET_AFI_FM3, + ZYNQMP_PM_RESET_AFI_FM2, + ZYNQMP_PM_RESET_AFI_FM1, + ZYNQMP_PM_RESET_AFI_FM0, + ZYNQMP_PM_RESET_GDMA, + ZYNQMP_PM_RESET_GPU_PP1, + ZYNQMP_PM_RESET_GPU_PP0, + ZYNQMP_PM_RESET_GPU, + ZYNQMP_PM_RESET_GT, + ZYNQMP_PM_RESET_SATA, + ZYNQMP_PM_RESET_ACPU3_PWRON, + ZYNQMP_PM_RESET_ACPU2_PWRON, + ZYNQMP_PM_RESET_ACPU1_PWRON, + ZYNQMP_PM_RESET_ACPU0_PWRON, + ZYNQMP_PM_RESET_APU_L2, + ZYNQMP_PM_RESET_ACPU3, + ZYNQMP_PM_RESET_ACPU2, + ZYNQMP_PM_RESET_ACPU1, + ZYNQMP_PM_RESET_ACPU0, + ZYNQMP_PM_RESET_DDR, + ZYNQMP_PM_RESET_APM_FPD, + ZYNQMP_PM_RESET_SOFT, + ZYNQMP_PM_RESET_GEM0, + ZYNQMP_PM_RESET_GEM1, + ZYNQMP_PM_RESET_GEM2, + ZYNQMP_PM_RESET_GEM3, + ZYNQMP_PM_RESET_QSPI, + ZYNQMP_PM_RESET_UART0, + ZYNQMP_PM_RESET_UART1, + ZYNQMP_PM_RESET_SPI0, + ZYNQMP_PM_RESET_SPI1, + ZYNQMP_PM_RESET_SDIO0, + ZYNQMP_PM_RESET_SDIO1, + ZYNQMP_PM_RESET_CAN0, + ZYNQMP_PM_RESET_CAN1, + ZYNQMP_PM_RESET_I2C0, + ZYNQMP_PM_RESET_I2C1, + ZYNQMP_PM_RESET_TTC0, + ZYNQMP_PM_RESET_TTC1, + ZYNQMP_PM_RESET_TTC2, + ZYNQMP_PM_RESET_TTC3, + ZYNQMP_PM_RESET_SWDT_CRL, + ZYNQMP_PM_RESET_NAND, + ZYNQMP_PM_RESET_ADMA, + ZYNQMP_PM_RESET_GPIO, + ZYNQMP_PM_RESET_IOU_CC, + ZYNQMP_PM_RESET_TIMESTAMP, + ZYNQMP_PM_RESET_RPU_R50, + ZYNQMP_PM_RESET_RPU_R51, + ZYNQMP_PM_RESET_RPU_AMBA, + ZYNQMP_PM_RESET_OCM, + ZYNQMP_PM_RESET_RPU_PGE, + ZYNQMP_PM_RESET_USB0_CORERESET, + ZYNQMP_PM_RESET_USB1_CORERESET, + ZYNQMP_PM_RESET_USB0_HIBERRESET, + ZYNQMP_PM_RESET_USB1_HIBERRESET, + ZYNQMP_PM_RESET_USB0_APB, + ZYNQMP_PM_RESET_USB1_APB, + ZYNQMP_PM_RESET_IPI, + ZYNQMP_PM_RESET_APM_LPD, + ZYNQMP_PM_RESET_RTC, + ZYNQMP_PM_RESET_SYSMON, + ZYNQMP_PM_RESET_AFI_FM6, + ZYNQMP_PM_RESET_LPD_SWDT, + ZYNQMP_PM_RESET_FPD, + ZYNQMP_PM_RESET_RPU_DBG1, + ZYNQMP_PM_RESET_RPU_DBG0, + ZYNQMP_PM_RESET_DBG_LPD, + ZYNQMP_PM_RESET_DBG_FPD, + ZYNQMP_PM_RESET_APLL, + ZYNQMP_PM_RESET_DPLL, + ZYNQMP_PM_RESET_VPLL, + ZYNQMP_PM_RESET_IOPLL, + ZYNQMP_PM_RESET_RPLL, + ZYNQMP_PM_RESET_GPO3_PL_0, + ZYNQMP_PM_RESET_GPO3_PL_1, + ZYNQMP_PM_RESET_GPO3_PL_2, + ZYNQMP_PM_RESET_GPO3_PL_3, + ZYNQMP_PM_RESET_GPO3_PL_4, + ZYNQMP_PM_RESET_GPO3_PL_5, + ZYNQMP_PM_RESET_GPO3_PL_6, + ZYNQMP_PM_RESET_GPO3_PL_7, + ZYNQMP_PM_RESET_GPO3_PL_8, + ZYNQMP_PM_RESET_GPO3_PL_9, + ZYNQMP_PM_RESET_GPO3_PL_10, + ZYNQMP_PM_RESET_GPO3_PL_11, + ZYNQMP_PM_RESET_GPO3_PL_12, + ZYNQMP_PM_RESET_GPO3_PL_13, + ZYNQMP_PM_RESET_GPO3_PL_14, + ZYNQMP_PM_RESET_GPO3_PL_15, + ZYNQMP_PM_RESET_GPO3_PL_16, + ZYNQMP_PM_RESET_GPO3_PL_17, + ZYNQMP_PM_RESET_GPO3_PL_18, + ZYNQMP_PM_RESET_GPO3_PL_19, + ZYNQMP_PM_RESET_GPO3_PL_20, + ZYNQMP_PM_RESET_GPO3_PL_21, + ZYNQMP_PM_RESET_GPO3_PL_22, + ZYNQMP_PM_RESET_GPO3_PL_23, + ZYNQMP_PM_RESET_GPO3_PL_24, + ZYNQMP_PM_RESET_GPO3_PL_25, + ZYNQMP_PM_RESET_GPO3_PL_26, + ZYNQMP_PM_RESET_GPO3_PL_27, + ZYNQMP_PM_RESET_GPO3_PL_28, + ZYNQMP_PM_RESET_GPO3_PL_29, + ZYNQMP_PM_RESET_GPO3_PL_30, + ZYNQMP_PM_RESET_GPO3_PL_31, + ZYNQMP_PM_RESET_RPU_LS, + ZYNQMP_PM_RESET_PS_ONLY, + ZYNQMP_PM_RESET_PL, + ZYNQMP_PM_RESET_END +}; + +/* + * Internal functions + */ +int invoke_pm_fn(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3, + u32 *ret_payload); +int zynqmp_pm_ret_code(u32 ret_status); + +/* Miscellaneous API functions */ +int zynqmp_pm_get_api_version(u32 *version); +int zynqmp_pm_get_chipid(u32 *idcode, u32 *version); + +/* Direct-Control API functions */ +int zynqmp_pm_reset_assert(const enum zynqmp_pm_reset reset, + const enum zynqmp_pm_reset_action assert_flag); +int zynqmp_pm_reset_get_status(const enum zynqmp_pm_reset reset, + u32 *status); +int zynqmp_pm_mmio_write(const u32 address, + const u32 mask, + const u32 value); +int zynqmp_pm_mmio_read(const u32 address, u32 *value); +int zynqmp_pm_fpga_load(const u64 address, const u32 size, const u32 flags); +int zynqmp_pm_fpga_get_status(u32 *value); + +#endif /* __SOC_ZYNQMP_FIRMWARE_H__ */
This patch is adding communication layer with firmware. The most of request are coming thought ATF to PMUFW (platform management unit). Signed-off-by: Michal Simek <michal.simek@xilinx.com> --- drivers/soc/Kconfig | 1 + drivers/soc/Makefile | 1 + drivers/soc/xilinx/Kconfig | 6 + drivers/soc/xilinx/zynqmp/Makefile | 1 + drivers/soc/xilinx/zynqmp/firmware.c | 419 +++++++++++++++++++++++++++++ include/linux/soc/xilinx/zynqmp/firmware.h | 246 +++++++++++++++++ 6 files changed, 674 insertions(+) create mode 100644 drivers/soc/xilinx/Kconfig create mode 100644 drivers/soc/xilinx/zynqmp/Makefile create mode 100644 drivers/soc/xilinx/zynqmp/firmware.c create mode 100644 include/linux/soc/xilinx/zynqmp/firmware.h