+2020-12-10  Nelson Chu  <nelson.chu@sifive.com>
+
+       * disassemble.h (riscv_get_disassembler): Declare.
+       * disassemble.c (disassembler): Changed to riscv_get_disassembler.
+       * riscv-dis.c (riscv_get_disassembler): Check the elf privileged spec
+       attributes before calling print_insn_riscv.
+       (parse_riscv_dis_option): Same as the assembler, the priority of elf
+       attributes are higher than the options.  If we find the privileged
+       attributes, but the -Mpriv-spec= is different, then output error/warning
+       and still use the elf attributes set.
+
 2020-12-10  Nelson Chu  <nelson.chu@sifive.com>
 
        * riscv-opc.c (riscv_opcodes): Control fence.i and csr instructions by
 
   value = equal + 1;
   if (strcmp (option, "priv-spec") == 0)
     {
-      if (!riscv_get_priv_spec_class (value, &default_priv_spec))
-       opcodes_error_handler (_("unknown privilege spec set by %s=%s"),
-                              option, value);
+      enum riscv_priv_spec_class priv_spec = PRIV_SPEC_CLASS_NONE;
+      if (!riscv_get_priv_spec_class (value, &priv_spec))
+       opcodes_error_handler (_("unknown privilege spec set by %s=%s"),
+                              option, value);
+      else if (default_priv_spec == PRIV_SPEC_CLASS_NONE)
+       default_priv_spec = priv_spec;
+      else if (default_priv_spec != priv_spec)
+       opcodes_error_handler (_("mis-matched privilege spec set by %s=%s, "
+                                "the elf privilege attribute is %s"),
+                              option, value,
+                              riscv_get_priv_spec_name (default_priv_spec));
     }
   else
     {
   return riscv_disassemble_insn (memaddr, insn, info);
 }
 
+disassembler_ftype
+riscv_get_disassembler (bfd *abfd)
+{
+  /* If -Mpriv-spec= isn't set, then try to set it by checking the elf
+     privileged attributes.  */
+  if (abfd)
+    {
+      const char *sec_name = get_elf_backend_data (abfd)->obj_attrs_section;
+      if (bfd_get_section_by_name (abfd, sec_name) != NULL)
+        {
+         obj_attribute *attr = elf_known_obj_attributes_proc (abfd);
+         unsigned int Tag_a = Tag_RISCV_priv_spec;
+         unsigned int Tag_b = Tag_RISCV_priv_spec_minor;
+         unsigned int Tag_c = Tag_RISCV_priv_spec_revision;
+         riscv_get_priv_spec_class_from_numbers (attr[Tag_a].i,
+                                                 attr[Tag_b].i,
+                                                 attr[Tag_c].i,
+                                                 &default_priv_spec);
+        }
+    }
+   return print_insn_riscv;
+}
+
 /* Prevent use of the fake labels that are generated as part of the DWARF
    and for relaxable relocations in the assembler.  */