Lines Matching refs:unit_address

726 		   const device_unit *unit_address,  in hw_phb_unit_encode()  argument
730 if (unit_address->nr_cells != 3) in hw_phb_unit_encode()
734 if (extract_ss(unit_address) == ss_config_code in hw_phb_unit_encode()
735 && extract_fff(unit_address) == 0 in hw_phb_unit_encode()
736 && extract_rrrrrrrr(unit_address) == 0 in hw_phb_unit_encode()
737 && extract_hh_hh(unit_address) == 0 in hw_phb_unit_encode()
738 && extract_ll_ll(unit_address) == 0) { in hw_phb_unit_encode()
741 extract_ddddd(unit_address)); in hw_phb_unit_encode()
743 else if (extract_ss(unit_address) == ss_config_code in hw_phb_unit_encode()
744 && extract_fff(unit_address) != 0 in hw_phb_unit_encode()
745 && extract_rrrrrrrr(unit_address) == 0 in hw_phb_unit_encode()
746 && extract_hh_hh(unit_address) == 0 in hw_phb_unit_encode()
747 && extract_ll_ll(unit_address) == 0) { in hw_phb_unit_encode()
750 extract_ddddd(unit_address), in hw_phb_unit_encode()
751 extract_fff(unit_address)); in hw_phb_unit_encode()
753 else if (extract_ss(unit_address) == ss_io_code in hw_phb_unit_encode()
754 && extract_hh_hh(unit_address) == 0) { in hw_phb_unit_encode()
757 extract_n(unit_address) ? "n" : "", in hw_phb_unit_encode()
758 extract_t(unit_address) ? "t" : "", in hw_phb_unit_encode()
759 extract_ddddd(unit_address), in hw_phb_unit_encode()
760 extract_fff(unit_address), in hw_phb_unit_encode()
761 extract_rrrrrrrr(unit_address), in hw_phb_unit_encode()
762 extract_ll_ll(unit_address)); in hw_phb_unit_encode()
764 else if (extract_ss(unit_address) == ss_32bit_memory_code in hw_phb_unit_encode()
765 && extract_hh_hh(unit_address) == 0) { in hw_phb_unit_encode()
768 extract_n(unit_address) ? "n" : "", in hw_phb_unit_encode()
769 extract_t(unit_address) ? "t" : "", in hw_phb_unit_encode()
770 extract_p(unit_address) ? "p" : "", in hw_phb_unit_encode()
771 extract_ddddd(unit_address), in hw_phb_unit_encode()
772 extract_fff(unit_address), in hw_phb_unit_encode()
773 extract_rrrrrrrr(unit_address), in hw_phb_unit_encode()
774 extract_ll_ll(unit_address)); in hw_phb_unit_encode()
776 else if (extract_ss(unit_address) == ss_32bit_memory_code) { in hw_phb_unit_encode()
779 extract_n(unit_address) ? "n" : "", in hw_phb_unit_encode()
780 extract_p(unit_address) ? "p" : "", in hw_phb_unit_encode()
781 extract_ddddd(unit_address), in hw_phb_unit_encode()
782 extract_fff(unit_address), in hw_phb_unit_encode()
783 extract_rrrrrrrr(unit_address), in hw_phb_unit_encode()
784 extract_hh_hh(unit_address), in hw_phb_unit_encode()
785 extract_ll_ll(unit_address)); in hw_phb_unit_encode()
789 (unsigned long)unit_address->cells[0], in hw_phb_unit_encode()
790 (unsigned long)unit_address->cells[1], in hw_phb_unit_encode()
791 (unsigned long)unit_address->cells[2]); in hw_phb_unit_encode()
1025 const device_unit *unit_address, in hw_phb_create() argument