lkml.org 
[lkml]   [2022]   [Sep]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRE: [PATCH v9 6/6] thunderbolt: Add support for ASMedia image format
Date
From: Szuying Chen <Chloe_Chen@asmedia.com.tw>

Hi,

>
> +static int asmedia_switch_nvm_version(struct tb_nvm *nvm) {
> + struct tb_switch *sw = tb_to_switch(nvm->dev);
> + u32 val;
> + int ret;
> +
> + ret = tb_switch_nvm_read(sw, ASMEDIA_NVM_VERSION, &val, sizeof(val));
> + if (ret)
> + return ret;
> +
> + nvm->major = (val << 16) & 0xff0000;
> + nvm->minor |= val & 0x00ff00;

nvm->major

> + nvm->major |= (val >> 16) & 0x0000ff;
> +
> + ret = tb_switch_nvm_read(sw, ASMEDIA_NVM_DATE, &val, sizeof(val));
> + if (ret)
> + return ret;
> +
> + nvm->minor = (val << 16) & 0xff0000;
> + nvm->minor |= val & 0x00ff00;
> + nvm->minor |= (val >> 16) & 0x0000ff;
> +
> + /* ASMedia NVM size is fixed to 512k */
> + nvm->active_size = SZ_512K;
> +
> + return 0;
> +}
> +
> +static const struct tb_nvm_vendor_ops asmedia_switch_nvm_ops = {
> + .read_version = asmedia_switch_nvm_version, };
> +
> /* Router vendor NVM support table */
> static const struct tb_nvm_vendor switch_nvm_vendors[] = {
> + { 0x174c, &asmedia_switch_nvm_ops },
> { PCI_VENDOR_ID_INTEL, &intel_switch_nvm_ops },
> { 0x8087, &intel_switch_nvm_ops },
> };
> --

Thanks!

\
 
 \ /
  Last update: 2022-09-06 12:12    [W:2.100 / U:0.200 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site